diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-07-08 17:59:50 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-07-08 17:59:50 +0200 |
commit | 52553c64ed59f4a30ad42586abd8e06a8446ecd9 (patch) | |
tree | 902e6debac03494ba7c426afa5db96909d3da690 | |
parent | 492a35737c634fee27b0eb9d3ea6425bc6d98396 (diff) | |
parent | 02d2e41e04735e91c94864a98c5eed89b6ceb7f7 (diff) | |
download | nextcloud-server-52553c64ed59f4a30ad42586abd8e06a8446ecd9.tar.gz nextcloud-server-52553c64ed59f4a30ad42586abd8e06a8446ecd9.zip |
Merge branch 'master' into convert-oc_config
Conflicts:
lib/config.php
903 files changed, 13308 insertions, 9739 deletions
diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index 8433716dec1..dde5d3c50af 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -18,7 +18,6 @@ if (empty($_POST['dirToken'])) { } } else { $linkItem = OCP\Share::getShareByToken($_POST['dirToken']); - if ($linkItem === false) { OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Invalid Token'))))); die(); @@ -27,11 +26,18 @@ if (empty($_POST['dirToken'])) { if (!($linkItem['permissions'] & OCP\PERMISSION_CREATE)) { OCP\JSON::checkLoggedIn(); } else { + // resolve reshares + $rootLinkItem = OCP\Share::resolveReShare($linkItem); + + // Setup FS with owner + OC_Util::tearDownFS(); + OC_Util::setupFS($rootLinkItem['uid_owner']); // The token defines the target directory (security reasons) + $path = \OC\Files\Filesystem::getPath($linkItem['file_source']); $dir = sprintf( "/%s/%s", - $linkItem['file_target'], + $path, isset($_POST['subdir']) ? $_POST['subdir'] : '' ); @@ -39,8 +45,6 @@ if (empty($_POST['dirToken'])) { OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('Unable to set upload directory.'))))); die(); } - // Setup FS with owner - OC_Util::setupFS($linkItem['uid_owner']); } } @@ -76,17 +80,17 @@ $files = $_FILES['files']; $error = ''; -$maxUploadFilesize = OCP\Util::maxUploadFilesize($dir); -$maxHumanFilesize = OCP\Util::humanFileSize($maxUploadFilesize); +$maxUploadFileSize = $storageStats['uploadMaxFilesize']; +$maxHumanFileSize = OCP\Util::humanFileSize($maxUploadFileSize); $totalSize = 0; foreach ($files['size'] as $size) { $totalSize += $size; } -if ($maxUploadFilesize >= 0 and $totalSize > $maxUploadFilesize) { +if ($maxUploadFileSize >= 0 and $totalSize > $maxUploadFileSize) { OCP\JSON::error(array('data' => array('message' => $l->t('Not enough storage available'), - 'uploadMaxFilesize' => $maxUploadFilesize, - 'maxHumanFilesize' => $maxHumanFilesize))); + 'uploadMaxFilesize' => $maxUploadFileSize, + 'maxHumanFilesize' => $maxHumanFileSize))); exit(); } @@ -108,8 +112,8 @@ if (strpos($dir, '..') === false) { 'id' => $meta['fileid'], 'name' => basename($target), 'originalname' => $files['name'][$i], - 'uploadMaxFilesize' => $maxUploadFilesize, - 'maxHumanFilesize' => $maxHumanFilesize + 'uploadMaxFilesize' => $maxUploadFileSize, + 'maxHumanFilesize' => $maxHumanFileSize ); } } diff --git a/apps/files/index.php b/apps/files/index.php index 640c28c0075..2338cf439e4 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -137,5 +137,6 @@ if ($needUpgrade) { $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); $tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); $tmpl->assign('usedSpacePercent', (int)$storageInfo['relative']); + $tmpl->assign('isPublic', false); $tmpl->printPage(); } diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index bdc4031008a..f4424f92577 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -36,5 +36,6 @@ "Download" => "Изтегляне", "Upload too large" => "Файлът който сте избрали за качване е прекалено голям", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файловете които се опитвате да качите са по-големи от позволеното за сървъра.", -"Files are being scanned, please wait." => "Файловете се претърсват, изчакайте." +"Files are being scanned, please wait." => "Файловете се претърсват, изчакайте.", +"file" => "файл" ); diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 353997f6ebb..8d5f69f3318 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -49,6 +49,7 @@ "{count} folders" => "{count} carpetes", "1 file" => "1 fitxer", "{count} files" => "{count} fitxers", +"%s could not be renamed" => "%s no es pot canviar el nom", "Upload" => "Puja", "File handling" => "Gestió de fitxers", "Maximum upload size" => "Mida màxima de pujada", @@ -72,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor", "Files are being scanned, please wait." => "S'estan escanejant els fitxers, espereu", "Current scanning" => "Actualment escanejant", +"directory" => "directori", +"directories" => "directoris", +"file" => "fitxer", +"files" => "fitxers", "Upgrading filesystem cache..." => "Actualitzant la memòria de cau del sistema de fitxers..." ); diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 29c24e29842..c16d32e9c28 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -72,5 +72,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru.", "Files are being scanned, please wait." => "Soubory se prohledávají, prosím čekejte.", "Current scanning" => "Aktuální prohledávání", +"file" => "soubor", +"files" => "soubory", "Upgrading filesystem cache..." => "Aktualizuji mezipaměť souborového systému..." ); diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index daa69717aa2..c2f200e476f 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server.", "Files are being scanned, please wait." => "Filerne bliver indlæst, vent venligst.", "Current scanning" => "Indlæser", +"file" => "fil", +"files" => "filer", "Upgrading filesystem cache..." => "Opgraderer filsystems cachen..." ); diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index bf0173ffc0c..98214d6a1b2 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -70,5 +70,7 @@ "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", +"file" => "Datei", +"files" => "Dateien", "Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." ); diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 9527b466344..f9c347b45da 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -73,5 +73,9 @@ "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", +"directory" => "Verzeichnis", +"directories" => "Verzeichnisse", +"file" => "Datei", +"files" => "Dateien", "Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." ); diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 6de00f4591c..7291dbbf156 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -70,5 +70,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Τα αρχεία που προσπαθείτε να ανεβάσετε υπερβαίνουν το μέγιστο μέγεθος αποστολής αρχείων σε αυτόν τον διακομιστή.", "Files are being scanned, please wait." => "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε.", "Current scanning" => "Τρέχουσα ανίχνευση", +"directory" => "κατάλογος", +"directories" => "κατάλογοι", +"file" => "αρχείο", +"files" => "αρχεία", "Upgrading filesystem cache..." => "Ενημέρωση της μνήμης cache του συστήματος αρχείων..." ); diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 062cf6f57f3..561545ec6ae 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo.", "Files are being scanned, please wait." => "Dosieroj estas skanataj, bonvolu atendi.", "Current scanning" => "Nuna skano", +"file" => "dosiero", +"files" => "dosieroj", "Upgrading filesystem cache..." => "Ĝisdatiĝas dosiersistema kaŝmemoro..." ); diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 8a5375030fc..78740d51507 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -49,6 +49,7 @@ "{count} folders" => "{count} carpetas", "1 file" => "1 archivo", "{count} files" => "{count} archivos", +"%s could not be renamed" => "%s no se pudo renombrar", "Upload" => "Subir", "File handling" => "Manejo de archivos", "Maximum upload size" => "Tamaño máximo de subida", @@ -72,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor.", "Files are being scanned, please wait." => "Los archivos están siendo escaneados, por favor espere.", "Current scanning" => "Escaneo actual", +"directory" => "carpeta", +"directories" => "carpetas", +"file" => "archivo", +"files" => "archivos", "Upgrading filesystem cache..." => "Actualizando caché del sistema de archivos" ); diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 8e7c5a5144a..d5ae7ae53d2 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que intentás subir sobrepasan el tamaño máximo ", "Files are being scanned, please wait." => "Se están escaneando los archivos, por favor esperá.", "Current scanning" => "Escaneo actual", +"file" => "archivo", +"files" => "archivos", "Upgrading filesystem cache..." => "Actualizando el cache del sistema de archivos" ); diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index d4e951544c7..c58b066e287 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Ei saa liigutada faili %s - samanimeline fail on juba olemas", "Could not move %s" => "%s liigutamine ebaõnnestus", +"Unable to set upload directory." => "Üleslaadimiste kausta määramine ebaõnnestus.", +"Invalid Token" => "Vigane kontrollkood", "No file was uploaded. Unknown error" => "Ühtegi faili ei laetud üles. Tundmatu viga", "There is no error, the file uploaded with success" => "Ühtegi tõrget polnud, fail on üles laetud", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Üleslaetava faili suurus ületab php.ini poolt määratud upload_max_filesize suuruse:", @@ -47,6 +49,7 @@ "{count} folders" => "{count} kausta", "1 file" => "1 fail", "{count} files" => "{count} faili", +"%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", "Upload" => "Lae üles", "File handling" => "Failide käsitlemine", "Maximum upload size" => "Maksimaalne üleslaadimise suurus", @@ -70,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse.", "Files are being scanned, please wait." => "Faile skannitakse, palun oota.", "Current scanning" => "Praegune skannimine", +"directory" => "kaust", +"directories" => "kaustad", +"file" => "fail", +"files" => "faili", "Upgrading filesystem cache..." => "Failisüsteemi puhvri uuendamine..." ); diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 13cad2c315e..c87e20b1ff6 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -69,5 +69,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira.", "Files are being scanned, please wait." => "Fitxategiak eskaneatzen ari da, itxoin mezedez.", "Current scanning" => "Orain eskaneatzen ari da", +"file" => "fitxategia", +"files" => "fitxategiak", "Upgrading filesystem cache..." => "Fitxategi sistemaren katxea eguneratzen..." ); diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index b859777f807..73f4b493b4d 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s نمی تواند حرکت کند - در حال حاضر پرونده با این نام وجود دارد. ", "Could not move %s" => "%s نمی تواند حرکت کند ", +"Unable to set upload directory." => "قادر به تنظیم پوشه آپلود نمی باشد.", +"Invalid Token" => "رمز نامعتبر", "No file was uploaded. Unknown error" => "هیچ فایلی آپلود نشد.خطای ناشناس", "There is no error, the file uploaded with success" => "هیچ خطایی نیست بارگذاری پرونده موفقیت آمیز بود", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است.", @@ -17,6 +19,7 @@ "Upload cancelled." => "بار گذاری لغو شد", "File upload is in progress. Leaving the page now will cancel the upload." => "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. ", "URL cannot be empty." => "URL نمی تواند خالی باشد.", +"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "نام پوشه نامعتبر است. استفاده از 'به اشتراک گذاشته شده' متعلق به ownCloud میباشد.", "Error" => "خطا", "Share" => "اشتراکگذاری", "Delete permanently" => "حذف قطعی", @@ -46,6 +49,7 @@ "{count} folders" => "{ شمار} پوشه ها", "1 file" => "1 پرونده", "{count} files" => "{ شمار } فایل ها", +"%s could not be renamed" => "%s نمیتواند تغییر نام دهد.", "Upload" => "بارگزاری", "File handling" => "اداره پرونده ها", "Maximum upload size" => "حداکثر اندازه بارگزاری", @@ -69,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد", "Files are being scanned, please wait." => "پرونده ها در حال بازرسی هستند لطفا صبر کنید", "Current scanning" => "بازرسی کنونی", +"directory" => "پوشه", +"directories" => "پوشه ها", +"file" => "پرونده", +"files" => "پرونده ها", "Upgrading filesystem cache..." => "بهبود فایل سیستمی ذخیره گاه..." ); diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index dd3c4a5f047..22e448c01db 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -65,5 +65,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan.", "Files are being scanned, please wait." => "Tiedostoja tarkistetaan, odota hetki.", "Current scanning" => "Tämänhetkinen tutkinta", +"file" => "tiedosto", +"files" => "tiedostoa", "Upgrading filesystem cache..." => "Päivitetään tiedostojärjestelmän välimuistia..." ); diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index c2306fd7124..646373d4aae 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -73,5 +73,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur.", "Files are being scanned, please wait." => "Les fichiers sont en cours d'analyse, veuillez patienter.", "Current scanning" => "Analyse en cours", +"file" => "fichier", +"files" => "fichiers", "Upgrading filesystem cache..." => "Mise à niveau du cache du système de fichier" ); diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 8c8fc7f70be..bba6335ae05 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Non se moveu %s - Xa existe un ficheiro con ese nome.", "Could not move %s" => "Non foi posíbel mover %s", +"Unable to set upload directory." => "Non é posíbel configurar o directorio de envíos.", +"Invalid Token" => "Marca incorrecta", "No file was uploaded. Unknown error" => "Non se enviou ningún ficheiro. Produciuse un erro descoñecido.", "There is no error, the file uploaded with success" => "Non houbo erros, o ficheiro enviouse correctamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede a directiva indicada por upload_max_filesize de php.ini:", @@ -47,6 +49,7 @@ "{count} folders" => "{count} cartafoles", "1 file" => "1 ficheiro", "{count} files" => "{count} ficheiros", +"%s could not be renamed" => "%s non pode cambiar de nome", "Upload" => "Enviar", "File handling" => "Manexo de ficheiro", "Maximum upload size" => "Tamaño máximo do envío", @@ -70,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor", "Files are being scanned, please wait." => "Estanse analizando os ficheiros. Agarde.", "Current scanning" => "Análise actual", +"directory" => "directorio", +"directories" => "directorios", +"file" => "ficheiro", +"files" => "ficheiros", "Upgrading filesystem cache..." => "Anovando a caché do sistema de ficheiros..." ); diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index e49693d3faf..52946bc6d0b 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -59,5 +59,7 @@ "Upload too large" => "העלאה גדולה מידי", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה.", "Files are being scanned, please wait." => "הקבצים נסרקים, נא להמתין.", -"Current scanning" => "הסריקה הנוכחית" +"Current scanning" => "הסריקה הנוכחית", +"file" => "קובץ", +"files" => "קבצים" ); diff --git a/apps/files/l10n/hi.php b/apps/files/l10n/hi.php index df57abe28b6..151d1f497c7 100644 --- a/apps/files/l10n/hi.php +++ b/apps/files/l10n/hi.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"Error" => "त्रुटि", "Share" => "साझा करें", "Save" => "सहेजें" ); diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index c0035709071..abe8c40bd53 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -42,5 +42,7 @@ "Upload too large" => "Prijenos je preobiman", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju.", "Files are being scanned, please wait." => "Datoteke se skeniraju, molimo pričekajte.", -"Current scanning" => "Trenutno skeniranje" +"Current scanning" => "Trenutno skeniranje", +"file" => "datoteka", +"files" => "datoteke" ); diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index a74a3bf11ee..f0e5b1befc5 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet.", "Files are being scanned, please wait." => "A fájllista ellenőrzése zajlik, kis türelmet!", "Current scanning" => "Ellenőrzés alatt", +"file" => "fájl", +"files" => "fájlok", "Upgrading filesystem cache..." => "A fájlrendszer gyorsítótárának frissítése zajlik..." ); diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 410f5c628e5..bacdcc8f496 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -69,5 +69,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini.", "Files are being scanned, please wait." => "Berkas sedang dipindai, silakan tunggu.", "Current scanning" => "Yang sedang dipindai", +"file" => "berkas", +"files" => "berkas-berkas", "Upgrading filesystem cache..." => "Meningkatkan tembolok sistem berkas..." ); diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 24ddcd7aedf..28b33795aeb 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -73,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "I file che stai provando a caricare superano la dimensione massima consentita su questo server.", "Files are being scanned, please wait." => "Scansione dei file in corso, attendi", "Current scanning" => "Scansione corrente", +"directory" => "cartella", +"directories" => "cartelle", +"file" => "file", +"files" => "file", "Upgrading filesystem cache..." => "Aggiornamento della cache del filesystem in corso..." ); diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index c03c3da3f17..e4be3133fb0 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -73,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。", "Files are being scanned, please wait." => "ファイルをスキャンしています、しばらくお待ちください。", "Current scanning" => "スキャン中", +"directory" => "ディレクトリ", +"directories" => "ディレクトリ", +"file" => "ファイル", +"files" => "ファイル", "Upgrading filesystem cache..." => "ファイルシステムキャッシュを更新中..." ); diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index d63285dc00c..069c209ee58 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -69,5 +69,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "이 파일이 서버에서 허용하는 최대 업로드 가능 용량보다 큽니다.", "Files are being scanned, please wait." => "파일을 검색하고 있습니다. 기다려 주십시오.", "Current scanning" => "현재 검색", +"file" => "파일", +"files" => "파일", "Upgrading filesystem cache..." => "파일 시스템 캐시 업그레이드 중..." ); diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index f13c3dbb415..9b209a4d5cc 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -37,5 +37,7 @@ "Upload too large" => "Upload ze grouss", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass.", "Files are being scanned, please wait." => "Fichieren gi gescannt, war weg.", -"Current scanning" => "Momentane Scan" +"Current scanning" => "Momentane Scan", +"file" => "Datei", +"files" => "Dateien" ); diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index 97f11709bab..43fb4657dbb 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje", "Files are being scanned, please wait." => "Skenuojami failai, prašome palaukti.", "Current scanning" => "Šiuo metu skenuojama", +"file" => "failas", +"files" => "failai", "Upgrading filesystem cache..." => "Atnaujinamas sistemos kešavimas..." ); diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index c7dfb8675f2..b0def1e707d 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -68,5 +68,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu", "Files are being scanned, please wait." => "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet.", "Current scanning" => "Šobrīd tiek caurskatīts", +"file" => "fails", +"files" => "faili", "Upgrading filesystem cache..." => "Uzlabo datņu sistēmas kešatmiņu..." ); diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index d1b82f1872a..2dd75f14338 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -52,5 +52,7 @@ "Upload too large" => "Фајлот кој се вчитува е преголем", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Датотеките кои се обидувате да ги подигнете ја надминуваат максималната големина за подигнување датотеки на овој сервер.", "Files are being scanned, please wait." => "Се скенираат датотеки, ве молам почекајте.", -"Current scanning" => "Моментално скенирам" +"Current scanning" => "Моментално скенирам", +"file" => "датотека", +"files" => "датотеки" ); diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index 332c0ceaabe..f96d4d48014 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -36,5 +36,7 @@ "Upload too large" => "Muatnaik terlalu besar", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server", "Files are being scanned, please wait." => "Fail sedang diimbas, harap bersabar.", -"Current scanning" => "Imbasan semasa" +"Current scanning" => "Imbasan semasa", +"file" => "fail", +"files" => "fail" ); diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index ee3f40d7c51..769dfe33ffe 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er for store for å laste opp til denne serveren.", "Files are being scanned, please wait." => "Skanner etter filer, vennligst vent.", "Current scanning" => "Pågående skanning", +"file" => "fil", +"files" => "filer", "Upgrading filesystem cache..." => "Oppgraderer filsystemets mellomlager..." ); diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index cf5fc68bd55..914d5087af1 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -72,5 +72,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server.", "Files are being scanned, please wait." => "Bestanden worden gescand, even wachten.", "Current scanning" => "Er wordt gescand", +"file" => "bestand", +"files" => "bestanden", "Upgrading filesystem cache..." => "Upgraden bestandssysteem cache..." ); diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index 10f103973e4..703aeb3fbad 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -42,5 +42,7 @@ "Upload too large" => "Amontcargament tròp gròs", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor.", "Files are being scanned, please wait." => "Los fiichièrs son a èsser explorats, ", -"Current scanning" => "Exploracion en cors" +"Current scanning" => "Exploracion en cors", +"file" => "fichièr", +"files" => "fichièrs" ); diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 5c41c8d3c81..a3acfea6618 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -49,6 +49,7 @@ "{count} folders" => "Ilość folderów: {count}", "1 file" => "1 plik", "{count} files" => "Ilość plików: {count}", +"%s could not be renamed" => "%s nie można zmienić nazwy", "Upload" => "Wyślij", "File handling" => "Zarządzanie plikami", "Maximum upload size" => "Maksymalny rozmiar wysyłanego pliku", @@ -72,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość.", "Files are being scanned, please wait." => "Skanowanie plików, proszę czekać.", "Current scanning" => "Aktualnie skanowane", +"directory" => "Katalog", +"directories" => "Katalogi", +"file" => "plik", +"files" => "pliki", "Upgrading filesystem cache..." => "Uaktualnianie plików pamięci podręcznej..." ); diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 6651adca82a..3ad679f8764 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -73,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor.", "Files are being scanned, please wait." => "Arquivos sendo escaneados, por favor aguarde.", "Current scanning" => "Scanning atual", +"directory" => "diretório", +"directories" => "diretórios", +"file" => "arquivo", +"files" => "arquivos", "Upgrading filesystem cache..." => "Atualizando cache do sistema de arquivos..." ); diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index ba704b41091..4273de9c478 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor.", "Files are being scanned, please wait." => "Os ficheiros estão a ser analisados, por favor aguarde.", "Current scanning" => "Análise actual", +"file" => "ficheiro", +"files" => "ficheiros", "Upgrading filesystem cache..." => "Atualizar cache do sistema de ficheiros..." ); diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index d6d60e28680..b0cca7d7a82 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( -"Could not move %s - File with this name already exists" => "Nu se poate de mutat %s - Fișier cu acest nume deja există", +"Could not move %s - File with this name already exists" => "%s nu se poate muta - Fișierul cu acest nume există deja ", "Could not move %s" => "Nu s-a putut muta %s", +"Unable to set upload directory." => "Imposibil de a seta directorul pentru incărcare.", +"Invalid Token" => "Jeton Invalid", "No file was uploaded. Unknown error" => "Nici un fișier nu a fost încărcat. Eroare necunoscută", "There is no error, the file uploaded with success" => "Nu a apărut nici o eroare, fișierul a fost încărcat cu succes", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: ", @@ -47,6 +49,7 @@ "{count} folders" => "{count} foldare", "1 file" => "1 fisier", "{count} files" => "{count} fisiere", +"%s could not be renamed" => "%s nu a putut fi redenumit", "Upload" => "Încărcare", "File handling" => "Manipulare fișiere", "Maximum upload size" => "Dimensiune maximă admisă la încărcare", @@ -70,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server.", "Files are being scanned, please wait." => "Fișierele sunt scanate, te rog așteptă.", "Current scanning" => "În curs de scanare", +"directory" => "catalog", +"directories" => "cataloage", +"file" => "fișier", +"files" => "fișiere", "Upgrading filesystem cache..." => "Modernizare fisiere de sistem cache.." ); diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 71bda3dc884..2db90413f21 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файлы, которые вы пытаетесь загрузить, превышают лимит для файлов на этом сервере.", "Files are being scanned, please wait." => "Подождите, файлы сканируются.", "Current scanning" => "Текущее сканирование", +"file" => "файл", +"files" => "файлы", "Upgrading filesystem cache..." => "Обновление кэша файловой системы..." ); diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index 50745f0eff7..82fca4bc75d 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -44,5 +44,7 @@ "Upload too large" => "උඩුගත කිරීම විශාල වැඩිය", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "ඔබ උඩුගත කිරීමට තැත් කරන ගොනු මෙම සේවාදායකයා උඩුගත කිරීමට ඉඩදී ඇති උපරිම ගොනු විශාලත්වයට වඩා වැඩිය", "Files are being scanned, please wait." => "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න", -"Current scanning" => "වර්තමාන පරික්ෂාව" +"Current scanning" => "වර්තමාන පරික්ෂාව", +"file" => "ගොනුව", +"files" => "ගොනු" ); diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index b1ec8bccf41..b8382c7b0b4 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -70,5 +70,7 @@ "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." => "Čakajte, súbory sú prehľadávané.", "Current scanning" => "Práve prezerané", +"file" => "súbor", +"files" => "súbory", "Upgrading filesystem cache..." => "Aktualizujem medzipamäť súborového systému..." ); diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 8ba4d784edc..4516be15086 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -72,5 +72,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku.", "Files are being scanned, please wait." => "Poteka preučevanje datotek, počakajte ...", "Current scanning" => "Trenutno poteka preučevanje", +"file" => "datoteka", +"files" => "datoteke", "Upgrading filesystem cache..." => "Nadgrajevanje predpomnilnika datotečnega sistema ..." ); diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 7868d1cca2b..70f3121a20c 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -73,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern.", "Files are being scanned, please wait." => "Filer skannas, var god vänta", "Current scanning" => "Aktuell skanning", +"directory" => "mapp", +"directories" => "mappar", +"file" => "fil", +"files" => "filer", "Upgrading filesystem cache..." => "Uppgraderar filsystemets cache..." ); diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index a71409f99e8..5b2eab6b3a1 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -66,5 +66,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้", "Files are being scanned, please wait." => "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่.", "Current scanning" => "ไฟล์ที่กำลังสแกนอยู่ขณะนี้", +"file" => "ไฟล์", +"files" => "ไฟล์", "Upgrading filesystem cache..." => "กำลังอัพเกรดหน่วยความจำแคชของระบบไฟล์..." ); diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index b4dc5766389..0b2dbb12dd9 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -70,5 +70,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor.", "Files are being scanned, please wait." => "Dosyalar taranıyor, lütfen bekleyin.", "Current scanning" => "Güncel tarama", +"file" => "dosya", +"files" => "dosyalar", "Upgrading filesystem cache..." => "Sistem dosyası önbelleği güncelleniyor" ); diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index f1a291a901c..261853ef202 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -69,5 +69,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Файли,що ви намагаєтесь відвантажити перевищують максимальний дозволений розмір файлів на цьому сервері.", "Files are being scanned, please wait." => "Файли скануються, зачекайте, будь-ласка.", "Current scanning" => "Поточне сканування", +"file" => "файл", +"files" => "файли", "Upgrading filesystem cache..." => "Оновлення кеша файлової системи..." ); diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 5ae06522c49..e3c9fd5488a 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -69,5 +69,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ .", "Files are being scanned, please wait." => "Tập tin đang được quét ,vui lòng chờ.", "Current scanning" => "Hiện tại đang quét", +"file" => "file", +"files" => "files", "Upgrading filesystem cache..." => "Đang nâng cấp bộ nhớ đệm cho tập tin hệ thống..." ); diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index a9dd726faa2..4108516cda1 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -51,5 +51,7 @@ "Upload too large" => "上传过大", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "你正在试图上传的文件超过了此服务器支持的最大的文件大小.", "Files are being scanned, please wait." => "正在扫描文件,请稍候.", -"Current scanning" => "正在扫描" +"Current scanning" => "正在扫描", +"file" => "文件", +"files" => "文件" ); diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 826de79c592..68680676a19 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -73,5 +73,7 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "您正尝试上传的文件超过了此服务器可以上传的最大容量限制", "Files are being scanned, please wait." => "文件正在被扫描,请稍候。", "Current scanning" => "当前扫描", +"file" => "文件", +"files" => "文件", "Upgrading filesystem cache..." => "正在更新文件系统缓存..." ); diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 197982010f9..b2a17f6bca5 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -476,10 +476,19 @@ class Hooks { $util = new Util($view, $userId);
// Format paths to be relative to user files dir
- $oldKeyfilePath = \OC\Files\Filesystem::normalizePath(
- $userId . '/' . 'files_encryption' . '/' . 'keyfiles' . '/' . $params['oldpath']);
- $newKeyfilePath = \OC\Files\Filesystem::normalizePath(
- $userId . '/' . 'files_encryption' . '/' . 'keyfiles' . '/' . $params['newpath']);
+ if ($util->isSystemWideMountPoint($params['oldpath'])) {
+ $baseDir = 'files_encryption/';
+ $oldKeyfilePath = $baseDir . 'keyfiles/' . $params['oldpath'];
+ } else {
+ $baseDir = $userId . '/' . 'files_encryption/';
+ $oldKeyfilePath = $baseDir . 'keyfiles/' . $params['oldpath'];
+ }
+
+ if ($util->isSystemWideMountPoint($params['newpath'])) {
+ $newKeyfilePath = $baseDir . 'keyfiles/' . $params['newpath'];
+ } else {
+ $newKeyfilePath = $baseDir . 'keyfiles/' . $params['newpath'];
+ }
// add key ext if this is not an folder
if (!$view->is_dir($oldKeyfilePath)) {
@@ -487,8 +496,9 @@ class Hooks { $newKeyfilePath .= '.key';
// handle share-keys
- $localKeyPath = $view->getLocalFile($userId . '/files_encryption/share-keys/' . $params['oldpath']);
- $matches = glob(preg_quote($localKeyPath) . '*.shareKey');
+ $localKeyPath = $view->getLocalFile($baseDir . 'share-keys/' . $params['oldpath']);
+ $escapedPath = Helper::escapeGlobPattern($localKeyPath);
+ $matches = glob($escapedPath . '*.shareKey');
foreach ($matches as $src) {
$dst = \OC\Files\Filesystem::normalizePath(str_replace($params['oldpath'], $params['newpath'], $src));
@@ -502,10 +512,8 @@ class Hooks { } else {
// handle share-keys folders
- $oldShareKeyfilePath = \OC\Files\Filesystem::normalizePath(
- $userId . '/' . 'files_encryption' . '/' . 'share-keys' . '/' . $params['oldpath']);
- $newShareKeyfilePath = \OC\Files\Filesystem::normalizePath(
- $userId . '/' . 'files_encryption' . '/' . 'share-keys' . '/' . $params['newpath']);
+ $oldShareKeyfilePath = $baseDir . 'share-keys/' . $params['oldpath'];
+ $newShareKeyfilePath = $baseDir . 'share-keys/' . $params['newpath'];
// create destination folder if not exists
if (!$view->file_exists(dirname($newShareKeyfilePath))) {
diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index fd917f654ce..d9d3d7b4fa5 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -7,8 +7,9 @@ "Could not change the password. Maybe the old password was not correct." => "No s'ha pogut canviar la contrasenya. Potser la contrasenya anterior no era correcta.", "Private key password successfully updated." => "La contrasenya de la clau privada s'ha actualitzat.", "Could not update the private key password. Maybe the old password was not correct." => "No s'ha pogut actualitzar la contrasenya de la clau privada. Potser la contrasenya anterior no era correcta.", -"PHP module OpenSSL is not installed." => "El mòdul OpenSSL de PHP no està instal·lat.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Demaneu a l'administrador del servidor que instal·li el mòdul. Per ara, l'aplicació d'encriptació s'ha deshabilitat.", +"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora del sistema ownCloud (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats.", +"Missing requirements." => "Manca de requisits.", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assegureu-vos que teniu instal·lada la versió de PHP 5.3.3 o posterior, i que teniu l'extensió OpenSSL PHP activada i configurada correctament. Per ara, l'aplicació de xifrat esta desactivada.", "Saving..." => "Desant...", "Your private key is not valid! Maybe the your password was changed from outside." => "La vostra clau privada no és vàlida! Potser la vostra contrasenya ha canviat des de fora.", "You can unlock your private key in your " => "Podeu desbloquejar la clau privada en el vostre", diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index ff5ca1007fb..2d7512354d5 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -7,10 +7,12 @@ "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.", "Private key password successfully updated." => "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert.", "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.", -"PHP module OpenSSL is not installed." => "Das PHP-Modul OpenSSL ist nicht installiert.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Bitte fragen Sie Ihren Server-Administrator, das entsprechende Modul zu installieren. Bis dahin wurde die Anwendung zur Verschlüsselung deaktiviert.", +"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.", +"Missing requirements." => "Fehlende Voraussetzungen", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und die PHP-Erweiterung OpenSSL aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Saving..." => "Speichern...", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert.", +"You can unlock your private key in your " => "Sie können den privaten Schlüssel ändern und zwar in Ihrem", "personal settings" => "Persönliche Einstellungen", "Encryption" => "Verschlüsselung", "Enable recovery key (allow to recover users files in case of password loss):" => "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht).", diff --git a/apps/files_encryption/l10n/eo.php b/apps/files_encryption/l10n/eo.php index f6e0e884f35..997b60f8ac3 100644 --- a/apps/files_encryption/l10n/eo.php +++ b/apps/files_encryption/l10n/eo.php @@ -2,7 +2,6 @@ "Password successfully changed." => "La pasvorto sukcese ŝanĝiĝis.", "Could not change the password. Maybe the old password was not correct." => "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis.", "Private key password successfully updated." => "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis.", -"PHP module OpenSSL is not installed." => "La PHP-modulo OpenSSL ne instalitas.", "Saving..." => "Konservante...", "personal settings" => "persona agordo", "Encryption" => "Ĉifrado", diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index e523a13bb67..0b49edbd2af 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -7,8 +7,9 @@ "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", "Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", "Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea correcta.", -"PHP module OpenSSL is not installed." => "El módulo OpenSSL de PHP no está instalado.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Por favor pida al administrador de su servidor que le instale el módulo. De momento la aplicación de cifrado está deshabilitada.", +"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.", +"Missing requirements." => "Requisitos incompletos.", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", "Saving..." => "Guardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera.", "You can unlock your private key in your " => "Puede desbloquear su clave privada en su", @@ -19,8 +20,8 @@ "Enabled" => "Habilitar", "Disabled" => "Deshabilitado", "Change recovery key password:" => "Cambiar la contraseña de la clave de recuperación", -"Old Recovery key password" => "Contraseña de la antigua clave de recuperación", -"New Recovery key password" => "Contraseña de la nueva clave de recuperación", +"Old Recovery key password" => "Antigua clave de recuperación", +"New Recovery key password" => "Nueva clave de recuperación", "Change Password" => "Cambiar contraseña", "Your private key password no longer match your log-in password:" => "Su contraseña de clave privada ya no coincide con su contraseña de acceso:", "Set your old private key password to your current log-in password." => "Establecer la contraseña de su antigua clave privada a su contraseña actual de acceso.", diff --git a/apps/files_encryption/l10n/es_AR.php b/apps/files_encryption/l10n/es_AR.php index 82ea3e06a69..b6f3fed8a6a 100644 --- a/apps/files_encryption/l10n/es_AR.php +++ b/apps/files_encryption/l10n/es_AR.php @@ -7,8 +7,6 @@ "Could not change the password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Comprobá que la contraseña actual sea correcta.", "Private key password successfully updated." => "Contraseña de clave privada actualizada con éxito.", "Could not update the private key password. Maybe the old password was not correct." => "No fue posible actualizar la contraseña de la clave privada. Tal vez la contraseña antigua no es correcta.", -"PHP module OpenSSL is not installed." => "El módulo OpenSSL para PHP no está instalado.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Pedile al administrador del servidor que instale el módulo. Por ahora la App de encriptación está deshabilitada.", "Saving..." => "Guardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde afuera.", "You can unlock your private key in your " => "Podés desbloquear tu clave privada en tu", diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index 94c774636b0..c1c8164b810 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -5,11 +5,32 @@ "Could not disable recovery key. Please check your recovery key password!" => "Ei suuda keelata taastevõtit. Palun kontrolli oma taastevõtme parooli!", "Password successfully changed." => "Parool edukalt vahetatud.", "Could not change the password. Maybe the old password was not correct." => "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatud.", +"Private key password successfully updated." => "Privaatse võtme parool edukalt uuendatud.", +"Could not update the private key password. Maybe the old password was not correct." => "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige.", +"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele.", +"Missing requirements." => "Nõutavad on puudu.", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veendu, et kasutusel oleks PHP 5.3.3 või uuem versioon ning kasutusel oleks OpenSSL PHP laiendus ja see on korrektselt seadistatud. Hetkel on krüpteerimise rakenduse kasutamine peatatud.", "Saving..." => "Salvestamine...", +"Your private key is not valid! Maybe the your password was changed from outside." => "Sinu privaatne võti ei ole õige. Võib-olla on parool vahetatud süsteemi väliselt.", +"You can unlock your private key in your " => "Saad avada oma privaatse võtme oma", +"personal settings" => "isiklikes seadetes", "Encryption" => "Krüpteerimine", +"Enable recovery key (allow to recover users files in case of password loss):" => "Luba taastevõti (võimada kasutaja failide taastamine parooli kaotuse puhul):", +"Recovery key password" => "Taastevõtme parool", "Enabled" => "Sisse lülitatud", "Disabled" => "Väljalülitatud", +"Change recovery key password:" => "Muuda taastevõtme parooli:", +"Old Recovery key password" => "Vana taastevõtme parool", +"New Recovery key password" => "Uus taastevõtme parool", "Change Password" => "Muuda parooli", +"Your private key password no longer match your log-in password:" => "Sinu privaatse võtme parool ei ühti enam sinu sisselogimise parooliga:", +"Set your old private key password to your current log-in password." => "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Kui sa ei mäleta oma vana parooli, siis palu oma süsteemihalduril taastada ligipääs failidele.", +"Old log-in password" => "Vana sisselogimise parool", +"Current log-in password" => "Praegune sisselogimise parool", +"Update Private Key Password" => "Uuenda privaatse võtme parooli", +"Enable password recovery:" => "Luba parooli taaste:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Valiku lubamine võimaldab taastada ligipääsu krüpteeritud failidele kui parooli kaotuse puhul", "File recovery settings updated" => "Faili taaste seaded uuendatud", "Could not update file recovery" => "Ei suuda uuendada taastefaili" ); diff --git a/apps/files_encryption/l10n/eu.php b/apps/files_encryption/l10n/eu.php index 07d30c7b937..22fe7932688 100644 --- a/apps/files_encryption/l10n/eu.php +++ b/apps/files_encryption/l10n/eu.php @@ -7,7 +7,6 @@ "Could not change the password. Maybe the old password was not correct." => "Ezin izan da pasahitza aldatu. Agian pasahitz zaharra okerrekoa da.", "Private key password successfully updated." => "Gako pasahitz pribatu behar bezala eguneratu da.", "Could not update the private key password. Maybe the old password was not correct." => "Ezin izan da gako pribatu pasahitza eguneratu. Agian pasahitz zaharra okerrekoa da.", -"PHP module OpenSSL is not installed." => "OpenSSL PHP modulua ez dago instalaturik.", "Saving..." => "Gordetzen...", "personal settings" => "ezarpen pertsonalak", "Encryption" => "Enkriptazioa", diff --git a/apps/files_encryption/l10n/fi_FI.php b/apps/files_encryption/l10n/fi_FI.php index b52d9bc7f68..a00cc8ab96e 100644 --- a/apps/files_encryption/l10n/fi_FI.php +++ b/apps/files_encryption/l10n/fi_FI.php @@ -1,7 +1,6 @@ <?php $TRANSLATIONS = array( "Password successfully changed." => "Salasana vaihdettiin onnistuneesti.", "Could not change the password. Maybe the old password was not correct." => "Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin.", -"PHP module OpenSSL is not installed." => "PHP-moduulia OpenSSL ei ole asennettu.", "Saving..." => "Tallennetaan...", "Encryption" => "Salaus", "Enabled" => "Käytössä", diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 5942d840687..44f65436722 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -8,8 +8,6 @@ "Private key password successfully updated." => "Mot de passe de la clé privé mis à jour avec succès.", "Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte.", -"PHP module OpenSSL is not installed." => "Le module OpenSSL de PHP n'est pas installé.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Veuillez demander à l'administrateur du serveur d'installer le module. Pour l'instant l'application de chiffrement a été désactivé.", "Saving..." => "Enregistrement...", "Your private key is not valid! Maybe the your password was changed from outside." => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur.", "You can unlock your private key in your " => "Vous pouvez déverrouiller votre clé privée dans votre", diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index 6b89db9e74c..db6f57bb36d 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -8,8 +8,8 @@ "Private key password successfully updated." => "A chave privada foi actualizada correctamente.", "Could not update the private key password. Maybe the old password was not correct." => "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros", -"PHP module OpenSSL is not installed." => "O módulo PHP OpenSSL non está instalado.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Pregúntelle ao administrador do servidor pola instalación do módulo. Polo de agora o aplicativo de cifrado foi desactivado.", +"Missing requirements." => "Non se cumpren os requisitos.", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de que a extensión OpenSSL PHP estea activada e configurada correctamente. Polo de agora foi desactivado o aplicativo de cifrado.", "Saving..." => "Gardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. ", "You can unlock your private key in your " => "Pode desbloquear a chave privada nos seus", diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index 6982d2d58d0..5b43d6321ff 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -8,8 +8,6 @@ "Private key password successfully updated." => "Password della chiave privata aggiornata correttamente.", "Could not update the private key password. Maybe the old password was not correct." => "Impossibile aggiornare la password della chiave privata. Forse la vecchia password non era corretta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La chiave privata non è valida! Forse la password è stata cambiata esternamente al sistema di ownCloud (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file.", -"PHP module OpenSSL is not installed." => "Il modulo PHP OpenSSL non è installato.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Chiedi all'amministratore del server di installare il modulo. Per ora la crittografia è disabilitata.", "Saving..." => "Salvataggio in corso...", "Your private key is not valid! Maybe the your password was changed from outside." => "La tua chiave privata non è valida! Forse è stata modifica dall'esterno.", "You can unlock your private key in your " => "Puoi sbloccare la chiave privata nelle tue", diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index ce1e3fd0f31..a1fcbd5c544 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -8,8 +8,8 @@ "Private key password successfully updated." => "秘密鍵のパスワードが正常に更新されました。", "Could not update the private key password. Maybe the old password was not correct." => "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "秘密鍵が有効ではありません。パスワードがownCloudシステムの外部(例えば、企業ディレクトリ)から変更された恐れがあります。個人設定で秘密鍵のパスワードを更新して、暗号化されたファイルを回復出来ます。", -"PHP module OpenSSL is not installed." => "PHPのモジュール OpenSSLがインストールされていません。", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "サーバーの管理者にモジュールのインストールを頼んでください。さしあたり暗号化アプリは無効化されました。", +"Missing requirements." => "必要要件が満たされていません。", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "必ず、PHP 5.3.3以上をインストールし、OpenSSLのPHP拡張を有効にして適切に設定してください。現時点では暗号化アプリは無効になっています。", "Saving..." => "保存中...", "Your private key is not valid! Maybe the your password was changed from outside." => "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。", "You can unlock your private key in your " => "個人設定で", diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index cac25c8c80a..093ed2c29c8 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -7,8 +7,6 @@ "Could not change the password. Maybe the old password was not correct." => "Kon wachtwoord niet wijzigen. Wellicht oude wachtwoord niet juist ingevoerd.", "Private key password successfully updated." => "Privésleutel succesvol bijgewerkt.", "Could not update the private key password. Maybe the old password was not correct." => "Kon het wachtwoord van de privésleutel niet wijzigen. Misschien was het oude wachtwoord onjuist.", -"PHP module OpenSSL is not installed." => "PHP module OpenSSL is niet geïnstalleerd.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Vraag uw beheerder deze module te installeren. Tot zolang is de crypto app gedeactiveerd.", "Saving..." => "Opslaan", "Your private key is not valid! Maybe the your password was changed from outside." => "Uw privésleutel is niet geldig. Misschien was uw wachtwoord van buitenaf gewijzigd.", "You can unlock your private key in your " => "U kunt uw privésleutel deblokkeren in uw", diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index fce5abfcaf8..3928afb1d5c 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -7,8 +7,6 @@ "Could not change the password. Maybe the old password was not correct." => "Nie można zmienić hasła. Może stare hasło nie było poprawne.", "Private key password successfully updated." => "Pomyślnie zaktualizowano hasło klucza prywatnego.", "Could not update the private key password. Maybe the old password was not correct." => "Nie można zmienić prywatnego hasła. Może stare hasło nie było poprawne.", -"PHP module OpenSSL is not installed." => "Moduł PHP OpenSSL nie jest zainstalowany", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Proszę poproś administratora serwera aby zainstalował ten moduł. Obecnie aplikacja szyfrowanie została wyłączona.", "Saving..." => "Zapisywanie...", "Your private key is not valid! Maybe the your password was changed from outside." => "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz.", "You can unlock your private key in your " => "Możesz odblokować swój klucz prywatny w swojej", diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index c8aa26188ad..1563243c993 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -8,8 +8,8 @@ "Private key password successfully updated." => "Senha de chave privada atualizada com sucesso.", "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", -"PHP module OpenSSL is not installed." => "O módulo PHP OpenSSL não está instalado.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Por favor peça ao administrador do servidor para instalar o módulo. Por enquanto o app de encriptação foi desabilitada.", +"Missing requirements." => "Requisitos em falta.", +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado.", "Saving..." => "Salvando...", "Your private key is not valid! Maybe the your password was changed from outside." => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada.", "You can unlock your private key in your " => "Você pode desbloquear sua chave privada nas suas", diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index 38ee85ad878..19a8287ada7 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -7,8 +7,6 @@ "Could not change the password. Maybe the old password was not correct." => "Невозможно изменить пароль. Возможно старый пароль не был верен.", "Private key password successfully updated." => "Пароль секретного ключа успешно обновлён.", "Could not update the private key password. Maybe the old password was not correct." => "Невозможно обновить пароль от секретного ключа. Возможно, старый пароль указан неверно.", -"PHP module OpenSSL is not installed." => "Модуль OpenSSL для PHP не установлен.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Попросите администратора сервера установить модуль. Приложение шифрования было временно отключено.", "Saving..." => "Сохранение...", "Your private key is not valid! Maybe the your password was changed from outside." => "Секретный ключ недействителен! Возможно, Ваш пароль был изменён в другой программе.", "You can unlock your private key in your " => "Вы можете разблокировать закрытый ключ в своём ", diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index 9ae64797be6..8b28ba01155 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -8,8 +8,6 @@ "Private key password successfully updated." => "Zasebni ključ za geslo je bil uspešno posodobljen.", "Could not update the private key password. Maybe the old password was not correct." => "Zasebnega ključa za geslo ni bilo mogoče posodobiti. Morda vnos starega gesla ni bil pravilen.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno zunaj sistema ownCloud (npr. v skupnem imeniku). Svoj zasebni ključ, ki vam bo omogočil dostop do šifriranih dokumentov, lahko posodobite v osebnih nastavitvah.", -"PHP module OpenSSL is not installed." => "PHP-modul OpenSSL ni nameščen.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Obvestite skrbnika strežnika, da namesti manjkajoč modul. Trenutno je šifriranje onemogočeno.", "Saving..." => "Poteka shranjevanje ...", "Your private key is not valid! Maybe the your password was changed from outside." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno.", "You can unlock your private key in your " => "Svoj zasebni ključ lahko odklenite v", diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index 986ddbddf2d..3659e22bb4e 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -8,8 +8,6 @@ "Private key password successfully updated." => "Den privata lösenordsnyckeln uppdaterades utan problem.", "Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer.", -"PHP module OpenSSL is not installed." => "PHP-modulen för OpenSSL är inte installerad.", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "Be din systemadministratör att installera modulen. För tillfället är appen för kryptering inaktiverad.", "Saving..." => "Sparar...", "Your private key is not valid! Maybe the your password was changed from outside." => "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan.", "You can unlock your private key in your " => "Du kan låsa upp din privata nyckel i dina", diff --git a/apps/files_encryption/l10n/zh_CN.php b/apps/files_encryption/l10n/zh_CN.php index 0896687aa84..a3939165c7a 100644 --- a/apps/files_encryption/l10n/zh_CN.php +++ b/apps/files_encryption/l10n/zh_CN.php @@ -8,8 +8,6 @@ "Private key password successfully updated." => "私钥密码成功更新。", "Could not update the private key password. Maybe the old password was not correct." => "无法更新私钥密码。可能旧密码不正确。", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "您的私有密钥无效!也许是您在 ownCloud 系统外更改了密码 (比如,在您的公司目录)。您可以在个人设置里更新您的私钥密码来恢复访问你的加密文件。", -"PHP module OpenSSL is not installed." => "PHP 模块 OpenSSL 未安装。", -"Please ask your server administrator to install the module. For now the encryption app was disabled." => "请请求您的服务器管理员安装该模块。现在加密应用被禁用。", "Saving..." => "保存中", "Your private key is not valid! Maybe the your password was changed from outside." => "您的私钥不正确!可能您在别处更改了密码。", "You can unlock your private key in your " => "您可以在这里解锁您的私钥:", diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index 31cf48a0393..6eee8fed6a6 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -218,7 +218,6 @@ class Helper { exit(); } - /** * check requirements for encryption app. * @return bool true if requirements are met @@ -233,4 +232,14 @@ class Helper { return (bool) $result; } + + /** + * @brief glob uses different pattern than regular expressions, escape glob pattern only + * @param unescaped path + * @return escaped path + */ + public static function escapeGlobPattern($path) { + return preg_replace('/(\*|\?|\[)/', '[$1]', $path); + } } + diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index e911c1785df..b2fd650f18d 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -126,7 +126,12 @@ class Keymanager { $util = new Util($view, \OCP\User::getUser()); list($owner, $filename) = $util->getUidAndFilename($path); - $basePath = '/' . $owner . '/files_encryption/keyfiles'; + // in case of system wide mount points the keys are stored directly in the data directory + if ($util->isSystemWideMountPoint($filename)) { + $basePath = '/files_encryption/keyfiles'; + } else { + $basePath = '/' . $owner . '/files_encryption/keyfiles'; + } $targetPath = self::keySetPreparation($view, $filename, $basePath, $owner); @@ -233,7 +238,12 @@ class Keymanager { list($owner, $filename) = $util->getUidAndFilename($filePath); $filePath_f = ltrim($filename, '/'); - $keyfilePath = '/' . $owner . '/files_encryption/keyfiles/' . $filePath_f . '.key'; + // in case of system wide mount points the keys are stored directly in the data directory + if ($util->isSystemWideMountPoint($filename)) { + $keyfilePath = '/files_encryption/keyfiles/' . $filePath_f . '.key'; + } else { + $keyfilePath = '/' . $owner . '/files_encryption/keyfiles/' . $filePath_f . '.key'; + } $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; @@ -267,7 +277,14 @@ class Keymanager { public static function deleteFileKey(\OC_FilesystemView $view, $userId, $path) { $trimmed = ltrim($path, '/'); - $keyPath = '/' . $userId . '/files_encryption/keyfiles/' . $trimmed; + + $util = new Util($view, \OCP\User::getUser()); + + if($util->isSystemWideMountPoint($path)) { + $keyPath = '/files_encryption/keyfiles/' . $trimmed; + } else { + $keyPath = '/' . $userId . '/files_encryption/keyfiles/' . $trimmed; + } $result = false; @@ -325,57 +342,26 @@ class Keymanager { * @brief store share key * * @param \OC_FilesystemView $view - * @param string $path relative path of the file, including filename - * @param $userId + * @param string $path where the share key is stored * @param $shareKey - * @internal param string $key - * @internal param string $dbClassName * @return bool true/false * @note The keyfile is not encrypted here. Client code must * asymmetrically encrypt the keyfile before passing it to this method */ - public static function setShareKey(\OC_FilesystemView $view, $path, $userId, $shareKey) { - - // Here we need the currently logged in user, while userId can be a different user - $util = new Util($view, \OCP\User::getUser()); - - list($owner, $filename) = $util->getUidAndFilename($path); - - $basePath = '/' . $owner . '/files_encryption/share-keys'; - - $shareKeyPath = self::keySetPreparation($view, $filename, $basePath, $owner); - - // try reusing key file if part file - if (self::isPartialFilePath($shareKeyPath)) { - - $writePath = $basePath . '/' . self::fixPartialFilePath($shareKeyPath) . '.' . $userId . '.shareKey'; - - } else { - - $writePath = $basePath . '/' . $shareKeyPath . '.' . $userId . '.shareKey'; - - } + private static function setShareKey(\OC_FilesystemView $view, $path, $shareKey) { $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; - $result = $view->file_put_contents($writePath, $shareKey); + $result = $view->file_put_contents($path, $shareKey); \OC_FileProxy::$enabled = $proxyStatus; - if ( - is_int($result) - && $result > 0 - ) { - + if (is_int($result) && $result > 0) { return true; - } else { - return false; - } - } /** @@ -389,23 +375,40 @@ class Keymanager { // $shareKeys must be an array with the following format: // [userId] => [encrypted key] + // Here we need the currently logged in user, while userId can be a different user + $util = new Util($view, \OCP\User::getUser()); + + list($owner, $filename) = $util->getUidAndFilename($path); + + // in case of system wide mount points the keys are stored directly in the data directory + if ($util->isSystemWideMountPoint($filename)) { + $basePath = '/files_encryption/share-keys'; + } else { + $basePath = '/' . $owner . '/files_encryption/share-keys'; + } + + $shareKeyPath = self::keySetPreparation($view, $filename, $basePath, $owner); $result = true; foreach ($shareKeys as $userId => $shareKey) { - if (!self::setShareKey($view, $path, $userId, $shareKey)) { + // try reusing key file if part file + if (self::isPartialFilePath($shareKeyPath)) { + $writePath = $basePath . '/' . self::fixPartialFilePath($shareKeyPath) . '.' . $userId . '.shareKey'; + } else { + $writePath = $basePath . '/' . $shareKeyPath . '.' . $userId . '.shareKey'; + } + + if (!self::setShareKey($view, $writePath, $shareKey)) { // If any of the keys are not set, flag false $result = false; - } - } // Returns false if any of the keys weren't set return $result; - } /** @@ -440,8 +443,13 @@ class Keymanager { $util = new Util($view, \OCP\User::getUser()); list($owner, $filename) = $util->getUidAndFilename($filePath); - $shareKeyPath = \OC\Files\Filesystem::normalizePath( - '/' . $owner . '/files_encryption/share-keys/' . $filename . '.' . $userId . '.shareKey'); + + // in case of system wide mount points the keys are stored directly in the data directory + if ($util->isSystemWideMountPoint($filename)) { + $shareKeyPath = '/files_encryption/share-keys/' . $filename . '.' . $userId . '.shareKey'; + } else { + $shareKeyPath = '/' . $owner . '/files_encryption/share-keys/' . $filename . '.' . $userId . '.shareKey'; + } if ($view->file_exists($shareKeyPath)) { @@ -467,11 +475,21 @@ class Keymanager { */ public static function delAllShareKeys(\OC_FilesystemView $view, $userId, $filePath) { + $util = new util($view, $userId); + + if ($util->isSystemWideMountPoint($filePath)) { + $baseDir = '/files_encryption/share-keys/'; + } else { + $baseDir = $userId . '/files_encryption/share-keys/'; + } + + if ($view->is_dir($userId . '/files/' . $filePath)) { - $view->unlink($userId . '/files_encryption/share-keys/' . $filePath); + $view->unlink($baseDir . $filePath); } else { - $localKeyPath = $view->getLocalFile($userId . '/files_encryption/share-keys/' . $filePath); - $matches = glob(preg_quote($localKeyPath) . '*.shareKey'); + $localKeyPath = $view->getLocalFile($baseDir . $filePath); + $escapedPath = Helper::escapeGlobPattern($localKeyPath); + $matches = glob($escapedPath . '*.shareKey'); foreach ($matches as $ma) { $result = unlink($ma); if (!$result) { @@ -495,7 +513,11 @@ class Keymanager { list($owner, $filename) = $util->getUidAndFilename($filePath); - $shareKeyPath = \OC\Files\Filesystem::normalizePath('/' . $owner . '/files_encryption/share-keys/' . $filename); + if ($util->isSystemWideMountPoint($filename)) { + $shareKeyPath = \OC\Files\Filesystem::normalizePath('/files_encryption/share-keys/' . $filename); + } else { + $shareKeyPath = \OC\Files\Filesystem::normalizePath('/' . $owner . '/files_encryption/share-keys/' . $filename); + } if ($view->is_dir($shareKeyPath)) { @@ -526,7 +548,10 @@ class Keymanager { */ private static function recursiveDelShareKeys($dir, $userIds) { foreach ($userIds as $userId) { - $matches = glob(preg_quote($dir) . '/*' . preg_quote('.' . $userId . '.shareKey')); + $extension = '.' . $userId . '.shareKey'; + $escapedDir = Helper::escapeGlobPattern($dir); + $escapedExtension = Helper::escapeGlobPattern($extension); + $matches = glob($escapedDir . '/*' . $escapedExtension); } /** @var $matches array */ foreach ($matches as $ma) { @@ -535,7 +560,7 @@ class Keymanager { 'Could not delete shareKey; does not exist: "' . $ma . '"', \OCP\Util::ERROR); } } - $subdirs = $directories = glob(preg_quote($dir) . '/*', GLOB_ONLYDIR); + $subdirs = $directories = glob($escapedDir . '/*', GLOB_ONLYDIR); foreach ($subdirs as $subdir) { self::recursiveDelShareKeys($subdir, $userIds); } diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index b3de85254e2..50e823585d7 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -992,13 +992,9 @@ class Util { \OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled') && $this->recoveryEnabledForUser() ) { - $recoveryEnabled = true; - } else { - $recoveryEnabled = false; - } // Make sure that a share key is generated for the owner too @@ -1019,20 +1015,25 @@ class Util { // If recovery is enabled, add the // Admin UID to list of users to share to if ($recoveryEnabled) { - // Find recoveryAdmin user ID $recoveryKeyId = \OC_Appconfig::getValue('files_encryption', 'recoveryKeyId'); - // Add recoveryAdmin to list of users sharing $userIds[] = $recoveryKeyId; - } // add current user if given if ($currentUserId !== false) { - $userIds[] = $currentUserId; + } + // check if it is a group mount + if (\OCP\App::isEnabled("files_external")) { + $mount = \OC_Mount_Config::getSystemMountPoints(); + foreach ($mount as $mountPoint => $data) { + if ($mountPoint == substr($ownerPath, 1, strlen($mountPoint))) { + $userIds = array_merge($userIds, $this->getUserWithAccessToMountPoint($data['applicable']['users'], $data['applicable']['groups'])); + } + } } // Remove duplicate UIDs @@ -1042,6 +1043,20 @@ class Util { } + private function getUserWithAccessToMountPoint($users, $groups) { + $result = array(); + if (in_array('all', $users)) { + $result = \OCP\User::getUsers(); + } else { + $result = array_merge($result, $users); + foreach ($groups as $group) { + $result = array_merge($result, \OC_Group::usersInGroup($group)); + } + } + + return $result; + } + /** * @brief start migration mode to initially encrypt users data * @return boolean @@ -1179,7 +1194,7 @@ class Util { return array( $fileOwnerUid, - $filename + \OC_Filesystem::normalizePath($filename) ); } @@ -1547,4 +1562,21 @@ class Util { return $relativePath; } + /** + * @brief check if the file is stored on a system wide mount point + * @param $path relative to /data/user with leading '/' + * @return boolean + */ + public function isSystemWideMountPoint($path) { + if (\OCP\App::isEnabled("files_external")) { + $mount = \OC_Mount_Config::getSystemMountPoints(); + foreach ($mount as $mountPoint => $data) { + if ($mountPoint == substr($path, 1, strlen($mountPoint))) { + return true; + } + } + } + return false; + } + } diff --git a/apps/files_encryption/tests/util.php b/apps/files_encryption/tests/util.php index cb10befc8e4..368b7b3dc3f 100755 --- a/apps/files_encryption/tests/util.php +++ b/apps/files_encryption/tests/util.php @@ -219,7 +219,7 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { \OC_User::setUserId(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_USER1); - $filename = 'tmp-' . time() . '.test'; + $filename = '/tmp-' . time() . '.test'; // Disable encryption proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index f83562dd643..d145a176f71 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -1,12 +1,12 @@ <?php $TRANSLATIONS = array( -"Access granted" => "Acceso garantizado", +"Access granted" => "Acceso concedido", "Error configuring Dropbox storage" => "Error configurando el almacenamiento de Dropbox", -"Grant access" => "Garantizar acceso", -"Please provide a valid Dropbox app key and secret." => "Por favor , proporcione un secreto y una contraseña válida de la app Dropbox.", +"Grant access" => "Conceder acceso", +"Please provide a valid Dropbox app key and secret." => "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta.", "Error configuring Google Drive storage" => "Error configurando el almacenamiento de Google Drive", "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Advertencia:</b> El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale.", "<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "<b>Advertencia:</b> El soporte de FTP en PHP no se encuentra instalado. El montado de archivos o ficheros FTP no es posible. Por favor pida al administrador de su sistema que lo instale.", -"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Advertencia:</b> El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale.", +"<b>Warning:</b> The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "<b>Advertencia:</b> El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale.", "External Storage" => "Almacenamiento externo", "Folder name" => "Nombre de la carpeta", "External storage" => "Almacenamiento externo", @@ -19,8 +19,8 @@ "Groups" => "Grupos", "Users" => "Usuarios", "Delete" => "Eliminar", -"Enable User External Storage" => "Habilitar almacenamiento de usuario externo", +"Enable User External Storage" => "Habilitar almacenamiento externo de usuario", "Allow users to mount their own external storage" => "Permitir a los usuarios montar su propio almacenamiento externo", -"SSL root certificates" => "Raíz de certificados SSL ", +"SSL root certificates" => "Certificados raíz SSL", "Import Root Certificate" => "Importar certificado raíz" ); diff --git a/apps/files_sharing/css/public.css b/apps/files_sharing/css/public.css index 71133145c87..b6511cb57cc 100644 --- a/apps/files_sharing/css/public.css +++ b/apps/files_sharing/css/public.css @@ -23,13 +23,17 @@ body { #public_upload, #download { font-weight:700; - margin: 0 0.4em 0 2em; + margin: 0 0.4em 0 0; padding: 0 5px; height: 27px; float: left; } +.header-right #details { + margin-right: 2em; +} + #public_upload { margin-left: 0.3em; } diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index 0244f392a0e..294223aa094 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -11,6 +11,8 @@ var form_data; $(document).ready(function() { + $('#data-upload-form').tipsy({gravity:'ne', fade:true}); + if (typeof FileActions !== 'undefined') { var mimetype = $('#mimetype').val(); // Show file preview if previewer is available, images are already handled by the template diff --git a/apps/files_sharing/l10n/de_DE.php b/apps/files_sharing/l10n/de_DE.php index 5e365746e84..cac7b7591d6 100644 --- a/apps/files_sharing/l10n/de_DE.php +++ b/apps/files_sharing/l10n/de_DE.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" => "Passwort", "Submit" => "Bestätigen", "%s shared the folder %s with you" => "%s hat den Ordner %s mit Ihnen geteilt", diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index 9f7f10f8065..1b65cf0c190 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "La contraseña introducida es errónea. Inténtelo de nuevo.", "Password" => "Contraseña", "Submit" => "Enviar", "%s shared the folder %s with you" => "%s compartió la carpeta %s contigo", diff --git a/apps/files_sharing/l10n/et_EE.php b/apps/files_sharing/l10n/et_EE.php index 138628849a2..78fe436398c 100644 --- a/apps/files_sharing/l10n/et_EE.php +++ b/apps/files_sharing/l10n/et_EE.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Parool on vale. Proovi uuesti.", "Password" => "Parool", "Submit" => "Saada", "%s shared the folder %s with you" => "%s jagas sinuga kausta %s", diff --git a/apps/files_sharing/l10n/fa.php b/apps/files_sharing/l10n/fa.php index 1a7ae9330ad..7a744c8463d 100644 --- a/apps/files_sharing/l10n/fa.php +++ b/apps/files_sharing/l10n/fa.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "رمزعبور اشتباه می باشد. دوباره امتحان کنید.", "Password" => "گذرواژه", "Submit" => "ثبت", "%s shared the folder %s with you" => "%sپوشه %s را با شما به اشتراک گذاشت", diff --git a/apps/files_sharing/l10n/gl.php b/apps/files_sharing/l10n/gl.php index a7a3cbb9c3b..2d8de8e1019 100644 --- a/apps/files_sharing/l10n/gl.php +++ b/apps/files_sharing/l10n/gl.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "O contrasinal é incorrecto. Ténteo de novo.", "Password" => "Contrasinal", "Submit" => "Enviar", "%s shared the folder %s with you" => "%s compartiu o cartafol %s con vostede", diff --git a/apps/files_sharing/l10n/ja_JP.php b/apps/files_sharing/l10n/ja_JP.php index 3f3cfbfb3b4..d2bc2d11245 100644 --- a/apps/files_sharing/l10n/ja_JP.php +++ b/apps/files_sharing/l10n/ja_JP.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "パスワードが間違っています。再試行してください。", "Password" => "パスワード", "Submit" => "送信", "%s shared the folder %s with you" => "%s はフォルダー %s をあなたと共有中です", diff --git a/apps/files_sharing/l10n/pt_BR.php b/apps/files_sharing/l10n/pt_BR.php index cf1eda94391..c82989857a9 100644 --- a/apps/files_sharing/l10n/pt_BR.php +++ b/apps/files_sharing/l10n/pt_BR.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Senha incorreta. Tente novamente.", "Password" => "Senha", "Submit" => "Submeter", "%s shared the folder %s with you" => "%s compartilhou a pasta %s com você", diff --git a/apps/files_sharing/l10n/ro.php b/apps/files_sharing/l10n/ro.php index 1f38026daa1..3197068cdd1 100644 --- a/apps/files_sharing/l10n/ro.php +++ b/apps/files_sharing/l10n/ro.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Parola este incorectă. Încercaţi din nou.", "Password" => "Parolă", "Submit" => "Trimite", "%s shared the folder %s with you" => "%s a partajat directorul %s cu tine", diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index fb18bc26248..9462844a82b 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -27,23 +27,9 @@ if (isset($_GET['t'])) { $type = $linkItem['item_type']; $fileSource = $linkItem['file_source']; $shareOwner = $linkItem['uid_owner']; - $fileOwner = null; $path = null; - if (isset($linkItem['parent'])) { - $parent = $linkItem['parent']; - while (isset($parent)) { - $query = \OC_DB::prepare('SELECT `parent`, `uid_owner` FROM `*PREFIX*share` WHERE `id` = ?', 1); - $item = $query->execute(array($parent))->fetchRow(); - if (isset($item['parent'])) { - $parent = $item['parent']; - } else { - $fileOwner = $item['uid_owner']; - break; - } - } - } else { - $fileOwner = $shareOwner; - } + $rootLinkItem = OCP\Share::resolveReShare($linkItem); + $fileOwner = $rootLinkItem['uid_owner']; if (isset($fileOwner)) { OC_Util::tearDownFS(); OC_Util::setupFS($fileOwner); @@ -151,6 +137,9 @@ if (isset($path)) { if (\OCP\App::isEnabled('files_encryption')) { $allowPublicUploadEnabled = false; } + if ($linkItem['item_type'] !== 'folder') { + $allowPublicUploadEnabled = false; + } $tmpl->assign('allowPublicUploadEnabled', $allowPublicUploadEnabled); $tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 56ed4ca168e..e8bf80b8720 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -1,5 +1,5 @@ <div id="notification-container"> - <div id="notification" style="display: none;"></div> + <div id="notification" style="display: none;"></div> </div> <?php $defaults = new OCP\Defaults(); // initialize themable default strings and urls ?> @@ -9,88 +9,92 @@ <input type="hidden" name="filename" value="<?php p($_['filename']) ?>" id="filename"> <input type="hidden" name="mimetype" value="<?php p($_['mimetype']) ?>" id="mimetype"> <header><div id="header"> - <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"><img class="svg" - src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="ownCloud" /></a> - <div id="logo-claim" style="display:none;"><?php p($defaults->getLogoClaim()); ?></div> - <div class="header-right"> - <?php if (isset($_['folder'])): ?> - <span id="details"><?php p($l->t('%s shared the folder %s with you', - array($_['displayName'], $_['fileTarget']))) ?></span> - <?php else: ?> - <span id="details"><?php p($l->t('%s shared the file %s with you', - array($_['displayName'], $_['fileTarget']))) ?></span> - <?php endif; ?> - - - <?php if (!isset($_['folder']) || $_['allowZipDownload']): ?> - <a href="<?php p($_['downloadURL']); ?>" class="button" id="download"><img - class="svg" alt="Download" src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>" - /><span><?php p($l->t('Download'))?></span></a> - <?php endif; ?> - - <?php if ($_['allowPublicUploadEnabled']):?> - - - <input type="hidden" id="publicUploadRequestToken" name="requesttoken" value="<?php p($_['requesttoken']) ?>" /> - <input type="hidden" id="dirToken" name="dirToken" value="<?php p($_['dirToken']) ?>" /> - <input type="hidden" id="uploadMaxFilesize" name="uploadMaxFilesize" value="<?php p($_['uploadMaxFilesize']) ?>" /> - <input type="hidden" id="uploadMaxHumanFilesize" name="uploadMaxHumanFilesize" value="<?php p($_['uploadMaxHumanFilesize']) ?>" /> - <input type="hidden" id="directory_path" name="directory_path" value="<?php p($_['directory_path']) ?>" /> - - - <div id="data-upload-form" class="button"> - <input id="file_upload_start" type="file" name="files[]" data-url="<?php print_unescaped(OCP\Util::linkTo('files', 'ajax/upload.php')); ?>" multiple> - <a href="#" id="publicUploadButtonMock" class="svg"> - <span><?php p($l->t('Upload'))?></span> - </a> - </div> + <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"><img class="svg" + src="<?php print_unescaped(image_path('', 'logo-wide.svg')); ?>" alt="ownCloud" /></a> + <div id="logo-claim" style="display:none;"><?php p($defaults->getLogoClaim()); ?></div> + <div class="header-right"> + <?php if (isset($_['folder'])): ?> + <span id="details"><?php p($l->t('%s shared the folder %s with you', + array($_['displayName'], $_['fileTarget']))) ?></span> + <?php else: ?> + <span id="details"><?php p($l->t('%s shared the file %s with you', + array($_['displayName'], $_['fileTarget']))) ?></span> + <?php endif; ?> + + + <?php if (!isset($_['folder']) || $_['allowZipDownload']): ?> + <a href="<?php p($_['downloadURL']); ?>" class="button" id="download"><img + class="svg" alt="Download" src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>" + /><span><?php p($l->t('Download'))?></span></a> + <?php endif; ?> + + <?php if ($_['allowPublicUploadEnabled']):?> + + + <input type="hidden" id="publicUploadRequestToken" name="requesttoken" value="<?php p($_['requesttoken']) ?>" /> + <input type="hidden" id="dirToken" name="dirToken" value="<?php p($_['dirToken']) ?>" /> + <input type="hidden" id="uploadMaxFilesize" name="uploadMaxFilesize" value="<?php p($_['uploadMaxFilesize']) ?>" /> + <input type="hidden" id="uploadMaxHumanFilesize" name="uploadMaxHumanFilesize" value="<?php p($_['uploadMaxHumanFilesize']) ?>" /> + <input type="hidden" id="directory_path" name="directory_path" value="<?php p($_['directory_path']) ?>" /> + <?php if($_['uploadMaxFilesize'] >= 0):?> + <input type="hidden" name="MAX_FILE_SIZE" id="max_upload" + value="<?php p($_['uploadMaxFilesize']) ?>"> + <?php endif;?> + + + <div id="data-upload-form" class="button" title="<?php p($l->t('Upload') . ' max. '.$_['uploadMaxHumanFilesize']) ?>"> + <input id="file_upload_start" type="file" name="files[]" data-url="<?php print_unescaped(OCP\Util::linkTo('files', 'ajax/upload.php')); ?>" multiple> + <a href="#" id="publicUploadButtonMock" class="svg"> + <span><?php p($l->t('Upload'))?></span> + </a> + </div> - </div> + </div> - <div id="additional_controls" style="display:none"> - <div id="uploadprogresswrapper"> - <div id="uploadprogressbar"></div> - <input id="cancel_upload_button" type="button" class="stop" style="display:none" - value="<?php p($l->t('Cancel upload'));?>" - /> - </div> + <div id="additional_controls" style="display:none"> + <div id="uploadprogresswrapper"> + <div id="uploadprogressbar"></div> + <input id="cancel_upload_button" type="button" class="stop" style="display:none" + value="<?php p($l->t('Cancel upload'));?>" + /> + </div> - <?php endif; ?> + <?php endif; ?> - </div> -</div></header> + </div> + </div></header> <div id="content"> -<div id="preview"> - <?php if (isset($_['folder'])): ?> - <?php print_unescaped($_['folder']); ?> - <?php else: ?> - <?php if (substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) == 'image'): ?> - <div id="imgframe"> - <img src="<?php p($_['downloadURL']); ?>" /> - </div> - <?php elseif (substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) == 'video'): ?> - <div id="imgframe"> - <video tabindex="0" controls="" autoplay=""> - <source src="<?php p($_['downloadURL']); ?>" type="<?php p($_['mimetype']); ?>" /> - </video> - </div> + <div id="preview"> + <?php if (isset($_['folder'])): ?> + <?php print_unescaped($_['folder']); ?> <?php else: ?> - <ul id="noPreview"> - <li class="error"> - <?php p($l->t('No preview available for').' '.$_['fileTarget']); ?><br /> - <a href="<?php p($_['downloadURL']); ?>" id="download"><img class="svg" alt="Download" - src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>" - /><?php p($l->t('Download'))?></a> - </li> - </ul> + <?php if (substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) == 'image'): ?> + <div id="imgframe"> + <img src="<?php p($_['downloadURL']); ?>" /> + </div> + <?php elseif (substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) == 'video'): ?> + <div id="imgframe"> + <video tabindex="0" controls="" autoplay=""> + <source src="<?php p($_['downloadURL']); ?>" type="<?php p($_['mimetype']); ?>" /> + </video> + </div> + <?php else: ?> + <ul id="noPreview"> + <li class="error"> + <?php p($l->t('No preview available for').' '.$_['fileTarget']); ?><br /> + <a href="<?php p($_['downloadURL']); ?>" id="download"><img class="svg" alt="Download" + src="<?php print_unescaped(OCP\image_path("core", "actions/download.svg")); ?>" + /><?php p($l->t('Download'))?></a> + </li> + </ul> + <?php endif; ?> <?php endif; ?> - <?php endif; ?> -</div> -<footer> - <p class="info"> - <?php print_unescaped($defaults->getLongFooter()); ?> - </p> -</footer> + </div> + <footer> + <p class="info"> + <?php print_unescaped($defaults->getLongFooter()); ?> + </p> + </footer> diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 691642811b7..87dfea491e7 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -2,9 +2,9 @@ $(document).ready(function() { if (typeof FileActions !== 'undefined') { - FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/undelete.png'), function(filename) { + FileActions.register('all', 'Restore', OC.PERMISSION_READ, OC.imagePath('core', 'actions/history'), function(filename) { var tr=$('tr').filterAttr('data-file', filename); - var spinner = '<img class="move2trash" title="'+t('files_trashbin', 'perform restore operation')+'" src="'+ OC.imagePath('core', 'loader.gif') +'"></a>'; + var spinner = '<img class="move2trash" title="'+t('files_trashbin', 'perform restore operation')+'" src="'+ OC.imagePath('core', 'loading.gif') +'"></a>'; var undeleteAction = $('tr').filterAttr('data-file',filename).children("td.date"); var files = tr.attr('data-file'); undeleteAction[0].innerHTML = undeleteAction[0].innerHTML+spinner; @@ -94,7 +94,7 @@ $(document).ready(function() { $('.undelete').click('click',function(event) { event.preventDefault(); - var spinner = '<img class="move2trash" title="'+t('files_trashbin', 'perform restore operation')+'" src="'+ OC.imagePath('core', 'loader.gif') +'"></a>'; + var spinner = '<img class="move2trash" title="'+t('files_trashbin', 'perform restore operation')+'" src="'+ OC.imagePath('core', 'loading.gif') +'"></a>'; var files=getSelectedFiles('file'); var fileslist = JSON.stringify(files); var dirlisting=getSelectedFiles('dirlisting')[0]; diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index c267db7358a..b2d5a2aed26 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -1,9 +1,9 @@ <?php $TRANSLATIONS = array( "Couldn't delete %s permanently" => "No se puede eliminar %s permanentemente", "Couldn't restore %s" => "No se puede restaurar %s", -"perform restore operation" => "Restaurar", +"perform restore operation" => "restaurar", "Error" => "Error", -"delete file permanently" => "Eliminar archivo permanentemente", +"delete file permanently" => "eliminar archivo permanentemente", "Delete permanently" => "Eliminar permanentemente", "Name" => "Nombre", "Deleted" => "Eliminado", diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index 1235d9d2ee0..b9d900dfab4 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -171,13 +171,19 @@ class Trashbin { list($owner, $ownerPath) = self::getUidAndFilename($file_path); + $util = new \OCA\Encryption\Util(new \OC_FilesystemView('/'), $user); // disable proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; - // retain key files - $keyfile = \OC\Files\Filesystem::normalizePath($owner . '/files_encryption/keyfiles/' . $ownerPath); + if ($util->isSystemWideMountPoint($ownerPath)) { + $baseDir = '/files_encryption/'; + } else { + $baseDir = $owner . '/files_encryption/'; + } + + $keyfile = \OC\Files\Filesystem::normalizePath($baseDir . '/keyfiles/' . $ownerPath); if ($rootView->is_dir($keyfile) || $rootView->file_exists($keyfile . '.key')) { // move keyfiles @@ -191,7 +197,7 @@ class Trashbin { } // retain share keys - $sharekeys = \OC\Files\Filesystem::normalizePath($owner . '/files_encryption/share-keys/' . $ownerPath); + $sharekeys = \OC\Files\Filesystem::normalizePath($baseDir . '/share-keys/' . $ownerPath); if ($rootView->is_dir($sharekeys)) { $size += self::calculateSize(new \OC\Files\View($sharekeys)); @@ -403,6 +409,14 @@ class Trashbin { list($owner, $ownerPath) = self::getUidAndFilename($target); + $util = new \OCA\Encryption\Util(new \OC_FilesystemView('/'), $user); + + if ($util->isSystemWideMountPoint($ownerPath)) { + $baseDir = '/files_encryption/'; + } else { + $baseDir = $owner . '/files_encryption/'; + } + $path_parts = pathinfo($file); $source_location = $path_parts['dirname']; @@ -432,18 +446,18 @@ class Trashbin { // handle keyfiles $size += self::calculateSize(new \OC\Files\View($keyfile)); - $rootView->rename($keyfile, $owner . '/files_encryption/keyfiles/' . $ownerPath); + $rootView->rename($keyfile, $baseDir . '/keyfiles/' . $ownerPath); // handle share-keys if ($timestamp) { $sharekey .= '.d' . $timestamp; } $size += self::calculateSize(new \OC\Files\View($sharekey)); - $rootView->rename($sharekey, $owner . '/files_encryption/share-keys/' . $ownerPath); + $rootView->rename($sharekey, $baseDir . '/share-keys/' . $ownerPath); } else { // handle keyfiles $size += $rootView->filesize($keyfile); - $rootView->rename($keyfile, $owner . '/files_encryption/keyfiles/' . $ownerPath . '.key'); + $rootView->rename($keyfile, $baseDir . '/keyfiles/' . $ownerPath . '.key'); // handle share-keys $ownerShareKey = \OC\Files\Filesystem::normalizePath($user . '/files_trashbin/share-keys/' . $source_location . '/' . $filename . '.' . $user . '.shareKey'); @@ -454,7 +468,7 @@ class Trashbin { $size += $rootView->filesize($ownerShareKey); // move only owners key - $rootView->rename($ownerShareKey, $owner . '/files_encryption/share-keys/' . $ownerPath . '.' . $user . '.shareKey'); + $rootView->rename($ownerShareKey, $baseDir . '/share-keys/' . $ownerPath . '.' . $user . '.shareKey'); // try to re-share if file is shared $filesystemView = new \OC_FilesystemView('/'); diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index cb5edaa2c91..66ec36df867 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -18,7 +18,7 @@ <span class='selectedActions'> <a href="" class="undelete"> <img class="svg" alt="<?php p($l->t( 'Restore' )); ?>" - src="<?php print_unescaped(OCP\image_path("core", "actions/undelete.png")); ?>" /> + src="<?php print_unescaped(OCP\image_path("core", "actions/history.svg")); ?>" /> <?php p($l->t('Restore'))?> </a> </span> diff --git a/apps/files_versions/l10n/fa.php b/apps/files_versions/l10n/fa.php index 4ec6aa1bbb4..43f7d71eb55 100644 --- a/apps/files_versions/l10n/fa.php +++ b/apps/files_versions/l10n/fa.php @@ -4,5 +4,6 @@ "failure" => "شکست", "No old versions available" => "هیچ نسخه قدیمی در دسترس نیست", "No path specified" => "هیچ مسیری مشخص نشده است", +"Versions" => "نسخه ها", "Revert a file to a previous version by clicking on its revert button" => "بازگردانی یک پرورنده به نسخه قدیمی اش از طریق دکمه بازگردانی امکان پذیر است" ); diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 8aa64477e41..605c75f288a 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"Failed to clear the mappings." => "Löschen der Zuordnung fehlgeschlagen.", "Failed to delete the server configuration" => "Löschen der Serverkonfiguration fehlgeschlagen", "The configuration is valid and the connection could be established!" => "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen.", @@ -7,6 +8,7 @@ "Take over settings from recent server configuration?" => "Einstellungen von letzter Konfiguration übernehmen?", "Keep settings?" => "Einstellungen beibehalten?", "Cannot add server configuration" => "Das Hinzufügen der Serverkonfiguration schlug fehl", +"mappings cleared" => "Zuordnungen gelöscht", "Success" => "Erfolg", "Error" => "Fehler", "Connection test succeeded" => "Verbindungstest erfolgreich", @@ -74,8 +76,13 @@ "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls tragen Sie bitte ein LDAP/AD-Attribut ein.", "Internal Username" => "Interner Benutzername", "By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder in ownCloud. It is also a port of remote URLs, for instance for all *DAV services. With this setting, the default behaviour can be overriden. To achieve a similar behaviour as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users." => "Standardmäßig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichenwerden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Übereinstimmungen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmäßig vorausgewählte Namen des Heimatverzeichnisses in ownCloud. Es dient weiterhin als Port für Remote-URLs - zum Beispiel für alle *DAV-Dienste Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich einzig und allein nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken.", +"Internal Username Attribute:" => "Interne Eigenschaften des Benutzers:", "Override UUID detection" => "UUID-Erkennung überschreiben", +"By default, ownCloud autodetects the UUID attribute. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Standardmäßig erkennt OwnCloud die UUID-Eigenschaften des Benutzers selbstständig. Die UUID-Eigenschaften werden genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird ein interner Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie können diese Eigenschaften überschreiben und selbst Eigenschaften nach Wahl vorgeben. Sie müssen allerdings sicherstellen, dass die Eigenschaften zur Identifikation für Benutzer und Gruppen eindeutig sind. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu zugeordnete (neu erstellte) LDAP-Benutzer und -Gruppen aus.", "UUID Attribute:" => "UUID-Attribut:", +"Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung", +"Clear Username-LDAP User Mapping" => "Lösche LDAP-Benutzernamenzuordnung", +"Clear Groupname-LDAP Group Mapping" => "Lösche LDAP-Gruppennamenzuordnung", "Test Configuration" => "Testkonfiguration", "Help" => "Hilfe" ); diff --git a/apps/user_ldap/l10n/hi.php b/apps/user_ldap/l10n/hi.php index 45166eb0e3e..8e8e4e8ff69 100644 --- a/apps/user_ldap/l10n/hi.php +++ b/apps/user_ldap/l10n/hi.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"Error" => "त्रुटि", "Password" => "पासवर्ड", "Help" => "सहयोग" ); diff --git a/apps/user_ldap/l10n/zh_TW.php b/apps/user_ldap/l10n/zh_TW.php index d01e75356c0..cde743f0033 100644 --- a/apps/user_ldap/l10n/zh_TW.php +++ b/apps/user_ldap/l10n/zh_TW.php @@ -1,11 +1,76 @@ <?php $TRANSLATIONS = array( +"Failed to clear the mappings." => "清除映射失敗", +"Failed to delete the server configuration" => "刪除伺服器設定時失敗", +"The configuration is valid and the connection could be established!" => "設定有效且連線可建立", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "設定有效但連線無法建立。請檢查伺服器的設定與認證資料。", +"The configuration is invalid. Please look in the ownCloud log for further details." => "設定無效。更多細節請參閱ownCloud的記錄檔。", "Deletion failed" => "移除失敗", +"Take over settings from recent server configuration?" => "要使用最近一次的伺服器設定嗎?", +"Keep settings?" => "維持設定嗎?", +"Cannot add server configuration" => "無法新增伺服器設定", +"mappings cleared" => "映射已清除", "Success" => "成功", "Error" => "錯誤", +"Connection test succeeded" => "連線測試成功", +"Connection test failed" => "連線測試失敗", +"Do you really want to delete the current Server Configuration?" => "您真的確定要刪除現在的伺服器設定嗎?", +"Confirm Deletion" => "確認已刪除", +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>警告:</b> 應用程式user_ldap和user_webdavauth互不相容。可能會造成無法預期的結果。請要求您的系統管理員將兩者其中之一停用。", +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>警告:</b>沒有安裝 PHP LDAP 模組,後端系統將無法運作。請要求您的系統管理員安裝模組。", +"Server configuration" => "伺服器設定", +"Add Server Configuration" => "新增伺服器設定", "Host" => "主機", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "若您不需要SSL加密傳輸則可忽略通訊協定。若非如此請從ldaps://開始", +"One Base DN per line" => "一行一個Base DN", +"You can specify Base DN for users and groups in the Advanced tab" => "您可以在進階標籤頁裡面指定使用者及群組的Base 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 placeholder,例如:\"uid=%%uid\"", +"User List Filter" => "使用者名單篩選器", +"Defines the filter to apply, when retrieving users." => "檢索使用者時定義要套用的篩選器", +"without any placeholder, e.g. \"objectClass=person\"." => "請勿使用任何placeholder,例如:\"objectClass=person\"。", +"Group Filter" => "群組篩選器", +"Defines the filter to apply, when retrieving groups." => "檢索群組時,定義要套用的篩選器", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "請勿使用任何placeholder,例如:\"objectClass=posixGroup\"。", +"Connection Settings" => "連線設定", +"Configuration Active" => "設定為主動模式", +"When unchecked, this configuration will be skipped." => "沒有被勾選時,此設定會被略過。", "Port" => "連接阜", +"Backup (Replica) Host" => "備用主機", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "請給定一個可選的備用主機。必須是LDAP/AD中央伺服器的複本。", +"Backup (Replica) Port" => "備用(複本)連接阜", +"Disable Main Server" => "停用主伺服器", +"When switched on, ownCloud will only connect to the replica server." => "當開關打開時,ownCloud將只會連接複本伺服器。", "Use TLS" => "使用TLS", +"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." => "若連線只有在此選項開啟時運作,請匯入LDAP伺服器的SSL認證到您的ownCloud伺服器。", +"Not recommended, use for testing only." => "不推薦使用,僅供測試用途。", +"Cache Time-To-Live" => "快取的存活時間", +"in seconds. A change empties the cache." => "以秒為單位。更變後會清空快取。", +"Directory Settings" => "目錄選項", +"User Display Name Field" => "使用者名稱欄位", +"The LDAP attribute to use to generate the user`s ownCloud name." => "用於產生ownCloud名稱", +"Base User Tree" => "Base使用者數", +"One User Base DN per line" => "一行一個使用者Base DN", +"User Search Attributes" => "使用者搜索屬性", +"Optional; one attribute per line" => "可選的; 一行一項屬性", +"Group Display Name Field" => "群組顯示名稱欄位", +"Base Group Tree" => "Base群組樹", +"One Group Base DN per line" => "一行一個群組Base DN", +"Group Search Attributes" => "群組搜索屬性", +"Group-Member association" => "群組成員的關係", +"Special Attributes" => "特殊屬性", +"Quota Field" => "配額欄位", +"Quota Default" => "預設配額", +"in bytes" => "以位元組為單位", +"Email Field" => "電郵欄位", +"User Home Folder Naming Rule" => "使用者家目錄的命名規則", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "使用者名稱請留白(預設)。若不留白請指定一個LDAP/AD屬性。", +"Internal Username" => "內部使用者名稱", +"Test Configuration" => "測試此設定", "Help" => "說明" ); diff --git a/apps/user_webdavauth/l10n/et_EE.php b/apps/user_webdavauth/l10n/et_EE.php index 470cb2b0f10..f95b5214130 100644 --- a/apps/user_webdavauth/l10n/et_EE.php +++ b/apps/user_webdavauth/l10n/et_EE.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( "WebDAV Authentication" => "WebDAV autentimine", +"URL: " => "URL: ", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud saadab kasutajatunnused sellel aadressil. See vidin kontrollib vastust ning tuvastab HTTP vastuskoodid 401 ja 403 kui vigased, ning kõik teised vastused kui korrektsed kasutajatunnused." ); diff --git a/core/css/styles.css b/core/css/styles.css index 40a17a42876..6c9d00114a0 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -416,7 +416,13 @@ a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;paddin #oc-dialog-filepicker-content .filepicker_element_selected { background-color:lightblue;} .ui-dialog {position:fixed !important;} span.ui-icon {float: left; margin: 3px 7px 30px 0;} + .loading { background: url('../img/loading.gif') no-repeat center; cursor: wait; } +.move2trash { /* decrease spinner size */ + width: 16px; + height: 16px; +} + /* ---- CATEGORIES ---- */ #categoryform .scrollarea { position:absolute; left:10px; top:10px; right:10px; bottom:50px; overflow:auto; border:1px solid #ddd; background:#f8f8f8; } @@ -655,13 +661,13 @@ div.crumb:active { /* icons */ .folder-icon { background-image: url('../img/places/folder.svg'); } .delete-icon { background-image: url('../img/actions/delete.svg'); } -.delete-icon:hover { background-image: url('../img/actions/delete-hover.svg'); } .edit-icon { background-image: url('../img/actions/rename.svg'); } /* buttons */ button.loading { background-image: url('../img/loading.gif'); background-position: right 10px center; background-repeat: no-repeat; + background-size: 16px; padding-right: 30px; } diff --git a/core/img/actions/add.png b/core/img/actions/add.png Binary files differindex 25d472b2dc4..1aac02b8454 100644 --- a/core/img/actions/add.png +++ b/core/img/actions/add.png diff --git a/core/img/actions/add.svg b/core/img/actions/add.svg index 136d6c4b311..250746e1660 100644 --- a/core/img/actions/add.svg +++ b/core/img/actions/add.svg @@ -1,10 +1,6 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="22" width="22" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <defs> - <linearGradient id="a" y2="45.69" gradientUnits="userSpaceOnUse" x2="24.139" gradientTransform="matrix(.53994 0 0 .53668 -1.7557 -1.7859)" y1="6.5317" x1="24.139"> - <stop stop-color="#fff" offset="0"/> - <stop stop-color="#fff" stop-opacity="0" offset="1"/> - </linearGradient> - </defs> - <path opacity=".4" d="m8.5932 8.2152v-5.9948h5v5.9948h6v5.0052h-6v6h-5v-6h-6v-5.0052h6z" fill-rule="evenodd" stroke="url(#a)"/> +<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <g transform="matrix(-.70711 -.70711 .70711 -.70711 -724.85 752.16)"> + <path d="m1.6361 1040.9 2.8284-2.8284 3.5355 3.5355 3.5355-3.5355 2.8284 2.8284-3.5355 3.5355 3.5356 3.5356-2.8284 2.8284-3.5356-3.5356-3.5357 3.5354-2.8281-2.8281 3.5354-3.5357z"/> + </g> </svg> diff --git a/core/img/actions/delete-hover.png b/core/img/actions/delete-hover.png Binary files differdeleted file mode 100644 index 048d91cee51..00000000000 --- a/core/img/actions/delete-hover.png +++ /dev/null diff --git a/core/img/actions/delete-hover.svg b/core/img/actions/delete-hover.svg deleted file mode 100644 index 3e8d26c9786..00000000000 --- a/core/img/actions/delete-hover.svg +++ /dev/null @@ -1,6 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <g transform="translate(0 -1036.4)"> - <path d="m3 1040.4 1-1 4 3 4-3 1 1-3 4 3 4-1 1-4-3-4 3-1-1 3-4z" fill="#d40000"/> - </g> -</svg> diff --git a/core/img/actions/delete.png b/core/img/actions/delete.png Binary files differindex fa8e18183ed..99f549faf9b 100644 --- a/core/img/actions/delete.png +++ b/core/img/actions/delete.png diff --git a/core/img/actions/delete.svg b/core/img/actions/delete.svg index ef564bfd482..568185c5c70 100644 --- a/core/img/actions/delete.svg +++ b/core/img/actions/delete.svg @@ -1,6 +1,12 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <g transform="translate(0 -1036.4)"> - <path d="m3 1040.4 1-1 4 3 4-3 1 1-3 4 3 4-1 1-4-3-4 3-1-1 3-4z"/> - </g> + <metadata> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + <dc:title/> + </cc:Work> + </rdf:RDF> + </metadata> + <path fill="#d40000" d="M8,1c-3.866,0-7,3.134-7,7s3.134,7,7,7,7-3.134,7-7-3.134-7-7-7zm-2.8438,2.75l2.8438,2.8438,2.844-2.8438,1.406,1.4062-2.8438,2.8438,2.8438,2.844-1.406,1.406-2.844-2.8438-2.8438,2.8438-1.4062-1.406,2.8438-2.844-2.8438-2.8438,1.4062-1.4062z"/> </svg> diff --git a/core/img/actions/lock.png b/core/img/actions/lock.png Binary files differindex dbcffa3990f..f3121811ea6 100644 --- a/core/img/actions/lock.png +++ b/core/img/actions/lock.png diff --git a/core/img/actions/mail.png b/core/img/actions/mail.png Binary files differindex 8e884fbc0ea..be6142444ae 100644 --- a/core/img/actions/mail.png +++ b/core/img/actions/mail.png diff --git a/core/img/actions/mail.svg b/core/img/actions/mail.svg index 2c63daac034..c01f2c113e7 100644 --- a/core/img/actions/mail.svg +++ b/core/img/actions/mail.svg @@ -1,8 +1,4 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> - <g> - <rect stroke-linejoin="round" height="10.244" width="15.244" stroke="#000" stroke-linecap="square" y="2.6281" x=".37806" stroke-width=".75613"/> - <path d="m-0.6 11 8.6-5l8.6 5" stroke="#fff" stroke-width="1px" fill="none"/> - <path d="m0 2.5 8 6.5 8-6.5" stroke="#fff" stroke-linecap="round" stroke-width="1px"/> - </g> +<svg xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <path d="m0.88889 3c-0.49245 0-0.88889 0.3968-0.88889 0.8892v8.2228c0 0.492 0.39644 0.888 0.88889 0.888h14.222c0.493 0 0.889-0.396 0.889-0.888v-8.2228c0-0.4924-0.396-0.8892-0.889-0.8892zm0.75 1.0281 6.0833 6.0833h0.52778l6.1111-6.0833 0.61111 0.61111-3.6389 3.6944 2.75 2.8056-0.61111 0.61111-2.8056-2.8056-2.0278 2.0556h-1.2778l-2.0271-2.0552-2.8055 2.8332-0.6111-0.639 2.7777-2.8054-3.6666-3.6944z"/> </svg> diff --git a/core/img/actions/undelete.png b/core/img/actions/undelete.png Binary files differdeleted file mode 100644 index d712527ef61..00000000000 --- a/core/img/actions/undelete.png +++ /dev/null diff --git a/core/img/loader.gif b/core/img/loader.gif Binary files differdeleted file mode 100644 index e192ca895cd..00000000000 --- a/core/img/loader.gif +++ /dev/null diff --git a/core/img/loading-dark.gif b/core/img/loading-dark.gif Binary files differindex 5fe86acabc4..13f0f64eab1 100644 --- a/core/img/loading-dark.gif +++ b/core/img/loading-dark.gif diff --git a/core/img/loading.gif b/core/img/loading.gif Binary files differindex 5b33f7e54f4..f8f3dff6fb9 100644 --- a/core/img/loading.gif +++ b/core/img/loading.gif diff --git a/core/img/remoteStorage-big.png b/core/img/remoteStorage-big.png Binary files differdeleted file mode 100644 index 7e76e21209e..00000000000 --- a/core/img/remoteStorage-big.png +++ /dev/null diff --git a/core/img/weather-clear.png b/core/img/weather-clear.png Binary files differdeleted file mode 100644 index 0acf7a9b2af..00000000000 --- a/core/img/weather-clear.png +++ /dev/null diff --git a/core/js/share.js b/core/js/share.js index 588202d2273..21e352ee1c6 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -163,10 +163,10 @@ OC.Share={ var allowPublicUploadStatus = false; $.each(data.shares, function(key, value) { - if (allowPublicUploadStatus) { - return true; - } - allowPublicUploadStatus = (value.permissions & OC.PERMISSION_CREATE) ? true : false; + if (allowPublicUploadStatus) { + return true; + } + allowPublicUploadStatus = (value.permissions & OC.PERMISSION_CREATE) ? true : false; }); html += '<input id="shareWith" type="text" placeholder="'+t('core', 'Share with')+'" />'; @@ -181,11 +181,13 @@ OC.Share={ html += '<div id="linkPass">'; html += '<input id="linkPassText" type="password" placeholder="'+t('core', 'Password')+'" />'; html += '</div>'; - html += '<div id="allowPublicUploadWrapper" style="display:none;">'; - html += '<input type="checkbox" value="1" name="allowPublicUpload" id="sharingDialogAllowPublicUpload"' + ((allowPublicUploadStatus) ? 'checked="checked"' : '') + ' />'; - html += '<label for="sharingDialogAllowPublicUpload">' + t('core', 'Allow Public Upload') + '</label>'; - html += '</div></div>'; - html += '<form id="emailPrivateLink" >'; + if (itemType === 'folder' && (possiblePermissions & OC.PERMISSION_CREATE)) { + html += '<div id="allowPublicUploadWrapper" style="display:none;">'; + html += '<input type="checkbox" value="1" name="allowPublicUpload" id="sharingDialogAllowPublicUpload"' + ((allowPublicUploadStatus) ? 'checked="checked"' : '') + ' />'; + html += '<label for="sharingDialogAllowPublicUpload">' + t('core', 'Allow Public Upload') + '</label>'; + html += '</div>'; + } + html += '</div><form id="emailPrivateLink" >'; html += '<input id="email" style="display:none; width:62%;" value="" placeholder="'+t('core', 'Email link to person')+'" type="text" />'; html += '<input id="emailButton" style="display:none;" type="submit" value="'+t('core', 'Send')+'" />'; html += '</form>'; diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index 4878c75edde..dc78e44c8d7 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -15,7 +15,6 @@ "Admin" => "Admin", "Help" => "Hulp", "Cloud not found" => "Wolk nie gevind", -"web services under your control" => "webdienste onder jou beheer", "Create an <strong>admin account</strong>" => "Skep `n <strong>admin-rekening</strong>", "Advanced" => "Gevorderd", "Configure the database" => "Stel databasis op", diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 7ac7a564c35..b18ee712cfa 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -98,7 +98,6 @@ "Help" => "المساعدة", "Access forbidden" => "التوصّل محظور", "Cloud not found" => "لم يتم إيجاد", -"web services under your control" => "خدمات الشبكة تحت سيطرتك", "Edit categories" => "عدل الفئات", "Add" => "اضف", "Security Warning" => "تحذير أمان", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 490bea9b170..608f26bc861 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -50,7 +50,6 @@ "Help" => "Помощ", "Access forbidden" => "Достъпът е забранен", "Cloud not found" => "облакът не намерен", -"web services under your control" => "уеб услуги под Ваш контрол", "Edit categories" => "Редактиране на категориите", "Add" => "Добавяне", "Create an <strong>admin account</strong>" => "Създаване на <strong>админ профил</strong>", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index c775d2fb6af..5c171af567c 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -95,7 +95,6 @@ "Help" => "সহায়িকা", "Access forbidden" => "অধিগমনের অনুমতি নেই", "Cloud not found" => "ক্লাউড খুঁজে পাওয়া গেল না", -"web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়", "Edit categories" => "ক্যাটেগরি সম্পাদনা", "Add" => "যোগ কর", "Security Warning" => "নিরাপত্তাজনিত সতর্কতা", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 9b3b45fdf9d..80f0e558a67 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -106,7 +106,6 @@ "Access forbidden" => "Accés prohibit", "Cloud not found" => "No s'ha trobat el núvol", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ei,\n\nnomés fer-te saber que %s ha compartit %s amb tu.\nMira-ho: %s\n\nSalut!", -"web services under your control" => "controleu els vostres serveis web", "Edit categories" => "Edita les categories", "Add" => "Afegeix", "Security Warning" => "Avís de seguretat", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 113d0f41ba8..b0e70938d4a 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -106,7 +106,6 @@ "Access forbidden" => "Přístup zakázán", "Cloud not found" => "Cloud nebyl nalezen", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ahoj,\n\njenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky", -"web services under your control" => "služby webu pod Vaší kontrolou", "Edit categories" => "Upravit kategorie", "Add" => "Přidat", "Security Warning" => "Bezpečnostní upozornění", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index 6158a356dc7..aeb2995e6bd 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -100,7 +100,6 @@ "Help" => "Cymorth", "Access forbidden" => "Mynediad wedi'i wahardd", "Cloud not found" => "Methwyd canfod cwmwl", -"web services under your control" => "gwasanaethau gwe a reolir gennych", "Edit categories" => "Golygu categorïau", "Add" => "Ychwanegu", "Security Warning" => "Rhybudd Diogelwch", diff --git a/core/l10n/da.php b/core/l10n/da.php index b3da17ba798..2e84c3ff511 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -101,7 +101,6 @@ "Help" => "Hjælp", "Access forbidden" => "Adgang forbudt", "Cloud not found" => "Sky ikke fundet", -"web services under your control" => "Webtjenester under din kontrol", "Edit categories" => "Rediger kategorier", "Add" => "Tilføj", "Security Warning" => "Sikkerhedsadvarsel", diff --git a/core/l10n/de.php b/core/l10n/de.php index 897b379a28b..c33045eb7b6 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -105,7 +105,6 @@ "Access forbidden" => "Zugriff verboten", "Cloud not found" => "Cloud nicht gefunden", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo,\n\nwollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.\nSchau es dir an: %s\n\nGruß!", -"web services under your control" => "Web-Services unter Deiner Kontrolle", "Edit categories" => "Kategorien bearbeiten", "Add" => "Hinzufügen", "Security Warning" => "Sicherheitswarnung", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index eca14f7d9a9..9d5a7298e19 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -106,7 +106,6 @@ "Access forbidden" => "Zugriff verboten", "Cloud not found" => "Cloud wurde nicht gefunden", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüße!", -"web services under your control" => "Web-Services unter Ihrer Kontrolle", "Edit categories" => "Kategorien ändern", "Add" => "Hinzufügen", "Security Warning" => "Sicherheitshinweis", diff --git a/core/l10n/el.php b/core/l10n/el.php index 022d9d90039..2dcfa1bb698 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -104,7 +104,6 @@ "Access forbidden" => "Δεν επιτρέπεται η πρόσβαση", "Cloud not found" => "Δεν βρέθηκε νέφος", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Γεια σας,\n\nσας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το %s.\nΔείτε το: %s\n\nΓεια χαρά!", -"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", "Edit categories" => "Επεξεργασία κατηγοριών", "Add" => "Προσθήκη", "Security Warning" => "Προειδοποίηση Ασφαλείας", diff --git a/core/l10n/en@pirate.php b/core/l10n/en@pirate.php index 0c590d0b758..482632f3fda 100644 --- a/core/l10n/en@pirate.php +++ b/core/l10n/en@pirate.php @@ -1,4 +1,3 @@ <?php $TRANSLATIONS = array( -"Password" => "Passcode", -"web services under your control" => "web services under your control" +"Password" => "Passcode" ); diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 2adf09d3a01..00f925e5274 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -102,7 +102,6 @@ "Access forbidden" => "Aliro estas malpermesata", "Cloud not found" => "La nubo ne estas trovita", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Saluton:\n\nNi nur sciigas vin, ke %s kunhavigis %s kun vi.\nVidu ĝin: %s\n\nĜis!", -"web services under your control" => "TTT-servoj regataj de vi", "Edit categories" => "Redakti kategoriojn", "Add" => "Aldoni", "Security Warning" => "Sekureca averto", diff --git a/core/l10n/es.php b/core/l10n/es.php index 3845f68d24f..ae98a019db1 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -106,7 +106,6 @@ "Access forbidden" => "Acceso prohibido", "Cloud not found" => "No se encuentra la nube", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Oye,⏎ sólo te hago saber que %s compartido %s contigo.⏎ Míralo: %s ⏎Disfrutalo!", -"web services under your control" => "Servicios web bajo su control", "Edit categories" => "Editar categorías", "Add" => "Agregar", "Security Warning" => "Advertencia de seguridad", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 8bef5151163..1fac1c88dad 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -105,7 +105,6 @@ "Access forbidden" => "Acceso prohibido", "Cloud not found" => "No se encontró ownCloud", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!", -"web services under your control" => "servicios web que controlás", "Edit categories" => "Editar categorías", "Add" => "Agregar", "Security Warning" => "Advertencia de seguridad", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 4c0a41c5087..ec850491b79 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"%s shared »%s« with you" => "%s jagas sinuga »%s«", "Category type not provided." => "Kategooria tüüp puudub.", "No category to add?" => "Pole kategooriat, mida lisada?", "This category already exists: %s" => "See kategooria on juba olemas: %s", @@ -61,6 +62,7 @@ "Share with link" => "Jaga lingiga", "Password protect" => "Parooliga kaitstud", "Password" => "Parool", +"Allow Public Upload" => "Luba avalik üleslaadimine", "Email link to person" => "Saada link isikule e-postiga", "Send" => "Saada", "Set expiration date" => "Määra aegumise kuupäev", @@ -89,6 +91,8 @@ "Request failed!<br>Did you make sure your email/username was right?" => "Päring ebaõnnestus!<br>Oled sa veendunud, et e-post/kasutajanimi on õiged?", "You will receive a link to reset your password via Email." => "Sinu parooli taastamise link saadetakse sulle e-postile.", "Username" => "Kasutajanimi", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Sinu failid on krüpteeritud. Kui sa pole taastamise võtit veel määranud, siis pole präast parooli taastamist mingit võimalust sinu andmeid tagasi saada. Kui sa pole kindel, mida teha, siis palun väta enne jätkamist ühendust oma administaatoriga. Oled sa kindel, et sa soovid jätkata?", +"Yes, I really want to reset my password now" => "Jah, ma tõesti soovin oma parooli praegu nullida", "Request reset" => "Päringu taastamine", "Your password was reset" => "Sinu parool on taastatud", "To login page" => "Sisselogimise lehele", @@ -101,7 +105,7 @@ "Help" => "Abiinfo", "Access forbidden" => "Ligipääs on keelatud", "Cloud not found" => "Pilve ei leitud", -"web services under your control" => "veebitenused sinu kontrolli all", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sinuga %s.\nVaata seda siin: %s\n\nTervitused!", "Edit categories" => "Muuda kategooriaid", "Add" => "Lisa", "Security Warning" => "Turvahoiatus", @@ -131,6 +135,7 @@ "remember" => "pea meeles", "Log in" => "Logi sisse", "Alternative Logins" => "Alternatiivsed sisselogimisviisid", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hei,<br><br>lihtsalt annan sulle teada, et %s jagas sinuga »%s«.<br><a href=\"%s\">Vaata seda!</a><br><br>Tervitades!", "prev" => "eelm", "next" => "järgm", "Updating ownCloud to version %s, this may take a while." => "ownCloudi uuendamine versioonile %s. See võib veidi aega võtta." diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 117c0105756..4242d975f3b 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -98,7 +98,6 @@ "Help" => "Laguntza", "Access forbidden" => "Sarrera debekatuta", "Cloud not found" => "Ez da hodeia aurkitu", -"web services under your control" => "web zerbitzuak zure kontrolpean", "Edit categories" => "Editatu kategoriak", "Add" => "Gehitu", "Security Warning" => "Segurtasun abisua", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 338b3ad4b21..02fe2ce1148 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"%s shared »%s« with you" => "%s به اشتراک گذاشته شده است »%s« توسط شما", "Category type not provided." => "نوع دسته بندی ارائه نشده است.", "No category to add?" => "آیا گروه دیگری برای افزودن ندارید", "This category already exists: %s" => "این دسته هم اکنون وجود دارد: %s", @@ -42,6 +43,7 @@ "years ago" => "سالهای قبل", "Choose" => "انتخاب کردن", "Cancel" => "منصرف شدن", +"Error loading file picker template" => "خطا در بارگذاری قالب انتخاب کننده فایل", "Yes" => "بله", "No" => "نه", "Ok" => "قبول", @@ -60,6 +62,7 @@ "Share with link" => "به اشتراک گذاشتن با پیوند", "Password protect" => "نگهداری کردن رمز عبور", "Password" => "گذرواژه", +"Allow Public Upload" => "اجازه آپلود عمومی", "Email link to person" => "پیوند ایمیل برای شخص.", "Send" => "ارسال", "Set expiration date" => "تنظیم تاریخ انقضا", @@ -84,8 +87,12 @@ "The update was successful. Redirecting you to ownCloud now." => "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud.", "ownCloud password reset" => "پسورد ابرهای شما تغییرکرد", "Use the following link to reset your password: {link}" => "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}", +"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "لینک تنظیم مجدد رمز عبور به ایمیل شما ارسال شده است.<br>اگر آن رادر یک زمان مشخصی دریافت نکرده اید، لطفا هرزنامه/ پوشه های ناخواسته را بررسی کنید.<br>در صورت نبودن از مدیر خود بپرسید.", +"Request failed!<br>Did you make sure your email/username was right?" => "درخواست رد شده است !<br> آیا مطمئن هستید که ایمیل/ نام کاربری شما صحیح میباشد ؟", "You will receive a link to reset your password via Email." => "شما یک نامه الکترونیکی حاوی یک لینک جهت بازسازی گذرواژه دریافت خواهید کرد.", "Username" => "نام کاربری", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "فایل های شما رمزگذاری شده اند. اگر شما کلید بازیابی را فعال نکرده اید، پس از راه اندازی مجدد رمزعبور هیچ راهی برای بازگشت اطلاعاتتان وجود نخواهد داشت.در صورت عدم اطمینان به انجام کار، لطفا ابتدا با مدیر خود تماس بگیرید. آیا واقعا میخواهید ادامه دهید ؟", +"Yes, I really want to reset my password now" => "بله، من اکنون میخواهم رمز عبور خود را مجددا راه اندازی کنم.", "Request reset" => "درخواست دوباره سازی", "Your password was reset" => "گذرواژه شما تغییرکرد", "To login page" => "به صفحه ورود", @@ -98,7 +105,7 @@ "Help" => "راهنما", "Access forbidden" => "اجازه دسترسی به مناطق ممنوعه را ندارید", "Cloud not found" => "پیدا نشد", -"web services under your control" => "سرویس های تحت وب در کنترل شما", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "اینجا,⏎\n فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده %s توسط شما.⏎\nمشاهده آن : %s⏎\n⏎\nبه سلامتی!", "Edit categories" => "ویرایش گروه", "Add" => "افزودن", "Security Warning" => "اخطار امنیتی", @@ -119,6 +126,7 @@ "Database tablespace" => "جدول پایگاه داده", "Database host" => "هاست پایگاه داده", "Finish setup" => "اتمام نصب", +"%s is available. Get more information on how to update." => "%s در دسترس است. برای چگونگی به روز رسانی اطلاعات بیشتر را دریافت نمایید.", "Log out" => "خروج", "Automatic logon rejected!" => "ورود به سیستم اتوماتیک ردشد!", "If you did not change your password recently, your account may be compromised!" => "اگر شما اخیرا رمزعبور را تغییر نداده اید، حساب شما در معرض خطر می باشد !", @@ -127,6 +135,7 @@ "remember" => "بیاد آوری", "Log in" => "ورود", "Alternative Logins" => "ورود متناوب", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "اینجا<br><br> فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده»%s« توسط شما.<br><a href=\"%s\"> مشاهده آن!</a><br><br> به سلامتی!", "prev" => "بازگشت", "next" => "بعدی", "Updating ownCloud to version %s, this may take a while." => "به روز رسانی OwnCloud به نسخه ی %s، این عملیات ممکن است زمان بر باشد." diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 3e471ad1942..23b697a25c3 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -98,7 +98,6 @@ "Access forbidden" => "Pääsy estetty", "Cloud not found" => "Pilveä ei löydy", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hei!\n\n%s jakoi kohteen %s kanssasi.\nKatso se tästä: %s\n\nNäkemiin!", -"web services under your control" => "verkkopalvelut hallinnassasi", "Edit categories" => "Muokkaa luokkia", "Add" => "Lisää", "Security Warning" => "Turvallisuusvaroitus", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 079cde5c30c..bc8a0d28153 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -106,7 +106,6 @@ "Access forbidden" => "Accès interdit", "Cloud not found" => "Introuvable", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Salut,\n\nje veux juste vous signaler %s partagé %s avec vous.\nVoyez-le: %s\n\nBonne continuation!", -"web services under your control" => "services web sous votre contrôle", "Edit categories" => "Editer les catégories", "Add" => "Ajouter", "Security Warning" => "Avertissement de sécurité", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index db53a3e8a4b..b55daf27c21 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -62,6 +62,7 @@ "Share with link" => "Compartir coa ligazón", "Password protect" => "Protexido con contrasinais", "Password" => "Contrasinal", +"Allow Public Upload" => "Permitir o envío público", "Email link to person" => "Enviar ligazón por correo", "Send" => "Enviar", "Set expiration date" => "Definir a data de caducidade", @@ -105,7 +106,6 @@ "Access forbidden" => "Acceso denegado", "Cloud not found" => "Nube non atopada", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\nSaúdos!", -"web services under your control" => "servizos web baixo o seu control", "Edit categories" => "Editar as categorías", "Add" => "Engadir", "Security Warning" => "Aviso de seguranza", diff --git a/core/l10n/he.php b/core/l10n/he.php index 1095507673b..ab002ab64e8 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -101,7 +101,6 @@ "Help" => "עזרה", "Access forbidden" => "הגישה נחסמה", "Cloud not found" => "ענן לא נמצא", -"web services under your control" => "שירותי רשת תחת השליטה שלך", "Edit categories" => "ערוך קטגוריות", "Add" => "הוספה", "Security Warning" => "אזהרת אבטחה", diff --git a/core/l10n/hi.php b/core/l10n/hi.php index afdd91d5f83..4285f8ce577 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -12,6 +12,7 @@ "November" => "नवंबर", "December" => "दिसम्बर", "Settings" => "सेटिंग्स", +"Error" => "त्रुटि", "Share" => "साझा करें", "Share with" => "के साथ साझा", "Password" => "पासवर्ड", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 80a34094b27..3eb556e9f63 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -73,7 +73,6 @@ "Help" => "Pomoć", "Access forbidden" => "Pristup zabranjen", "Cloud not found" => "Cloud nije pronađen", -"web services under your control" => "web usluge pod vašom kontrolom", "Edit categories" => "Uredi kategorije", "Add" => "Dodaj", "Create an <strong>admin account</strong>" => "Stvori <strong>administratorski račun</strong>", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index a0b6979c4ba..25abd078901 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -104,7 +104,6 @@ "Access forbidden" => "A hozzáférés nem engedélyezett", "Cloud not found" => "A felhő nem található", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Üdv!\n\nÚj hír: %s megosztotta Önnel ezt: %s.\nItt nézhető meg: %s\n\nMinden jót!", -"web services under your control" => "webszolgáltatások saját kézben", "Edit categories" => "Kategóriák szerkesztése", "Add" => "Hozzáadás", "Security Warning" => "Biztonsági figyelmeztetés", diff --git a/core/l10n/ia.php b/core/l10n/ia.php index 9df7eda1dad..8c9b6b88ef3 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -38,7 +38,6 @@ "Help" => "Adjuta", "Access forbidden" => "Accesso prohibite", "Cloud not found" => "Nube non trovate", -"web services under your control" => "servicios web sub tu controlo", "Edit categories" => "Modificar categorias", "Add" => "Adder", "Create an <strong>admin account</strong>" => "Crear un <strong>conto de administration</strong>", diff --git a/core/l10n/id.php b/core/l10n/id.php index 5fe8b542223..2ee9c37ec2d 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -98,7 +98,6 @@ "Help" => "Bantuan", "Access forbidden" => "Akses ditolak", "Cloud not found" => "Cloud tidak ditemukan", -"web services under your control" => "layanan web dalam kontrol Anda", "Edit categories" => "Edit kategori", "Add" => "Tambah", "Security Warning" => "Peringatan Keamanan", diff --git a/core/l10n/is.php b/core/l10n/is.php index b8573b3624a..3d3ce41b27a 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -96,7 +96,6 @@ "Help" => "Hjálp", "Access forbidden" => "Aðgangur bannaður", "Cloud not found" => "Ský finnst ekki", -"web services under your control" => "vefþjónusta undir þinni stjórn", "Edit categories" => "Breyta flokkum", "Add" => "Bæta við", "Security Warning" => "Öryggis aðvörun", diff --git a/core/l10n/it.php b/core/l10n/it.php index b053a2a21bb..c1c27cdf54c 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -106,7 +106,6 @@ "Access forbidden" => "Accesso negato", "Cloud not found" => "Nuvola non trovata", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ehilà,\n\nvolevo solamente farti sapere che %s ha condiviso %s con te.\nGuarda: %s\n\nSaluti!", -"web services under your control" => "servizi web nelle tue mani", "Edit categories" => "Modifica categorie", "Add" => "Aggiungi", "Security Warning" => "Avviso di sicurezza", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index ccd5e46425c..5f9ca65b627 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -106,7 +106,6 @@ "Access forbidden" => "アクセスが禁止されています", "Cloud not found" => "見つかりません", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n\nそれでは。", -"web services under your control" => "管理下のウェブサービス", "Edit categories" => "カテゴリを編集", "Add" => "追加", "Security Warning" => "セキュリティ警告", diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index 6674106f1d7..877d66a0db3 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -98,7 +98,6 @@ "Help" => "დახმარება", "Access forbidden" => "წვდომა აკრძალულია", "Cloud not found" => "ღრუბელი არ არსებობს", -"web services under your control" => "web services under your control", "Edit categories" => "კატეგორიების რედაქტირება", "Add" => "დამატება", "Security Warning" => "უსაფრთხოების გაფრთხილება", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index d95daaa3a73..2ce4f0fd377 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -98,7 +98,6 @@ "Help" => "도움말", "Access forbidden" => "접근 금지됨", "Cloud not found" => "클라우드를 찾을 수 없습니다", -"web services under your control" => "내가 관리하는 웹 서비스", "Edit categories" => "분류 수정", "Add" => "추가", "Security Warning" => "보안 경고", diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php index ab46b13a500..1902e450613 100644 --- a/core/l10n/ku_IQ.php +++ b/core/l10n/ku_IQ.php @@ -10,7 +10,6 @@ "Admin" => "بهڕێوهبهری سهرهكی", "Help" => "یارمەتی", "Cloud not found" => "هیچ نهدۆزرایهوه", -"web services under your control" => "ڕاژهی وێب لهژێر چاودێریت دایه", "Add" => "زیادکردن", "Advanced" => "ههڵبژاردنی پیشكهوتوو", "Data folder" => "زانیاری فۆڵدهر", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index dbe7a34de34..96a3222093f 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -1,13 +1,20 @@ <?php $TRANSLATIONS = array( +"%s shared »%s« with you" => "Den/D' %s huet »%s« mat dir gedeelt", +"Category type not provided." => "Typ vun der Kategorie net uginn.", "No category to add?" => "Keng Kategorie fir bäizesetzen?", +"This category already exists: %s" => "Dës Kategorie existéiert schon: %s", +"Object type not provided." => "Typ vum Objet net uginn.", +"%s ID not provided." => "%s ID net uginn.", +"Error adding %s to favorites." => "Feeler beim dobäisetze vun %s bei d'Favoritten.", "No categories selected for deletion." => "Keng Kategorien ausgewielt fir ze läschen.", -"Sunday" => "Sonndes", -"Monday" => "Méindes", -"Tuesday" => "Dënschdes", +"Error removing %s from favorites." => "Feeler beim läsche vun %s aus de Favoritten.", +"Sunday" => "Sonndeg", +"Monday" => "Méindeg", +"Tuesday" => "Dënschdeg", "Wednesday" => "Mëttwoch", -"Thursday" => "Donneschdes", -"Friday" => "Freides", -"Saturday" => "Samschdes", +"Thursday" => "Donneschdeg", +"Friday" => "Freideg", +"Saturday" => "Samschdeg", "January" => "Januar", "February" => "Februar", "March" => "Mäerz", @@ -21,60 +28,115 @@ "November" => "November", "December" => "Dezember", "Settings" => "Astellungen", -"1 hour ago" => "vrun 1 Stonn", -"{hours} hours ago" => "vru {hours} Stonnen", -"last month" => "Läschte Mount", -"{months} months ago" => "vru {months} Méint", -"months ago" => "Méint hier", -"last year" => "Läscht Joer", -"years ago" => "Joren hier", +"seconds ago" => "Sekonnen hir", +"1 minute ago" => "1 Minutt hir", +"{minutes} minutes ago" => "virun {minutes} Minutten", +"1 hour ago" => "virun 1 Stonn", +"{hours} hours ago" => "virun {hours} Stonnen", +"today" => "haut", +"yesterday" => "gëschter", +"{days} days ago" => "virun {days} Deeg", +"last month" => "leschte Mount", +"{months} months ago" => "virun {months} Méint", +"months ago" => "Méint hir", +"last year" => "Lescht Joer", +"years ago" => "Joren hir", "Choose" => "Auswielen", "Cancel" => "Ofbriechen", +"Error loading file picker template" => "Feeler beim Luede vun der Virlag fir d'Fichiers-Selektioun", "Yes" => "Jo", "No" => "Nee", "Ok" => "OK", -"Error" => "Fehler", +"The object type is not specified." => "Den Typ vum Object ass net uginn.", +"Error" => "Feeler", +"The app name is not specified." => "Den Numm vun der App ass net uginn.", +"The required file {file} is not installed!" => "De benéidegte Fichier {file} ass net installéiert!", +"Shared" => "Gedeelt", "Share" => "Deelen", +"Error while sharing" => "Feeler beim Deelen", +"Error while unsharing" => "Feeler beim Annuléiere vum Deelen", +"Error while changing permissions" => "Feeler beim Ännere vun de Rechter", +"Shared with you and the group {group} by {owner}" => "Gedeelt mat dir an der Grupp {group} vum {owner}", +"Shared with you by {owner}" => "Gedeelt mat dir vum {owner}", +"Share with" => "Deele mat", +"Share with link" => "Mat Link deelen", +"Password protect" => "Passwuertgeschützt", "Password" => "Passwuert", +"Allow Public Upload" => "Ëffentlechen Upload erlaaben", +"Email link to person" => "Link enger Persoun mailen", +"Send" => "Schécken", +"Set expiration date" => "Verfallsdatum setzen", +"Expiration date" => "Verfallsdatum", +"Share via email:" => "Via E-Mail deelen:", +"No people found" => "Keng Persoune fonnt", +"Resharing is not allowed" => "Weiderdeelen ass net erlaabt", +"Shared in {item} with {user}" => "Gedeelt an {item} mat {user}", "Unshare" => "Net méi deelen", +"can edit" => "kann änneren", +"access control" => "Zougrëffskontroll", "create" => "erstellen", +"update" => "aktualiséieren", "delete" => "läschen", "share" => "deelen", -"ownCloud password reset" => "ownCloud Passwuert reset", -"Use the following link to reset your password: {link}" => "Benotz folgende Link fir däi Passwuert ze reseten: {link}", -"You will receive a link to reset your password via Email." => "Du kriss en Link fir däin Passwuert nei ze setzen via Email geschéckt.", +"Password protected" => "Passwuertgeschützt", +"Error unsetting expiration date" => "Feeler beim Läsche vum Verfallsdatum", +"Error setting expiration date" => "Feeler beim Setze vum Verfallsdatum", +"Sending ..." => "Gëtt geschéckt...", +"Email sent" => "Email geschéckt", +"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Den Update war net erfollegräich. Mell dëse Problem w.e.gl der<a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud-Community</a>.", +"The update was successful. Redirecting you to ownCloud now." => "Den Update war erfollegräich. Du gëss elo bei d'ownCloud ëmgeleet.", +"ownCloud password reset" => "Passwuert-Zrécksetzung vun der ownCloud", +"Use the following link to reset your password: {link}" => "Benotz folgende Link fir däi Passwuert zréckzesetzen: {link}", +"The link to reset your password has been sent to your email.<br>If you do not receive it within a reasonable amount of time, check your spam/junk folders.<br>If it is not there ask your local administrator ." => "De Link fir d'Passwuert zréckzesetzen gouf un deng E-Mail-Adress geschéckt.<br>Falls du d'Mail net an den nächste Minutte kriss, kuck w.e.gl. an dengem Spam-Dossier.<br>Wann do och keng Mail ass, fro w.e.gl. däin Adminstrateur.", +"Request failed!<br>Did you make sure your email/username was right?" => "Ufro feelfeschloen!<br>Hues du séchergestallt dass deng Email respektiv däi Benotzernumm korrekt sinn?", +"You will receive a link to reset your password via Email." => "Du kriss e Link fir däi Passwuert zréckzesetze via Email geschéckt.", "Username" => "Benotzernumm", -"Request reset" => "Reset ufroen", -"Your password was reset" => "Dän Passwuert ass zeréck gesat gin", -"To login page" => "Op d'Login Säit", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Deng Fichiere si verschlësselt. Falls du de Recuperatiouns-Schlëssel net aktivéiert hues, gëtt et keng Méiglechkeet nees un deng Daten ze komme wann däi Passwuert muss zréckgesat ginn. Falls du net sécher bass wat s de maache soll, kontaktéier w.e.gl däin Administrateur bevir s de weidermëss. Wëlls de wierklech weidermaachen?", +"Yes, I really want to reset my password now" => "Jo, ech wëll mäi Passwuert elo zrécksetzen", +"Request reset" => "Zrécksetzung ufroen", +"Your password was reset" => "Däi Passwuert ass zréck gesat ginn", +"To login page" => "Bei d'Login-Säit", "New password" => "Neit Passwuert", -"Reset password" => "Passwuert zeréck setzen", +"Reset password" => "Passwuert zréck setzen", "Personal" => "Perséinlech", "Users" => "Benotzer", -"Apps" => "Applicatiounen", +"Apps" => "Applikatiounen", "Admin" => "Admin", "Help" => "Hëllef", -"Access forbidden" => "Access net erlaabt", +"Access forbidden" => "Zougrëff net erlaabt", "Cloud not found" => "Cloud net fonnt", -"web services under your control" => "Web Servicer ënnert denger Kontroll", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo,\n\nech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.\nKucken: %s\n\nE schéine Bonjour!", "Edit categories" => "Kategorien editéieren", "Add" => "Dobäisetzen", -"Security Warning" => "Sécherheets Warnung", -"Create an <strong>admin account</strong>" => "En <strong>Admin Account</strong> uleeën", +"Security Warning" => "Sécherheets-Warnung", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Deng PHP-Versioun ass verwonnbar duerch d'NULL-Byte-Attack (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Aktualiséier w.e.gl deng PHP-Installatioun fir ownCloud sécher benotzen ze kënnen.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Et ass kee sécheren Zoufallsgenerator verfügbar. Aktivéier w.e.gl d'OpenSSL-Erweiderung vu PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ouni e sécheren Zoufallsgenerator kann en Ugräifer d'Passwuert-Zrécksetzungs-Schlësselen viraussoen an en Account iwwerhuelen.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Däin Daten-Dossier an deng Fichieren si wahrscheinlech iwwert den Internet accessibel well den .htaccess-Fichier net funktionnéiert.", +"For information how to properly configure your server, please see the <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "Kuck w.e.gl. an der <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">Dokumentatioun</a> fir Informatiounen iwwert eng uerdentlech Konfiguratioun vum Server.", +"Create an <strong>admin account</strong>" => "En <strong>Admin-Account</strong> uleeën", "Advanced" => "Avancéiert", -"Data folder" => "Daten Dossier", -"Configure the database" => "Datebank konfiguréieren", +"Data folder" => "Daten-Dossier", +"Configure the database" => "D'Datebank konfiguréieren", "will be used" => "wärt benotzt ginn", -"Database user" => "Datebank Benotzer", -"Database password" => "Datebank Passwuert", +"Database user" => "Datebank-Benotzer", +"Database password" => "Datebank-Passwuert", "Database name" => "Datebank Numm", -"Database tablespace" => "Datebank Tabelle-Gréisst", -"Database host" => "Datebank Server", +"Database tablespace" => "Tabelle-Plaz vun der Datebank", +"Database host" => "Datebank-Server", "Finish setup" => "Installatioun ofschléissen", -"Log out" => "Ausloggen", +"%s is available. Get more information on how to update." => "%s ass verfügbar. Kréi méi Informatiounen doriwwer wéi d'Aktualiséierung ofleeft.", +"Log out" => "Ofmellen", +"Automatic logon rejected!" => "Automatesch Umeldung ofgeleent!", +"If you did not change your password recently, your account may be compromised!" => "Falls du däi Passwuert net viru kuerzem geännert hues, kéint däin Account kompromittéiert sinn!", +"Please change your password to secure your account again." => "Änner w.e.gl däi Passwuert fir däin Account nees ofzesécheren.", "Lost your password?" => "Passwuert vergiess?", "remember" => "verhalen", -"Log in" => "Log dech an", +"Log in" => "Umellen", +"Alternative Logins" => "Alternativ Umeldungen", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Hallo,<br><br>ech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.<br><a href=\"%s\">Kucken!</a><br><br>E schéine Bonjour!", "prev" => "zeréck", -"next" => "weider" +"next" => "weider", +"Updating ownCloud to version %s, this may take a while." => "ownCloud gëtt op d'Versioun %s aktualiséiert, dat kéint e Moment daueren." ); diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 673ee83dca0..4faf7388b23 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -101,7 +101,6 @@ "Help" => "Pagalba", "Access forbidden" => "Priėjimas draudžiamas", "Cloud not found" => "Negalima rasti", -"web services under your control" => "jūsų valdomos web paslaugos", "Edit categories" => "Redaguoti kategorijas", "Add" => "Pridėti", "Security Warning" => "Saugumo pranešimas", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index b8bfe74c377..9552891d7d5 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -98,7 +98,6 @@ "Help" => "Palīdzība", "Access forbidden" => "Pieeja ir liegta", "Cloud not found" => "Mākonis netika atrasts", -"web services under your control" => "tīmekļa servisi tavā varā", "Edit categories" => "Rediģēt kategoriju", "Add" => "Pievienot", "Security Warning" => "Brīdinājums par drošību", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index de89403ee3c..c2b7907aa32 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -94,7 +94,6 @@ "Help" => "Помош", "Access forbidden" => "Забранет пристап", "Cloud not found" => "Облакот не е најден", -"web services under your control" => "веб сервиси под Ваша контрола", "Edit categories" => "Уреди категории", "Add" => "Додади", "Security Warning" => "Безбедносно предупредување", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 7a18acea7cc..4227a317582 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -44,7 +44,6 @@ "Help" => "Bantuan", "Access forbidden" => "Larangan akses", "Cloud not found" => "Awan tidak dijumpai", -"web services under your control" => "Perkhidmatan web di bawah kawalan anda", "Edit categories" => "Ubah kategori", "Add" => "Tambah", "Security Warning" => "Amaran keselamatan", diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php index 614c353929d..bfdff351849 100644 --- a/core/l10n/my_MM.php +++ b/core/l10n/my_MM.php @@ -46,7 +46,6 @@ "Admin" => "အက်ဒမင်", "Help" => "အကူအညီ", "Cloud not found" => "မတွေ့ရှိမိပါ", -"web services under your control" => "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services", "Add" => "ပေါင်းထည့်", "Security Warning" => "လုံခြုံရေးသတိပေးချက်", "Create an <strong>admin account</strong>" => "<strong>အက်ဒမင်အကောင့်</strong>တစ်ခုဖန်တီးမည်", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index d6d9675d328..dfe0cbaeb81 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -78,7 +78,6 @@ "Help" => "Hjelp", "Access forbidden" => "Tilgang nektet", "Cloud not found" => "Sky ikke funnet", -"web services under your control" => "web tjenester du kontrollerer", "Edit categories" => "Rediger kategorier", "Add" => "Legg til", "Security Warning" => "Sikkerhetsadvarsel", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 7afbdde3535..9352f595e76 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -106,7 +106,6 @@ "Access forbidden" => "Toegang verboden", "Cloud not found" => "Cloud niet gevonden", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo daar,\n\n%s deelde %s met jou.\nBekijk: %s\n\nVeel plezier!", -"web services under your control" => "Webdiensten in eigen beheer", "Edit categories" => "Wijzig categorieën", "Add" => "Toevoegen", "Security Warning" => "Beveiligingswaarschuwing", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 67dbe32ff61..2a4902962bd 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -100,7 +100,6 @@ "Help" => "Hjelp", "Access forbidden" => "Tilgang forbudt", "Cloud not found" => "Fann ikkje skyen", -"web services under your control" => "Vev tjenester under din kontroll", "Edit categories" => "Endra kategoriar", "Add" => "Legg til", "Security Warning" => "Tryggleiksåtvaring", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index 4440444885d..ad400aa650a 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -74,7 +74,6 @@ "Help" => "Ajuda", "Access forbidden" => "Acces enebit", "Cloud not found" => "Nívol pas trobada", -"web services under your control" => "Services web jos ton contraròtle", "Edit categories" => "Edita categorias", "Add" => "Ajusta", "Security Warning" => "Avertiment de securitat", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 98a2c6b0af2..0d7c9eb21c6 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -104,7 +104,6 @@ "Help" => "Pomoc", "Access forbidden" => "Dostęp zabroniony", "Cloud not found" => "Nie odnaleziono chmury", -"web services under your control" => "Kontrolowane serwisy", "Edit categories" => "Edytuj kategorie", "Add" => "Dodaj", "Security Warning" => "Ostrzeżenie o zabezpieczeniach", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 69a87133ff2..b36511da600 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -106,7 +106,6 @@ "Access forbidden" => "Acesso proibido", "Cloud not found" => "Cloud não encontrado", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Olá,\n\napenas para você saber que %s compartilhou %s com você.\nVeja: %s\n\nAbraços!", -"web services under your control" => "serviços web sob seu controle", "Edit categories" => "Editar categorias", "Add" => "Adicionar", "Security Warning" => "Aviso de Segurança", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 77c27b641d1..b0afff1ad24 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -101,7 +101,6 @@ "Help" => "Ajuda", "Access forbidden" => "Acesso interdito", "Cloud not found" => "Cloud nao encontrada", -"web services under your control" => "serviços web sob o seu controlo", "Edit categories" => "Editar categorias", "Add" => "Adicionar", "Security Warning" => "Aviso de Segurança", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 327fb72f430..6f23cea1c26 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -62,6 +62,7 @@ "Share with link" => "Partajare cu legătură", "Password protect" => "Protejare cu parolă", "Password" => "Parolă", +"Allow Public Upload" => "Permiteţi încărcarea publică.", "Email link to person" => "Expediază legătura prin poșta electronică", "Send" => "Expediază", "Set expiration date" => "Specifică data expirării", @@ -105,7 +106,6 @@ "Access forbidden" => "Acces interzis", "Cloud not found" => "Nu s-a găsit", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Salutare,\n\nVă aduc la cunoștință că %s a partajat %s cu tine.\nAccesează la: %s\n\nNumai bine!", -"web services under your control" => "servicii web controlate de tine", "Edit categories" => "Editează categorii", "Add" => "Adaugă", "Security Warning" => "Avertisment de securitate", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index f3acab5be38..c7707949119 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -105,7 +105,6 @@ "Access forbidden" => "Доступ запрещён", "Cloud not found" => "Облако не найдено", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Приветствую,⏎\n⏎\nпросто даю знать, что %s поделился %s с вами.⏎\nПосмотреть: %s⏎\n⏎\nУдачи!", -"web services under your control" => "веб-сервисы под вашим управлением", "Edit categories" => "Редактировать категрии", "Add" => "Добавить", "Security Warning" => "Предупреждение безопасности", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index b27f1c6c985..21038a93e88 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -66,7 +66,6 @@ "Help" => "උදව්", "Access forbidden" => "ඇතුල් වීම තහනම්", "Cloud not found" => "සොයා ගත නොහැක", -"web services under your control" => "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්", "Edit categories" => "ප්රභේදයන් සංස්කරණය", "Add" => "එකතු කරන්න", "Security Warning" => "ආරක්ෂක නිවේදනයක්", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index ead3842e452..e9876c52eac 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -104,7 +104,6 @@ "Access forbidden" => "Prístup odmietnutý", "Cloud not found" => "Nenájdené", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ahoj,\n\nChcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu: %s\n\nVďaka", -"web services under your control" => "webové služby pod Vašou kontrolou", "Edit categories" => "Upraviť kategórie", "Add" => "Pridať", "Security Warning" => "Bezpečnostné varovanie", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index bbe7554245d..548a5a3f515 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -106,7 +106,6 @@ "Access forbidden" => "Dostop je prepovedan", "Cloud not found" => "Oblaka ni mogoče najti", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Pozdravljen/a,⏎\n⏎\nsporočam, da je %s delil %s s teboj.⏎\nPoglej na: %s⏎\n⏎\nLep pozdrav!", -"web services under your control" => "spletne storitve pod vašim nadzorom", "Edit categories" => "Uredi kategorije", "Add" => "Dodaj", "Security Warning" => "Varnostno opozorilo", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index f5d7d933768..4e6c458f4df 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -100,7 +100,6 @@ "Help" => "Ndihmë", "Access forbidden" => "Ndalohet hyrja", "Cloud not found" => "Cloud-i nuk u gjet", -"web services under your control" => "shërbime web nën kontrollin tënd", "Edit categories" => "Ndrysho kategoritë", "Add" => "Shto", "Security Warning" => "Paralajmërim sigurie", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index a85e1bfb7e1..d68012c505f 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -93,7 +93,6 @@ "Help" => "Помоћ", "Access forbidden" => "Забрањен приступ", "Cloud not found" => "Облак није нађен", -"web services under your control" => "веб сервиси под контролом", "Edit categories" => "Измени категорије", "Add" => "Додај", "Security Warning" => "Сигурносно упозорење", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index bb79e67d959..d6d4b0ff323 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -106,7 +106,6 @@ "Access forbidden" => "Åtkomst förbjuden", "Cloud not found" => "Hittade inget moln", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\nVi hörs!", -"web services under your control" => "webbtjänster under din kontroll", "Edit categories" => "Editera kategorier", "Add" => "Lägg till", "Security Warning" => "Säkerhetsvarning", diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 0770805ddf5..e593018aaad 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -90,7 +90,6 @@ "Help" => "உதவி", "Access forbidden" => "அணுக தடை", "Cloud not found" => "Cloud காணப்படவில்லை", -"web services under your control" => "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது", "Edit categories" => "வகைகளை தொகுக்க", "Add" => "சேர்க்க", "Security Warning" => "பாதுகாப்பு எச்சரிக்கை", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 83642ed89cb..392da561bf8 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -97,7 +97,6 @@ "Help" => "ช่วยเหลือ", "Access forbidden" => "การเข้าถึงถูกหวงห้าม", "Cloud not found" => "ไม่พบ Cloud", -"web services under your control" => "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้", "Edit categories" => "แก้ไขหมวดหมู่", "Add" => "เพิ่ม", "Security Warning" => "คำเตือนเกี่ยวกับความปลอดภัย", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index f6112040c50..0a56af94182 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -101,7 +101,6 @@ "Help" => "Yardım", "Access forbidden" => "Erişim yasaklı", "Cloud not found" => "Bulut bulunamadı", -"web services under your control" => "Bilgileriniz güvenli ve şifreli", "Edit categories" => "Kategorileri düzenle", "Add" => "Ekle", "Security Warning" => "Güvenlik Uyarisi", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 11ebda3af89..8e67a470956 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -98,7 +98,6 @@ "Help" => "Допомога", "Access forbidden" => "Доступ заборонено", "Cloud not found" => "Cloud не знайдено", -"web services under your control" => "підконтрольні Вам веб-сервіси", "Edit categories" => "Редагувати категорії", "Add" => "Додати", "Security Warning" => "Попередження про небезпеку", diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php index 0e0489bf33d..b27033b80e8 100644 --- a/core/l10n/ur_PK.php +++ b/core/l10n/ur_PK.php @@ -55,7 +55,6 @@ "Help" => "مدد", "Access forbidden" => "پہنچ کی اجازت نہیں", "Cloud not found" => "نہیں مل سکا", -"web services under your control" => "آپ کے اختیار میں ویب سروسیز", "Edit categories" => "زمرہ جات کی تدوین کریں", "Add" => "شامل کریں", "Create an <strong>admin account</strong>" => "ایک<strong> ایڈمن اکاؤنٹ</strong> بنائیں", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index ebe6c7006ff..37ed47de765 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -100,7 +100,6 @@ "Help" => "Giúp đỡ", "Access forbidden" => "Truy cập bị cấm", "Cloud not found" => "Không tìm thấy Clound", -"web services under your control" => "dịch vụ web dưới sự kiểm soát của bạn", "Edit categories" => "Sửa chuyên mục", "Add" => "Thêm", "Security Warning" => "Cảnh bảo bảo mật", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index b4cc129964b..237f0bb14bb 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -97,7 +97,6 @@ "Help" => "帮助", "Access forbidden" => "禁止访问", "Cloud not found" => "云 没有被找到", -"web services under your control" => "您控制的网络服务", "Edit categories" => "编辑分类", "Add" => "添加", "Security Warning" => "安全警告", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 80815b508ce..0c73fe31b3f 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -106,7 +106,6 @@ "Access forbidden" => "访问禁止", "Cloud not found" => "未找到云", "Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "您好,\n\n%s 向您分享了 %s。\n查看: %s", -"web services under your control" => "您控制的web服务", "Edit categories" => "编辑分类", "Add" => "增加", "Security Warning" => "安全警告", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 306ae7acb8c..4afa6ea116f 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -102,7 +102,6 @@ "Help" => "說明", "Access forbidden" => "存取被拒", "Cloud not found" => "未發現雲端", -"web services under your control" => "由您控制的網路服務", "Edit categories" => "編輯分類", "Add" => "增加", "Security Warning" => "安全性警告", diff --git a/core/templates/altmail.php b/core/templates/altmail.php index 37dc8eee942..a7df29a2446 100644 --- a/core/templates/altmail.php +++ b/core/templates/altmail.php @@ -1,9 +1,9 @@ <?php +$defaults = new OC_Defaults(); + print_unescaped($l->t("Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!", array($_['user_displayname'], $_['filename'], $_['link']))); ?> -- -ownCloud - <?php -print_unescaped($l->t("web services under your control")); -?> -http://ownCloud.org +<?php p($defaults->getName() . ' - ' . $defaults->getSlogan()); ?> +<?php print_unescaped("\n".$defaults->getBaseUrl()); diff --git a/core/templates/mail.php b/core/templates/mail.php index ebeefd5c7e8..562ad82e953 100644 --- a/core/templates/mail.php +++ b/core/templates/mail.php @@ -1,3 +1,4 @@ +<?php $defaults = new OC_Defaults() // initialize themable default strings and urls ?> <table cellspacing="0" cellpadding="0" border="0" width="100%"> <tr><td> <table cellspacing="0" cellpadding="0" border="0" width="600px"> @@ -20,10 +21,9 @@ print_unescaped($l->t('Hey there,<br><br>just letting you know that %s shared » <tr> <td bgcolor="#f8f8f8" width="20px"> </td> <td bgcolor="#f8f8f8" style="font-weight:normal; font-size:0.8em; line-height:1.2em; font-family:verdana,'arial',sans;">--<br> -ownCloud - <?php -print_unescaped($l->t('web services under your control')); -?> -<br><a href="http://owncloud.org">http://ownCloud.org</a></td> +<?php p($defaults->getName()); ?> - +<?php p($defaults->getSlogan()); ?> +<br><a href="<?php print_unescaped($defaults->getBaseUrl()); ?>"><?php print_unescaped($defaults->getBaseUrl());?></a></td> </tr> <tr> <td bgcolor="#f8f8f8" colspan="2"> </td> diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 198c9a132dd..f58e3335210 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "Wagwoord" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "Wolk nie gevind" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "webdienste onder jou beheer" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "Maak opstelling klaar" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Teken uit" @@ -611,7 +607,7 @@ msgstr "Teken aan" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index eade3335a64..920cb218987 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index c2dd24dc834..ff1a3d94c28 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Wagwoord" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:17 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 2bfe7ea15bb..de0d0fcf630 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Toepassings" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "webdienste onder jou beheer" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 8ba80c33e4b..c3e8c2bc0a6 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "نوع العنصر غير محدد." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "خطأ" @@ -246,7 +246,7 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" @@ -282,87 +282,87 @@ msgstr "حماية كلمة السر" msgid "Password" msgstr "كلمة المرور" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "ارسل الرابط بالبريد الى صديق" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "أرسل" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "تاريخ إنتهاء الصلاحية" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "مشاركة عبر البريد الإلكتروني:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "لم يتم العثور على أي شخص" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "لا يسمح بعملية إعادة المشاركة" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "شورك في {item} مع {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "التحرير مسموح" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "ضبط الوصول" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "إنشاء" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "تحديث" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "حذف" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "مشاركة" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" @@ -465,7 +465,7 @@ msgstr "التوصّل محظور" msgid "Cloud not found" msgstr "لم يتم إيجاد" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "خدمات الشبكة تحت سيطرتك" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "عدل الفئات" @@ -572,12 +568,12 @@ msgstr "خادم قاعدة البيانات" msgid "Finish setup" msgstr "انهاء التعديلات" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "الخروج" @@ -611,7 +607,7 @@ msgstr "أدخل" msgid "Alternative Logins" msgstr "اسماء دخول بديلة" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ar/files.po b/l10n/ar/files.po index d65c490dbd4..e0b2c6106c5 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "فشل في نقل الملف %s - يوجد ملف بنفس هذا ال msgid "Could not move %s" msgstr "فشل في نقل %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "لم يتم رفع أي ملف , خطأ غير معروف" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini " -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "خطأ في الكتابة على القرص الصلب" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "لا يوجد مساحة تخزينية كافية" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "مسار غير صحيح." diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index 5cd3a407926..b364ef0b1af 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 969f243559c..1b1652a2589 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 62f047c55ef..27a51bc092c 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "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/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "كلمة المرور" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "تطبيق" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s شارك المجلد %s معك" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s شارك الملف %s معك" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "تحميل" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "رفع" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "لا يوجد عرض مسبق لـ" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 6f016ef61a2..bf327aa55cb 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 07f28cf92c3..f7e1f7c218f 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "التطبيقات" msgid "Admin" msgstr "المدير" +#: defaults.php:33 +msgid "web services under your control" +msgstr "خدمات الشبكة تحت سيطرتك" + #: files.php:210 msgid "ZIP download is turned off." msgstr "تحميل ملفات ZIP متوقف" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index e3ce06d160f..44c426598e1 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "حصل خطأ اثناء انشاء مستخدم" msgid "A valid password must be provided" msgstr "يجب ادخال كلمة مرور صحيحة" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "تحذير أمان" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "مجلدات data وملفاتك قد تكون قابلة للوصول اليها عن طريق شبكة الانترنت. ملف .htaccess الذي وفرته Owncloud لا يعمل . نقترح أن تقوم باعداد خادمك بطريقة تجعل مجلد data غير قابل للوصول اليه عن طريق الانترنت أو أن تقوم بتغيير مساره الى خارج مسار مجلد الصفحات الافتراضي document root الخاص بخادم الويب ." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "تحذير في التنصيب" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "الرجاء التحقق من <a href='%s'>دليل التنصيب</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "الموديل 'fileinfo' مفقود" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق " -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "اللغه لا تعمل" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "لم يتمكن خادم ownCloud هذا كم ضبط لغة النظام الى %s . هذا يعني انه قد يكون هناك أخطاء في اسماء الملفات. نحن نوصي ان تقوم بتركيب الحزم اللازمة لدعم %s على نظامك . " -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "الاتصال بالانترنت لا يعمل" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "خادم الـ Owncloud هذا غير متصل بالانترنت. هذا يعني أن بعض الميزات مثل الربط بوحدة تخزينية خارجيه, التنبيهات الخاصة بالتحديثات أو تركيب تطبيقات من مصادر خارجية لن يعمل . كما ان الوصول الى الملفات من خارج الخادم وارسال رسائل البريد التنبيهية لن تعمل أيضا . نقترح أن تفعل خدمة الانترنت في هذا الخادم اذا أردت ان تستفيد من كافة ميزات Owncloud" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "مجدول" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها" -#: templates/admin.php:111 +#: templates/admin.php:113 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 مسجلة في خدمة webcron . قم باستدعاء صفحة cron.php الموجودة في owncloud root مره كل دقيقة عن طريق بروتوكول http" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "قم باستخدام خدمة cron . قم باستدعاء ملف cron.php الموجود في مجلد Owncloud عن طريق system cronjob مره كل دقيقة" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "مشاركة" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "السماح بالمشاركة عن طريق الAPI " -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "السماح للتطبيقات بالمشاركة عن طريق الAPI" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "السماح بالعناوين" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط " -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "السماح بإعادة المشاركة " -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "السماح للمستعملين بإعادة المشاركة مع أي أحد " -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "حماية" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "فرض HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "اجبار المستخدم بالاتصال مع Owncloud عن طريق اتصال مشفر" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "الرجاء الاتصال مع خادم Owncloud هذا عن طريق HTTPS لتفعيل أو تعطيل اجبار الدخول باستخدام " -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "سجل" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "مستوى السجل" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "المزيد" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "أقل" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "إصدار" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "تعقب علة" msgid "Commercial Support" msgstr "دعم تجاري" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "احصل على التطبيقات لمزامنة ملفاتك" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "ابدأ خطوات بداية التشغيل من جديد" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "تم إستهلاك <strong>%s</strong> من المتوفر <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "كلمة المرور" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "لقد تم تغيير كلمة السر" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "لم يتم تعديل كلمة السر بنجاح" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "كلمات السر الحالية" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "كلمات سر جديدة" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "عدل كلمة السر" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "اسم الحساب" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "البريد الإلكترونى" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "عنوانك البريدي" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "اللغة" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "ساعد في الترجمه" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 3a539f3f118..0f96441bc06 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/core.po b/l10n/be/core.po index cf69cc48b4a..c829cb46e46 100644 --- a/l10n/be/core.po +++ b/l10n/be/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: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "Завяршыць ўстаноўку." -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/be/files_encryption.po b/l10n/be/files_encryption.po index ca0c3261324..3fc7cf19381 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/be/files_sharing.po b/l10n/be/files_sharing.po index 2812c182b0e..43b93d5cffe 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:17 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 9624767b8e7..4d50e77416a 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 8569c3b3d26..d9d6d29db00 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Грешка" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Споделяне" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "Парола" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "създаване" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "Достъпът е забранен" msgid "Cloud not found" msgstr "облакът не намерен" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "уеб услуги под Ваш контрол" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Редактиране на категориите" @@ -572,12 +568,12 @@ msgstr "Хост за базата" msgid "Finish setup" msgstr "Завършване на настройките" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Изход" @@ -611,7 +607,7 @@ msgstr "Вход" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 0673856f82a..71be27c6a39 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Файлът е качен успешно" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Файлът който се опитвате да качите надвишава стойностите в MAX_FILE_SIZE в HTML формата." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Файлът е качен частично" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Фахлът не бе качен" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Липсва временна папка" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Възникна проблем при запис в диска" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Невалидна директория." @@ -337,7 +337,7 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "файл" #: templates/part.list.php:91 msgid "files" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 88b057c00d8..6fda53b831b 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 0158328af63..13adc2d926c 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index e9b40ec6a61..2eda6b4fafb 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Парола" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Потвърждение" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s сподели папката %s с Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s сподели файла %s с Вас" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Изтегляне" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Качване" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Спри качването" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Няма наличен преглед за" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 8cdd64cad53..c43a476fdd2 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Димитър Кръстев <dimitar.t.krastev@gmail.com>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index b4f6b07a3a4..bced70768ef 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Приложения" msgid "Admin" msgstr "Админ" +#: defaults.php:33 +msgid "web services under your control" +msgstr "уеб услуги под Ваш контрол" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Изтеглянето като ZIP е изключено." diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 6cebb56c5fc..76595482f23 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Моля направете повторна справка с <a href='%s'>ръководството за инсталиране</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Крон" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Споделяне" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Още" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "По-малко" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Версия" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "Докладвани грешки" msgid "Commercial Support" msgstr "Платена поддръжка" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Покажи настройките за първоначално зареждане отново" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Парола" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Промяната на паролата не беше извършена" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Текуща парола" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Нова парола" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Промяна на паролата" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Екранно име" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Вашия email адрес" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Въведете е-поща за възстановяване на паролата" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Език" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Помогнете с превода" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 14403c491d5..3b47a439521 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 3bd7bcddde4..4f76e1f46a3 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "অবজেক্টের ধরণটি সুনির্দিষ #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "সমস্যা" @@ -246,7 +246,7 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " @@ -282,87 +282,87 @@ msgstr "কূটশব্দ সুরক্ষিত" msgid "Password" msgstr "কূটশব্দ" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "ব্যক্তির সাথে ই-মেইল যুক্ত কর" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "পাঠাও" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "সম্পাদনা করতে পারবেন" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "অধিগম্যতা নিয়ন্ত্রণ" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "তৈরী করুন" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "পরিবর্ধন কর" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "মুছে ফেল" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" @@ -465,7 +465,7 @@ msgstr "অধিগমনের অনুমতি নেই" msgid "Cloud not found" msgstr "ক্লাউড খুঁজে পাওয়া গেল না" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "ক্যাটেগরি সম্পাদনা" @@ -572,12 +568,12 @@ msgstr "ডাটাবেজ হোস্ট" msgid "Finish setup" msgstr "সেটআপ সুসম্পন্ন কর" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "প্রস্থান" @@ -611,7 +607,7 @@ msgstr "প্রবেশ" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index dabf23d663a..a29db5512e5 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "%s কে স্থানান্তর করা সম্ভব হ msgid "Could not move %s" msgstr "%s কে স্থানান্তর করা সম্ভব হলো না" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "কোন সমস্যা হয় নি, ফাইল আপলোড সুসম্পন্ন হয়েছে।" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "আপলোড করা ফাইলটি php.ini তে বর্ণিত upload_max_filesize নির্দেশিত আয়তন অতিক্রম করছেঃ" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "আপলোড করা ফাইলটি HTML ফর্মে উল্লিখিত MAX_FILE_SIZE নির্ধারিত ফাইলের সর্বোচ্চ আকার অতিক্রম করতে চলেছে " -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "কোন ফাইল আপলোড করা হয় নি" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "ডিস্কে লিখতে ব্যর্থ" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index ce305946eab..6b42829178e 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 74b60c44328..f1a0d021fe9 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index ea9a1b46608..a7fa1937a43 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "কূটশব্দ" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "জমা দিন" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ডাউনলোড" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "আপলোড" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 92c63b82985..1c0bf9be57e 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 4c99f99195d..a711bd830e0 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "অ্যাপ" msgid "Admin" msgstr "প্রশাসন" +#: defaults.php:33 +msgid "web services under your control" +msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP ডাউনলোড বন্ধ করা আছে।" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index e117862fd71..9c2243cbfee 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "নিরাপত্তাজনিত সতর্কতা" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "বেশী" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "কম" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "বাগট্র্যাকার" msgid "Commercial Support" msgstr "বাণিজ্যিক সাপোর্ট" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "প্রথমবার চালানোর যাদুকর পূনরায় প্রদর্শন কর" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "আপনি ব্যবহার করছেন <strong>%s</strong>, সুলভ <strong>%s</strong> এর মধ্যে।" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "কূটশব্দ" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে " -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "বর্তমান কূটশব্দ" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "নতুন কূটশব্দ" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "কূটশব্দ পরিবর্তন করুন" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "ইমেইল" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "আপনার ই-মেইল ঠিকানা" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "কূটশব্দ পূনরূদ্ধার সক্রিয় করার জন্য ই-মেইল ঠিকানাটি পূরণ করুন" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "ভাষা" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "অনুবাদ করতে সহায়তা করুন" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index a7b8231686d..09c235ec3a3 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 3b793c17fe8..a612e6fdf6d 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/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: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:04+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 06e4075ae9c..742d4b79b6a 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/bs/files_encryption.po b/l10n/bs/files_encryption.po index 618d2d693d8..15de964f5c6 100644 --- a/l10n/bs/files_encryption.po +++ b/l10n/bs/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/bs/files_sharing.po b/l10n/bs/files_sharing.po index 1f69bb25cad..6893cf5162b 100644 --- a/l10n/bs/files_sharing.po +++ b/l10n/bs/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "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/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:17 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 4d03d1739a8..c671525e598 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index 7cf68fb67a7..815a68397d7 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index bfae98613a1..d287f451cb3 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -227,8 +227,8 @@ msgstr "No s'ha especificat el tipus d'objecte." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Error" @@ -248,7 +248,7 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Error en compartir" @@ -284,87 +284,87 @@ msgstr "Protegir amb contrasenya" msgid "Password" msgstr "Contrasenya" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Permet pujada pública" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Enllaç per correu electrónic amb la persona" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Envia" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Estableix la data de venciment" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data de venciment" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Comparteix per correu electrònic" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "No s'ha trobat ningú" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "No es permet compartir de nou" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Compartit en {item} amb {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Deixa de compartir" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "pot editar" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "control d'accés" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "crea" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "actualitza" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "elimina" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "comparteix" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" @@ -467,7 +467,7 @@ msgstr "Accés prohibit" msgid "Cloud not found" msgstr "No s'ha trobat el núvol" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "Ei,\n\nnomés fer-te saber que %s ha compartit %s amb tu.\nMira-ho: %s\n\nSalut!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "controleu els vostres serveis web" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Edita les categories" @@ -574,12 +570,12 @@ msgstr "Ordinador central de la base de dades" msgid "Finish setup" msgstr "Acaba la configuració" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s està disponible. Obtingueu més informació de com actualitzar." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Surt" @@ -613,7 +609,7 @@ msgstr "Inici de sessió" msgid "Alternative Logins" msgstr "Acreditacions alternatives" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 2d0963bb47c..73e93238b7e 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -4,13 +4,14 @@ # # Translators: # rogerc, 2013 +# Josep Tomàs <jtomas.binsoft@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" +"Last-Translator: Josep Tomàs <jtomas.binsoft@gmail.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" @@ -28,54 +29,54 @@ msgstr "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom" msgid "Could not move %s" msgstr " No s'ha pogut moure %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "No es pot establir la carpeta de pujada." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Testimoni no vàlid" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "No hi ha errors, el fitxer s'ha carregat correctament" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "L’arxiu que voleu carregar supera el màxim definit en la directiva upload_max_filesize del php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha carregat parcialment" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "No s'ha carregat cap fitxer" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Falta un fitxer temporal" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Directori no vàlid." @@ -232,7 +233,7 @@ msgstr "{count} fitxers" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s no es pot canviar el nom" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -330,19 +331,19 @@ msgstr "Actualment escanejant" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "directori" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "directoris" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fitxer" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "fitxers" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 46c19e02c73..7e7d5f535ea 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -5,13 +5,14 @@ # Translators: # rogerc, 2013 # Jordi Vilalta Prat <jvprat@jvprat.com>, 2013 +# Josep Tomàs <jtomas.binsoft@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 15:50+0000\n" +"Last-Translator: Josep Tomàs <jtomas.binsoft@gmail.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" @@ -61,17 +62,18 @@ msgid "" "ownCloud system (e.g. your corporate directory). You can update your private" " key password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora del sistema ownCloud (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "El mòdul OpenSSL de PHP no està instal·lat." +msgid "Missing requirements." +msgstr "Manca de requisits." #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Demaneu a l'administrador del servidor que instal·li el mòdul. Per ara, l'aplicació d'encriptació s'ha deshabilitat." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "Assegureu-vos que teniu instal·lada la versió de PHP 5.3.3 o posterior, i que teniu l'extensió OpenSSL PHP activada i configurada correctament. Per ara, l'aplicació de xifrat esta desactivada." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index cd994e07c6a..ca185b4f141 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 16b1474c514..689db3c82e3 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Contrasenya" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Envia" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha compartit la carpeta %s amb vós" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha compartit el fitxer %s amb vós" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Baixa" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Puja" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "No hi ha vista prèvia disponible per a" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index a212b860572..1d37fe05d93 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 91228aea34b..403c72f0aae 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplicacions" msgid "Admin" msgstr "Administració" +#: defaults.php:33 +msgid "web services under your control" +msgstr "controleu els vostres serveis web" + #: files.php:210 msgid "ZIP download is turned off." msgstr "La baixada en ZIP està desactivada." diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 393f93eea24..0dfee9c29a4 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Error en crear l'usuari" msgid "A valid password must be provided" msgstr "Heu de facilitar una contrasenya vàlida" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Català" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Avís de seguretat" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " 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/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Avís de configuració" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Comproveu les <a href='%s'>guies d'instal·lació</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "No s'ha trobat el mòdul 'fileinfo'" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Locale no funciona" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Aquest servidor ownCloud no pot establir el locale del sistema a %s. Això significa que hi poden haver problemes amb alguns caràcters en el nom dels fitxers. Us recomanem instal·lar els paquets necessaris al sistema per donar suport a %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "La connexió a internet no funciona" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Aquest servidor ownCloud no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament externs, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu gaudir de totes les possibilitats d'ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Executa una tasca per cada paquet carregat" -#: templates/admin.php:111 +#: templates/admin.php:113 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 està registrat en un servei webcron. Feu la crida a cron.php a l'arrel d'ownCloud cada minut a través de http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Usa un servei cron del sistema. Feu la crida al fitxer cron.php a través d'un cronjob del sistema cada minut." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Compartir" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Habilita l'API de compartir" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Permet que les aplicacions utilitzin l'API de compartir" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Permet enllaços" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Permet als usuaris compartir elements amb el públic amb enllaços" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Permet compartir de nou" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Permet als usuaris compartir de nou elements ja compartits amb ells" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Permet compartir amb qualsevol" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Permet als usuaris compartir només amb els usuaris del seu grup" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Seguretat" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Força HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Força als clients la connexió amb ownCloud via una connexió encriptada." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Connecteu aquesta instància onwCloud via HTTPS per habilitar o deshabilitar el forçament SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Registre" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nivell de registre" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Més" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Menys" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versió" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -388,72 +388,72 @@ msgstr "Seguiment d'errors" msgid "Commercial Support" msgstr "Suport comercial" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Obtén les aplicacions per sincronitzar fitxers" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Torna a mostrar l'assistent de primera execució" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Heu utilitzat <strong>%s</strong> d'un total disponible de <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasenya" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "La seva contrasenya s'ha canviat" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "No s'ha pogut canviar la contrasenya" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Contrasenya actual" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Contrasenya nova" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Canvia la contrasenya" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nom a mostrar" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Correu electrònic" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Correu electrònic" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Ompliu el correu electrònic per activar la recuperació de contrasenya" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Idioma" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Ajudeu-nos amb la traducció" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Useu aquesta adreça per connectar amb ownCloud des del gestor de fitxers" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 4d218832d4a..88538155553 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 54b83b2e0e6..7c57d07c5c0 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "Není určen typ objektu." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Chyba" @@ -248,7 +248,7 @@ msgstr "Sdílené" msgid "Share" msgstr "Sdílet" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Chyba při sdílení" @@ -284,87 +284,87 @@ msgstr "Chránit heslem" msgid "Password" msgstr "Heslo" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Povolit veřejné nahrávání" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Odeslat osobě odkaz e-mailem" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Odeslat" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Nastavit datum vypršení platnosti" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Datum vypršení platnosti" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Sdílet e-mailem:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Žádní lidé nenalezeni" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Sdílení již sdílené položky není povoleno" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Sdíleno v {item} s {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "lze upravovat" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "řízení přístupu" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "vytvořit" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "aktualizovat" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "smazat" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "sdílet" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Odesílám ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-mail odeslán" @@ -467,7 +467,7 @@ msgstr "Přístup zakázán" msgid "Cloud not found" msgstr "Cloud nebyl nalezen" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "Ahoj,\n\njenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "služby webu pod Vaší kontrolou" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Upravit kategorie" @@ -574,12 +570,12 @@ msgstr "Hostitel databáze" msgid "Finish setup" msgstr "Dokončit nastavení" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s je dostupná. Získejte více informací k postupu aktualizace." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Odhlásit se" @@ -613,7 +609,7 @@ msgstr "Přihlásit" msgid "Alternative Logins" msgstr "Alternativní přihlášení" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 5f1967ce9b2..d3d20cc2f40 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -29,54 +29,54 @@ msgstr "Nelze přesunout %s - existuje soubor se stejným názvem" msgid "Could not move %s" msgstr "Nelze přesunout %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Nelze nastavit adresář pro nahrané soubory." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Neplatný token" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Soubor nebyl odeslán. Neznámá chyba" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Chybí adresář pro dočasné soubory" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nedostatek dostupného úložného prostoru" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Neplatný adresář" @@ -339,11 +339,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "soubor" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "soubory" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 56af9032b4b..1d95d95e25f 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -64,13 +64,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 3ad25fe80f3..0e1fa9e2143 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 38436e7b8ff..d8791b42850 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Heslo" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Odeslat" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s s Vámi sdílí složku %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s s Vámi sdílí soubor %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Stáhnout" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Odeslat" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Náhled není dostupný pro" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index b9a53dae38c..35286b5e0b0 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 2d5a50e30e8..47275dbd4c6 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplikace" msgid "Admin" msgstr "Administrace" +#: defaults.php:33 +msgid "web services under your control" +msgstr "služby webu pod Vaší kontrolou" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Stahování ZIPu je vypnuto." diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 454fe4049d1..54c2132511d 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Chyba při vytváření užiatele" msgid "A valid password must be provided" msgstr "Musíte zadat platné heslo" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Česky" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Bezpečnostní upozornění" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " 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/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Upozornění nastavení" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV je rozbité." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Zkonzultujte, prosím, <a href='%s'>průvodce instalací</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Schází modul 'fileinfo'" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Schází modul PHP 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Locale nefunguje" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Server ownCloud nemůže nastavit locale systému na %s. Můžete tedy mít problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat potřebné balíčky pro podporu %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Spojení s internetem nefujguje" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "Server ownCloud nemá funkční spojení s internetem. Některé moduly jako externí úložiště, oznámení o dostupných aktualizacích, nebo instalace aplikací třetích stran nefungují. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit internetové spojení pro tento server." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Spustit jednu úlohu s každou načtenou stránkou" -#: templates/admin.php:111 +#: templates/admin.php:113 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 je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Sdílení" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Povolit API sdílení" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Povolit aplikacím používat API sdílení" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Povolit odkazy" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Povolit uživatelům sdílet položky s veřejností pomocí odkazů" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Povolit znovu-sdílení" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Povolit uživatelům sdílet s kýmkoliv" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Zabezpečení" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Vynutit HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Vynutí připojování klientů ownCloud skrze šifrované spojení." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Připojte se, prosím, k této instanci ownCloud skrze HTTPS pro povolení, nebo zakažte vynucení SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Záznam" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Více" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Méně" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Verze" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,72 +387,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Placená podpora" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Získat aplikace pro synchronizaci vašich souborů" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Znovu zobrazit průvodce prvním spuštěním" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Používáte <strong>%s</strong> z <strong>%s</strong> dostupných" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Heslo" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Vaše heslo bylo změněno" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Vaše heslo nelze změnit" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Současné heslo" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Změnit heslo" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Zobrazované jméno" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Vaše e-mailová adresa" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Pro povolení změny hesla vyplňte adresu e-mailu" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Pomoci s překladem" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index cc3d96175aa..f0b6438fb65 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+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" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index f6888aa73c4..9bd3d827bd8 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Gwall" @@ -247,7 +247,7 @@ msgstr "Rhannwyd" msgid "Share" msgstr "Rhannu" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Gwall wrth rannu" @@ -283,87 +283,87 @@ msgstr "Diogelu cyfrinair" msgid "Password" msgstr "Cyfrinair" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "E-bostio dolen at berson" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Anfon" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Gosod dyddiad dod i ben" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Dyddiad dod i ben" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Rhannu drwy e-bost:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Heb ganfod pobl" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Does dim hawl ail-rannu" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Rhannwyd yn {item} â {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Dad-rannu" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "yn gallu golygu" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "rheolaeth mynediad" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "creu" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "diweddaru" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "dileu" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "rhannu" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Diogelwyd â chyfrinair" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Anfonwyd yr e-bost" @@ -466,7 +466,7 @@ msgstr "Mynediad wedi'i wahardd" msgid "Cloud not found" msgstr "Methwyd canfod cwmwl" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "gwasanaethau gwe a reolir gennych" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Golygu categorïau" @@ -573,12 +569,12 @@ msgstr "Gwesteiwr cronfa ddata" msgid "Finish setup" msgstr "Gorffen sefydlu" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s ar gael. Mwy o wybodaeth am sut i ddiweddaru." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Allgofnodi" @@ -612,7 +608,7 @@ msgstr "Mewngofnodi" msgid "Alternative Logins" msgstr "Mewngofnodiadau Amgen" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index d2247f84b97..52e57cac7c9 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli" msgid "Could not move %s" msgstr "Methwyd symud %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Dim ond yn rhannol y llwythwyd y ffeil i fyny" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ni lwythwyd ffeil i fyny" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Plygell dros dro yn eisiau" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Methwyd ysgrifennu i'r ddisg" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Dim digon o le storio ar gael" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Cyfeiriadur annilys." diff --git a/l10n/cy_GB/files_encryption.po b/l10n/cy_GB/files_encryption.po index 4fe576b4ad1..580563b10a4 100644 --- a/l10n/cy_GB/files_encryption.po +++ b/l10n/cy_GB/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 3ebded18627..8e7279cc0c9 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index c2cbdfa6106..39f0349991b 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Cyfrinair" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Cyflwyno" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "Rhannodd %s blygell %s â chi" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "Rhannodd %s ffeil %s â chi" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Llwytho i lawr" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Llwytho i fyny" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Does dim rhagolwg ar gael ar gyfer" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 273ab0bb90f..9b6cfa597cd 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: ubuntucymraeg <owen.llywelyn@gmail.com>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index cc12f23d263..fa98566764b 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Pecynnau" msgid "Admin" msgstr "Gweinyddu" +#: defaults.php:33 +msgid "web services under your control" +msgstr "gwasanaethau gwe a reolir gennych" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Mae llwytho ZIP wedi ei ddiffodd." diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index b6a47c9645a..c6e72861e4e 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Rhybudd Diogelwch" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Gwiriwch y <a href='%s'>canllawiau gosod</a> eto." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Cyfrinair" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Cyfrinair newydd" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-bost" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 94f1fbefe14..c07ddf80250 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index 4fcad13a637..e595291b922 100644 --- a/l10n/da/core.po +++ b/l10n/da/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -227,8 +227,8 @@ msgstr "Objekttypen er ikke angivet." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Fejl" @@ -248,7 +248,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Fejl under deling" @@ -284,87 +284,87 @@ msgstr "Beskyt med adgangskode" msgid "Password" msgstr "Kodeord" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "E-mail link til person" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Send" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Vælg udløbsdato" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Udløbsdato" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Del via email:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Ingen personer fundet" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Videredeling ikke tilladt" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Fjern deling" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kan redigere" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "Adgangskontrol" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "opret" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "opdater" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "slet" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "del" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-mail afsendt" @@ -467,7 +467,7 @@ msgstr "Adgang forbudt" msgid "Cloud not found" msgstr "Sky ikke fundet" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Webtjenester under din kontrol" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Rediger kategorier" @@ -574,12 +570,12 @@ msgstr "Databasehost" msgid "Finish setup" msgstr "Afslut opsætning" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s er tilgængelig. Få mere information om, hvordan du opdaterer." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Log ud" @@ -613,7 +609,7 @@ msgstr "Log ind" msgid "Alternative Logins" msgstr "Alternative logins" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/da/files.po b/l10n/da/files.po index 48982a98e28..19811bc1d79 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Kunne ikke flytte %s - der findes allerede en fil med dette navn" msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Der skete ingen fejl, filen blev succesfuldt uploadet" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Filen blev kun delvist uploadet." -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ingen fil uploadet" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Manglende midlertidig mappe." -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Der er ikke nok plads til rådlighed" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fil" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "filer" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index f111e55c408..9df3c49abd1 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index b3e00bab622..9c2fb2245b4 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index f92cd3bde67..3219fe42e83 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Kodeord" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Send" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med dig" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med dig" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Download" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Upload" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgængelig for" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 3318d55688b..dc7d2bf16f9 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 5d67dde28d2..c2c2b1ce69e 100644 --- a/l10n/da/lib.po +++ b/l10n/da/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Apps" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "Webtjenester under din kontrol" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP-download er slået fra." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index b0a4ca6625b..e2b6756f970 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Fejl ved oprettelse af bruger" msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Dansk" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Sikkerhedsadvarsel" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen som ownCloud leverer virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver på en måske så data mappen ikke længere er tilgængelig eller at du flytter data mappen uden for webserverens dokument rod. " -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Opsætnings Advarsel" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' mangler" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Landestandard fungerer ikke" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Denne ownCloud server kan ikke indstille systemets landestandard for %s. Det betyder, at der kan være problemer med visse tegn i filnavne. Vi anbefaler kraftigt, at installere de nødvendige pakker på dit system til at understøtte %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Internetforbindelse fungerer ikke" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af eksterne applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker alle ownClouds funktioner." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Udføre en opgave med hver side indlæst" -#: templates/admin.php:111 +#: templates/admin.php:113 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 er registreret hos en webcron service. Kald cron.php side i owncloud rod en gang i minuttet over HTTP." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Brug system cron service. Kald cron.php filen i owncloud mappe via et system cronjob en gang i minuttet." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Aktiver Share API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Tillad apps til at bruge Share API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Tillad links" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Tillad brugere at dele elementer til offentligheden med links" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Tillad videredeling" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Tillad brugere at dele elementer delt med dem igen" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Tillad brugere at dele med alle" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Tillad brugere at kun dele med brugerne i deres grupper" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Sikkerhed" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Gennemtving HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Håndhæver klienter at oprette forbindelse til ownCloud via en krypteret forbindelse." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Opret forbindelse til denne ownCloud enhed via HTTPS for at aktivere eller deaktivere SSL håndhævelse." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mere" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mindre" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,72 +387,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Kommerciel support" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Hent applikationerne for at synkronisere dine filer" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Vis Første Kørsels Guiden igen." -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Du har brugt <strong>%s</strong> af den tilgængelige <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Kodeord" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Din adgangskode blev ændret" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Ude af stand til at ændre dit kodeord" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Nuværende adgangskode" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nyt kodeord" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Skift kodeord" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Skærmnavn" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Din emailadresse" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Indtast en emailadresse for at kunne få påmindelse om adgangskode" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Sprog" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Hjælp med oversættelsen" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Brug denne adresse til at oprette forbindelse til din ownCloud i din filstyring" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index fced5ee77b5..cb8f220d811 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:06+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index f03b72442aa..cae85ed2344 100644 --- a/l10n/de/core.po +++ b/l10n/de/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -230,8 +230,8 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Fehler" @@ -251,7 +251,7 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -287,87 +287,87 @@ msgstr "Passwortschutz" msgid "Password" msgstr "Passwort" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Senden" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Setze ein Ablaufdatum" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Über eine E-Mail teilen:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Weiterverteilen ist nicht erlaubt" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Für {user} in {item} freigegeben" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "erstellen" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "aktualisieren" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "löschen" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "teilen" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-Mail wurde verschickt" @@ -470,7 +470,7 @@ msgstr "Zugriff verboten" msgid "Cloud not found" msgstr "Cloud nicht gefunden" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -481,10 +481,6 @@ msgid "" "Cheers!" msgstr "Hallo,\n\nwollte dich nur kurz informieren, dass %s gerade %s mit dir geteilt hat.\nSchau es dir an: %s\n\nGruß!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Web-Services unter Deiner Kontrolle" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategorien bearbeiten" @@ -577,12 +573,12 @@ msgstr "Datenbank-Host" msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Abmelden" @@ -616,7 +612,7 @@ msgstr "Einloggen" msgid "Alternative Logins" msgstr "Alternative Logins" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/de/files.po b/l10n/de/files.po index 2f29b17c408..23f25e9ff66 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -29,54 +29,54 @@ msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert berei msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -339,11 +339,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "Datei" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "Dateien" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 890d35cfb38..a1ca99ba267 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -65,13 +65,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 8883bde9636..96bdaafac62 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 90649344fd3..f3a22e37f26 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Passwort" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Absenden" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Dir geteilt" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Dir geteilt" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Download" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index ad751e9751e..805078c6774 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index fa48a825e5b..4541e31e4a1 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -43,6 +43,10 @@ msgstr "Apps" msgid "Admin" msgstr "Administration" +#: defaults.php:33 +msgid "web services under your control" +msgstr "Web-Services unter Deiner Kontrolle" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index d7d806c3ee3..9e43bab6a11 100644 --- a/l10n/de/settings.po +++ b/l10n/de/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: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -169,15 +169,15 @@ msgstr "Beim Anlegen des Benutzers ist ein Fehler aufgetreten" msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Deutsch (Persönlich)" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Sicherheitswarnung" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -186,36 +186,36 @@ msgid "" " 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/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Modul 'fileinfo' fehlt " -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Ländereinstellung funktioniert nicht" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -223,11 +223,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen die für %s benötigten Pakete auf Deinem System zu installieren." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Keine Netzwerkverbindung" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -237,102 +237,102 @@ msgid "" " of ownCloud." msgstr "Dieser ownCloud Server hat keine funktionierende Netzwerkverbindung. Dies bedeutet das einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Netzwerkverbindung für diesen Server zu aktivieren, wenn Du alle Funktionen von ownCloud nutzen möchtest." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Führe eine Aufgabe mit jeder geladenen Seite aus" -#: templates/admin.php:111 +#: templates/admin.php:113 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 an einem Webcron-Service registriert. Die cron.php Seite wird einmal pro Minute über http abgerufen." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Nutze den Cron Systemdienst. Rufe die Datei cron.php im owncloud Ordner einmal pro Minute über einen Cronjob auf." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Aktiviere Sharing-API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Erlaubt Apps die Nutzung der Share-API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Erlaubt Links" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Erlaubt Benutzern, Inhalte über öffentliche Links zu teilen" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Erlaubt erneutes Teilen" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Erzwinge HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Erzwingt die Verwendung einer verschlüsselten Verbindung" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Bitte verbinde Dich über eine HTTPS Verbindung mit diesem ownCloud Server um diese Einstellung zu ändern" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mehr" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Weniger" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -390,72 +390,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Kommerzieller Support" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Lade die Apps zur Synchronisierung Deiner Daten herunter" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Erstinstallation erneut durchführen" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Du verwendest <strong>%s</strong> der verfügbaren <strong>%s<strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwort" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Dein Passwort wurde geändert." -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Passwort konnte nicht geändert werden" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Anzeigename" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Deine E-Mail-Adresse" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Sprache" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Hilf bei der Übersetzung" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index c157b07fc42..7c24addda16 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index fc96f3aa6a9..c77a3bb5837 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: SteinQuadrat\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -231,8 +231,8 @@ msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Fehler" @@ -252,7 +252,7 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -288,87 +288,87 @@ msgstr "Passwortschutz" msgid "Password" msgstr "Passwort" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Erlaube öffentliches hochladen" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Senden" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Ein Ablaufdatum setzen" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Mittels einer E-Mail teilen:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "erstellen" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "aktualisieren" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "löschen" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "teilen" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email gesendet" @@ -471,7 +471,7 @@ msgstr "Zugriff verboten" msgid "Cloud not found" msgstr "Cloud wurde nicht gefunden" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -482,10 +482,6 @@ msgid "" "Cheers!" msgstr "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüße!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Web-Services unter Ihrer Kontrolle" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategorien ändern" @@ -578,12 +574,12 @@ msgstr "Datenbank-Host" msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Abmelden" @@ -617,7 +613,7 @@ msgstr "Einloggen" msgid "Alternative Logins" msgstr "Alternative Logins" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 811649ba487..9f4b5ac2528 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -5,14 +5,15 @@ # Translators: # a.tangemann <a.tangemann@web.de>, 2013 # SteinQuadrat, 2013 +# I Robot <owncloud-bot@tmit.eu>, 2013 # Marcel Kühlhorn <susefan93@gmx.de>, 2013 # Mirodin <blobbyjj@ymail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -31,54 +32,54 @@ msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert berei msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Ungültiges Merkmal" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Die Datei ist größer, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -333,19 +334,19 @@ msgstr "Scanne" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "Verzeichnis" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "Verzeichnisse" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "Datei" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "Dateien" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index 844d88cb3e0..752ceee5899 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 05:50+0000\n" +"Last-Translator: JamFX <niko@nik-o-mat.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,17 +62,18 @@ msgid "" "ownCloud system (e.g. your corporate directory). You can update your private" " key password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "Das PHP-Modul OpenSSL ist nicht installiert." +msgid "Missing requirements." +msgstr "Fehlende Voraussetzungen" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Bitte fragen Sie Ihren Server-Administrator, das entsprechende Modul zu installieren. Bis dahin wurde die Anwendung zur Verschlüsselung deaktiviert." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und die PHP-Erweiterung OpenSSL aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." #: js/settings-admin.js:11 msgid "Saving..." @@ -86,7 +87,7 @@ msgstr "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Sie können den privaten Schlüssel ändern und zwar in Ihrem" #: templates/invalid_private_key.php:7 msgid "personal settings" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index bdf56cdcbf6..7ef58f6445c 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/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: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 30d42bf0953..8f19affb07f 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# JamFX <niko@nik-o-mat.de>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: JamFX <niko@nik-o-mat.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "Das Passwort ist falsch. Bitte versuchen Sie es erneut." + +#: templates/authenticate.php:7 msgid "Password" msgstr "Passwort" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Bestätigen" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Ihnen geteilt" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Herunterladen" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 1b3af7b5410..7f22116bbf2 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 01c6c16202c..9ad78104ea9 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Apps" msgid "Admin" msgstr "Administrator" +#: defaults.php:33 +msgid "web services under your control" +msgstr "Web-Services unter Ihrer Kontrolle" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 706faaaad54..765e14c23a4 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -170,15 +170,15 @@ msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Deutsch (Förmlich: Sie)" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Sicherheitshinweis" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -187,36 +187,36 @@ msgid "" " webserver document root." msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich über das Internet erreichbar. Die von ownCloud bereitgestellte .htaccess Datei funktioniert nicht. Wir empfehlen Ihnen dringend, Ihren Webserver so zu konfigurieren, dass das Datenverzeichnis nicht mehr über das Internet erreichbar ist. Alternativ können Sie auch das Datenverzeichnis aus dem Dokumentenverzeichnis des Webservers verschieben." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Das Modul 'fileinfo' fehlt" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Die Lokalisierung funktioniert nicht" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -224,11 +224,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Dieser ownCloud-Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Keine Internetverbindung" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -238,102 +238,102 @@ msgid "" " of ownCloud." msgstr "Dieser ownCloud-Server hat keine funktionierende Internetverbindung. Dies bedeutet, dass einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungs-E-Mails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen von ownCloud nutzen wollen." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:111 +#: templates/admin.php:113 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-Service registriert. Die cron.php Seite im ownCloud-Wurzelverzeichniss wird einmal pro Minute über http abgerufen." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Nutzen Sie den Cron-Systemdienst. Rufen Sie die Datei cron.php im ownCloud-Ordner einmal pro Minute über einen Cronjob auf." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung mit ownCloud zu verbinden." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Bitte verbinden Sie sich mit dieser ownCloud-Instanz per HTTPS, um SSL-Erzwingung zu aktivieren oder deaktivieren." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mehr" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Weniger" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -391,72 +391,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Kommerzieller Support" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Den Einrichtungsassistenten erneut anzeigen" -#: templates/personal.php:28 +#: templates/personal.php:29 #, 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:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwort" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Ihr Passwort wurde geändert." -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Anzeigename" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:77 +#: templates/personal.php:78 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:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Sprache" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index de00f19f1a2..41a7d4f1a6a 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -5,14 +5,15 @@ # Translators: # a.tangemann <a.tangemann@web.de>, 2013 # Marcel Kühlhorn <susefan93@gmx.de>, 2013 +# JamFX <niko@nik-o-mat.de>, 2013 # traductor <transifex-2.7.mensaje@spamgourmet.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" -"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: JamFX <niko@nik-o-mat.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +23,7 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "Löschen der Zuordnung fehlgeschlagen." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" @@ -62,7 +63,7 @@ msgstr "Das Hinzufügen der Serverkonfiguration schlug fehl" #: js/settings.js:111 msgid "mappings cleared" -msgstr "" +msgstr "Zuordnungen gelöscht" #: js/settings.js:112 msgid "Success" @@ -365,7 +366,7 @@ msgstr "Standardmäßig wird der interne Benutzername mittels des UUID-Attribute #: templates/settings.php:103 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Interne Eigenschaften des Benutzers:" #: templates/settings.php:104 msgid "Override UUID detection" @@ -380,7 +381,7 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behaviour. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Standardmäßig erkennt OwnCloud die UUID-Eigenschaften des Benutzers selbstständig. Die UUID-Eigenschaften werden genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird ein interner Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie können diese Eigenschaften überschreiben und selbst Eigenschaften nach Wahl vorgeben. Sie müssen allerdings sicherstellen, dass die Eigenschaften zur Identifikation für Benutzer und Gruppen eindeutig sind. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu zugeordnete (neu erstellte) LDAP-Benutzer und -Gruppen aus." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -388,7 +389,7 @@ msgstr "UUID-Attribut:" #: templates/settings.php:107 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "LDAP-Benutzernamenzuordnung" #: templates/settings.php:108 msgid "" @@ -407,11 +408,11 @@ msgstr "" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Lösche LDAP-Benutzernamenzuordnung" #: templates/settings.php:109 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" +msgstr "Lösche LDAP-Gruppennamenzuordnung" #: templates/settings.php:111 msgid "Test Configuration" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index 41721aaee38..c47c7321512 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 20:40+0000\n" -"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-04 10:31+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 4069a7177bc..d489d0a5778 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -232,8 +232,8 @@ msgstr "Δεν καθορίστηκε ο τύπος του αντικειμέν #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Σφάλμα" @@ -253,7 +253,7 @@ msgstr "Κοινόχρηστα" msgid "Share" msgstr "Διαμοιρασμός" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" @@ -289,87 +289,87 @@ msgstr "Προστασία συνθηματικού" msgid "Password" msgstr "Συνθηματικό" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Αποστολή συνδέσμου με email " -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Αποστολή" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Ορισμός ημ. λήξης" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Ημερομηνία λήξης" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Διαμοιρασμός μέσω email:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Δεν βρέθηκε άνθρωπος" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Ξαναμοιρασμός δεν επιτρέπεται" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Διαμοιρασμός του {item} με τον {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "δυνατότητα αλλαγής" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "έλεγχος πρόσβασης" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "δημιουργία" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "ενημέρωση" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "διαγραφή" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Αποστολή..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Το Email απεστάλη " @@ -472,7 +472,7 @@ msgstr "Δεν επιτρέπεται η πρόσβαση" msgid "Cloud not found" msgstr "Δεν βρέθηκε νέφος" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -483,10 +483,6 @@ msgid "" "Cheers!" msgstr "Γεια σας,\n\nσας ενημερώνουμε ότι ο %s διαμοιράστηκε μαζί σας το %s.\nΔείτε το: %s\n\nΓεια χαρά!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Επεξεργασία κατηγοριών" @@ -579,12 +575,12 @@ msgstr "Διακομιστής βάσης δεδομένων" msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Αποσύνδεση" @@ -618,7 +614,7 @@ msgstr "Είσοδος" msgid "Alternative Logins" msgstr "Εναλλακτικές Συνδέσεις" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/el/files.po b/l10n/el/files.po index 0c9f5208df4..2478ec01dd4 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" +"Last-Translator: Efstathios Iosifidis <iefstathios@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" @@ -28,54 +28,54 @@ msgstr "Αδυναμία μετακίνησης του %s - υπάρχει ήδ msgid "Could not move %s" msgstr "Αδυναμία μετακίνησης του %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Το ανεβασμένο αρχείο υπερβαίνει το MAX_FILE_SIZE που ορίζεται στην HTML φόρμα" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." @@ -330,19 +330,19 @@ msgstr "Τρέχουσα ανίχνευση" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "κατάλογος" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "κατάλογοι" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "αρχείο" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "αρχεία" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index c3a6187c733..684d9d810ea 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -65,13 +65,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 679092695d8..87b702ff997 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: KAT.RAT12 <spanish.katerina@gmail.com>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index cbb4fd3f4fe..8529d7c707f 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Συνθηματικό" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Καταχώρηση" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Λήψη" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Μεταφόρτωση" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 8501f61d7df..2581efa1793 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 2723ec84d4d..2a74bdc6c1d 100644 --- a/l10n/el/lib.po +++ b/l10n/el/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Εφαρμογές" msgid "Admin" msgstr "Διαχειριστής" +#: defaults.php:33 +msgid "web services under your control" +msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Η λήψη ZIP απενεργοποιήθηκε." diff --git a/l10n/el/settings.po b/l10n/el/settings.po index c429cfde78e..3a50c65fba5 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -170,15 +170,15 @@ msgstr "Σφάλμα δημιουργίας χρήστη" msgid "A valid password must be provided" msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__όνομα_γλώσσας__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Προειδοποίηση Ασφαλείας" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -187,36 +187,36 @@ msgid "" " webserver document root." msgstr "Ο κατάλογος data και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess που παρέχει το ownCloud δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος data να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο data έξω από τον κατάλογο του διακομιστή." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Ρύθμιση Προειδοποίησης" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Ελέγξτε ξανά τις <a href='%s'>οδηγίες εγκατάστασης</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Η ενοτητα 'fileinfo' λειπει" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. " -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Η μετάφραση δεν δουλεύει" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -224,11 +224,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Αυτός ο ownCloud διακομιστης δεν μπορείτε να εφαρμοσει το σύνολο τοπικής προσαρμογής συστημάτων στο %s. Αυτό σημαίνει ότι μπορεί να υπάρξουν προβλήματα με ορισμένους χαρακτήρες σε ονόματα αρχείων. Σας συνιστούμε να εγκαταστήσετε τις απαραίτητες συσκευασίες στο σύστημά σας για να υποστηρίχθει το %s. " -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Η σύνδεση στο διαδίκτυο δεν δουλεύει" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -238,102 +238,102 @@ msgid "" " of ownCloud." msgstr "Αυτός ο διακομιστής ownCloud δεν έχει σύνδεση στο Διαδίκτυο. Αυτό σημαίνει ότι ορισμένα από τα χαρακτηριστικά γνωρίσματα όπως η τοποθέτηση εξωτερικής αποθήκευσης, οι κοινοποιήσεις σχετικά με ανανεωσεις, ή εγκατάσταση 3ων εφαρμογές δεν λειτουργούν. Η πρόσβαση σε αρχεία και η αποστολή μηνυμάτων ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην λειτουργεί. Σας προτείνουμε να σύνδεθειτε στο διαδικτυο αυτό τον διακομιστή, εάν θέλετε να έχετε όλα τα χαρακτηριστικά του ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται" -#: templates/admin.php:111 +#: templates/admin.php:113 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 είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Διαμοιρασμός" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Ενεργοποίηση API Διαμοιρασμού" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Να επιτρέπονται σύνδεσμοι" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Ασφάλεια" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Επιβολή χρήσης HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Επιβολή στους πελάτες να συνδεθούν στο ownCloud μέσω μιας κρυπτογραφημένης σύνδεσης." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Παρακαλώ συνδεθείτε με το ownCloud μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή SSL. " -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Καταγραφές" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -391,72 +391,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Εμπορική Υποστήριξη" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Λήψη της εφαρμογής για συγχρονισμό των αρχείων σας" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Προβολή Πρώτης Εκτέλεσης Οδηγού πάλι" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Χρησιμοποιήσατε <strong>%s</strong> από διαθέσιμα <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Συνθηματικό" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Το συνθηματικό σας έχει αλλάξει" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Τρέχων συνθηματικό" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Νέο συνθηματικό" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Αλλαγή συνθηματικού" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Όνομα εμφάνισης" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Ηλ. ταχυδρομείο" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Γλώσσα" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Βοηθήστε στη μετάφραση" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index a93197fa90a..5fd8754aabb 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index d3141f9dd8b..80b5bdf950a 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/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: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -247,7 +247,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -283,87 +283,87 @@ msgstr "" msgid "Password" msgstr "Passcode" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -466,7 +466,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "web services under your control" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -573,12 +569,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -612,7 +608,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 6cab7182f14..7e09bedeffb 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/en@pirate/files_encryption.po b/l10n/en@pirate/files_encryption.po index 0a1f6226bdc..c0cec032f05 100644 --- a/l10n/en@pirate/files_encryption.po +++ b/l10n/en@pirate/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index ff7030281f7..d09b9032a02 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -19,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Secret Code" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Submit" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s shared the folder %s with you" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s shared the file %s with you" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Download" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "No preview available for" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index 8f2d8e45d70..c41a9363909 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 00:30+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "web services under your control" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 5a5170ced62..7a6e09a0d37 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -227,8 +227,8 @@ msgstr "Ne indikiĝis tipo de la objekto." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Eraro" @@ -248,7 +248,7 @@ msgstr "Dividita" msgid "Share" msgstr "Kunhavigi" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -284,87 +284,87 @@ msgstr "Protekti per pasvorto" msgid "Password" msgstr "Pasvorto" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Retpoŝti la ligilon al ulo" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Sendi" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Agordi limdaton" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Limdato" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Kunhavigi per retpoŝto:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Ne troviĝis gento" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Rekunhavigo ne permesatas" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Kunhavigita en {item} kun {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Malkunhavigi" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "povas redakti" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "alirkontrolo" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "krei" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "ĝisdatigi" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "forigi" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "kunhavigi" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" @@ -467,7 +467,7 @@ msgstr "Aliro estas malpermesata" msgid "Cloud not found" msgstr "La nubo ne estas trovita" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "Saluton:\n\nNi nur sciigas vin, ke %s kunhavigis %s kun vi.\nVidu ĝin: %s\n\nĜis!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "TTT-servoj regataj de vi" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Redakti kategoriojn" @@ -574,12 +570,12 @@ msgstr "Datumbaza gastigo" msgid "Finish setup" msgstr "Fini la instalon" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s haveblas. Ekhavi pli da informo pri kiel ĝisdatigi." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Elsaluti" @@ -613,7 +609,7 @@ msgstr "Ensaluti" msgid "Alternative Logins" msgstr "Alternativaj ensalutoj" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 8ab1fa1e7a1..bab45ceb447 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas" msgid "Could not move %s" msgstr "Ne eblis movi %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Ne estas eraro, la dosiero alŝutiĝis sukcese." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: " -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "la alŝutita dosiero nur parte alŝutiĝis" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Neniu dosiero alŝutiĝis." -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Mankas provizora dosierujo." -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Ne haveblas sufiĉa memoro" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Nevalida dosierujo." @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "dosiero" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "dosieroj" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index a2eef533795..c5864c36b14 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "La PHP-modulo OpenSSL ne instalitas." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 43558dac1fd..3c16f9ec42d 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index f964522bbd9..42de652378a 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Pasvorto" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Sendi" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s kunhavigis la dosierujon %s kun vi" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s kunhavigis la dosieron %s kun vi" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Elŝuti" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Alŝuti" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Ne haveblas antaŭvido por" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 4dd62c09b14..3b614ebfaef 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index d78eb3dd40b..4399a50d3e6 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplikaĵoj" msgid "Admin" msgstr "Administranto" +#: defaults.php:33 +msgid "web services under your control" +msgstr "TTT-servoj regataj de vi" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP-elŝuto estas malkapabligita." diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 4541949954f..4a30e551dfd 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Esperanto" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Sekureca averto" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Bonvolu duoble kontroli la <a href='%s'>gvidilon por instalo</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Kunhavigo" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Kapabligi API-on por Kunhavigo" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Kapabligi ligilojn" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Kapabligi uzantojn kunhavigi erojn kun la publiko perligile" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Kapabligi rekunhavigon" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Kapabligi uzantojn rekunhavigi erojn kunhavigitajn kun ili" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Kapabligi uzantojn kunhavigi kun ĉiu ajn" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Kapabligi uzantojn nur kunhavigi kun uzantoj el siaj grupoj" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Registronivelo" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Pli" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Malpli" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Eldono" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "Cimoraportejo" msgid "Commercial Support" msgstr "Komerca subteno" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Ekhavu la aplikaĵojn por sinkronigi viajn dosierojn" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Vi uzas <strong>%s</strong> el la haveblaj <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Pasvorto" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Via pasvorto ŝanĝiĝis" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Ne eblis ŝanĝi vian pasvorton" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Nuna pasvorto" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nova pasvorto" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Ŝanĝi la pasvorton" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Retpoŝto" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Via retpoŝta adreso" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Enigu retpoŝtadreson por kapabligi pasvortan restaŭron" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Lingvo" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Helpu traduki" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Uzu ĉi tiun adreson por konekti al via ownCloud vian dosieradministrilon" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 9cab28f48b1..1bfce46442d 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index 3821613effa..d7acaeaeacf 100644 --- a/l10n/es/core.po +++ b/l10n/es/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: saskarip <saskarip@gmail.com>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: I Robot <owncloud-bot@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" @@ -232,8 +232,8 @@ msgstr "El tipo de objeto no está especificado." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Error" @@ -253,7 +253,7 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Error mientras comparte" @@ -289,87 +289,87 @@ msgstr "Protección con contraseña" msgid "Password" msgstr "Contraseña" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Permitir Subida Pública" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Enviar enlace por correo electrónico a una persona" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Enviar" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Establecer fecha de caducidad" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Fecha de caducidad" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Compartir por correo electrónico:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "puede editar" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "control de acceso" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "crear" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "actualizar" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "eliminar" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "compartir" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Correo electrónico enviado" @@ -472,7 +472,7 @@ msgstr "Acceso prohibido" msgid "Cloud not found" msgstr "No se encuentra la nube" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -483,10 +483,6 @@ msgid "" "Cheers!" msgstr "Oye,⏎ sólo te hago saber que %s compartido %s contigo.⏎ Míralo: %s ⏎Disfrutalo!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Servicios web bajo su control" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar categorías" @@ -579,12 +575,12 @@ msgstr "Host de la base de datos" msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s esta disponible. Obtener mas información de como actualizar." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Salir" @@ -618,7 +614,7 @@ msgstr "Entrar" msgid "Alternative Logins" msgstr "Inicios de sesión alternativos" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/es/files.po b/l10n/es/files.po index 2eb801f2e51..b26976a53a8 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -5,14 +5,15 @@ # Translators: # Art O. Pal <artopal@fastmail.fm>, 2013 # ggam <ggam@brainleakage.com>, 2013 +# mikelanabitarte <mikelanabitarte@gmail.com>, 2013 # saskarip <saskarip@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" +"Last-Translator: mikelanabitarte <mikelanabitarte@gmail.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" @@ -30,54 +31,54 @@ msgstr "No se pudo mover %s - Un archivo con ese nombre ya existe." msgid "Could not move %s" msgstr "No se pudo mover %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Incapaz de crear directorio de subida." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Token Inválido" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "No hay ningún error, el archivo se ha subido con éxito" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo subido sobrepasa la directiva upload_max_filesize en php.ini" -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Directorio inválido." @@ -234,7 +235,7 @@ msgstr "{count} archivos" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s no se pudo renombrar" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -332,19 +333,19 @@ msgstr "Escaneo actual" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "carpeta" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "carpetas" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "archivo" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "archivos" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index dccd78a9b9e..fbcbc4e2fe1 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -5,6 +5,8 @@ # Translators: # asaez <asaez@asaez.eu>, 2013 # gmoriello <gmoriello@gmail.com>, 2013 +# mikelanabitarte <mikelanabitarte@gmail.com>, 2013 +# Korrosivo <yo@rubendelcampo.es>, 2013 # saskarip <saskarip@gmail.com>, 2013 # William Díaz <wdiazux@gmail.com>, 2013 # xhiena <xhiena@gmail.com>, 2013 @@ -12,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 07:50+0000\n" +"Last-Translator: Korrosivo <yo@rubendelcampo.es>\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" @@ -64,17 +66,18 @@ msgid "" "ownCloud system (e.g. your corporate directory). You can update your private" " key password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "El módulo OpenSSL de PHP no está instalado." +msgid "Missing requirements." +msgstr "Requisitos incompletos." #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Por favor pida al administrador de su servidor que le instale el módulo. De momento la aplicación de cifrado está deshabilitada." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada." #: js/settings-admin.js:11 msgid "Saving..." @@ -121,11 +124,11 @@ msgstr "Cambiar la contraseña de la clave de recuperación" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "Contraseña de la antigua clave de recuperación" +msgstr "Antigua clave de recuperación" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "Contraseña de la nueva clave de recuperación" +msgstr "Nueva clave de recuperación" #: templates/settings-admin.php:53 msgid "Change Password" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 8e97430bdef..ec14ee44d6a 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Korrosivo <yo@rubendelcampo.es>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: Korrosivo <yo@rubendelcampo.es>\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" @@ -19,7 +20,7 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "Acceso garantizado" +msgstr "Acceso concedido" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" @@ -27,11 +28,11 @@ msgstr "Error configurando el almacenamiento de Dropbox" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "Garantizar acceso" +msgstr "Conceder acceso" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "Por favor , proporcione un secreto y una contraseña válida de la app Dropbox." +msgstr "Por favor, proporcione un una clave válida de la app Dropbox y una clave secreta." #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" @@ -55,7 +56,7 @@ msgid "" "<b>Warning:</b> The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "<b>Advertencia:</b> El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale." +msgstr "<b>Advertencia:</b> El soporte de Curl en PHP no está activado ni instalado. El montado de ownCloud, WebDAV o GoogleDrive no es posible. Pida al administrador de su sistema que lo instale." #: templates/settings.php:3 msgid "External Storage" @@ -108,7 +109,7 @@ msgstr "Eliminar" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "Habilitar almacenamiento de usuario externo" +msgstr "Habilitar almacenamiento externo de usuario" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" @@ -116,7 +117,7 @@ msgstr "Permitir a los usuarios montar su propio almacenamiento externo" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "Raíz de certificados SSL " +msgstr "Certificados raíz SSL" #: templates/settings.php:159 msgid "Import Root Certificate" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index efc3a8a7733..f1765246644 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Korrosivo <yo@rubendelcampo.es>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: Korrosivo <yo@rubendelcampo.es>\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" @@ -18,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "La contraseña introducida es errónea. Inténtelo de nuevo." + +#: templates/authenticate.php:7 msgid "Password" msgstr "Contraseña" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Enviar" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s contigo" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el fichero %s contigo" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Descargar" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Subir" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "No hay vista previa disponible para" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index a126a312826..fb926e2fdc9 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Korrosivo <yo@rubendelcampo.es>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: Korrosivo <yo@rubendelcampo.es>\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" @@ -29,7 +30,7 @@ msgstr "No se puede restaurar %s" #: js/trash.js:7 js/trash.js:97 msgid "perform restore operation" -msgstr "Restaurar" +msgstr "restaurar" #: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 msgid "Error" @@ -37,7 +38,7 @@ msgstr "Error" #: js/trash.js:34 msgid "delete file permanently" -msgstr "Eliminar archivo permanentemente" +msgstr "eliminar archivo permanentemente" #: js/trash.js:123 msgid "Delete permanently" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 89307a3c01e..1277356dd13 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 07:42+0000\n" +"Last-Translator: Korrosivo <yo@rubendelcampo.es>\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" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 0d3bd8062a1..30b2bf362cb 100644 --- a/l10n/es/lib.po +++ b/l10n/es/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplicaciones" msgid "Admin" msgstr "Administración" +#: defaults.php:33 +msgid "web services under your control" +msgstr "Servicios web bajo su control" + #: files.php:210 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 08f72312438..53a0790b3ff 100644 --- a/l10n/es/settings.po +++ b/l10n/es/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: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -169,15 +169,15 @@ msgstr "Error al crear usuario" msgid "A valid password must be provided" msgstr "Se debe usar una contraseña valida" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Castellano" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -186,36 +186,36 @@ msgid "" " webserver document root." msgstr "Su directorio de datos y sus archivos son probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no está funcionando. Le recomendamos encarecidamente que configure su servidor web de manera que el directorio de datos no esté accesible, o mueva el directorio de datos fuera del documento raíz de su servidor web." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Advertencia de configuración" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Modulo 'fileinfo' perdido" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "El modulo PHP 'fileinfo' no se encuentra. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección del mime-type" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "La configuración regional no está funcionando" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -223,11 +223,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Este servidor ownCloud no puede establecer la configuración regional a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos. Le recomendamos que instale los paquetes requeridos en su sistema para soportar el %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "La conexion a internet no esta funcionando" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -237,102 +237,102 @@ msgid "" " of ownCloud." msgstr "Este servidor ownCloud no tiene conexion de internet. Esto quiere decir que algunas caracteristicas como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones o la instalacion de apps de terceros no funcionarán. Es posible que no pueda acceder remotamente a los archivos ni enviar notificaciones por correo. Sugerimos habilitar la conexión a Internet para este servidor si quiere disfrutar de todas las características de ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:111 +#: templates/admin.php:113 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 es un sistema webcron registrado. Llama a la página cron.php en la raíz de owncloud una vez por minuto sobre http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Utilizar el servicio cron del sistema. Llama al archivo cron.php en la carpeta de owncloud a través de un cronjob del sistema una vez por minuto." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Activar API de Compartición" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones utilizar la API de Compartición" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir elementos al público con enlaces" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Permitir re-compartición" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir elementos ya compartidos con ellos mismos" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con todo el mundo" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Fuerza la conexión de los clientes a ownCloud con una conexión cifrada." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Por favor, conecte esta instancia de ownCloud vía HTTPS para activar o desactivar la aplicación de SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Registro" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Más" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Menos" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versión" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -390,72 +390,72 @@ msgstr "Rastreador de fallos" msgid "Commercial Support" msgstr "Soporte comercial" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Obtener las aplicaciones para sincronizar sus archivos" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Mostrar asistente para iniciar otra vez" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Ha usado <strong>%s</strong> de los <strong>%s</strong> disponibles" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Su contraseña ha sido cambiada" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "No se ha podido cambiar su contraseña" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nueva contraseña" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nombre a mostrar" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Su dirección de correo" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Escriba una dirección de correo electrónico para restablecer la contraseña" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Idioma" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Ayúdnos a traducir" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use esta dirección para conectarse a su cuenta de ownCloud en el administrador de archivos" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index ce367128e95..a2152e191ef 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: xhiena <xhiena@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po index 5d60f41af1b..38bc6e5bb76 100644 --- a/l10n/es/user_webdavauth.po +++ b/l10n/es/user_webdavauth.po @@ -6,14 +6,14 @@ # Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013 # Art O. Pal <artopal@fastmail.fm>, 2012 # pggx999 <pggx999@gmail.com>, 2012 -# saskarip, 2013 +# saskarip <saskarip@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-17 02:02+0200\n" -"PO-Revision-Date: 2013-06-16 07:50+0000\n" -"Last-Translator: saskarip\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 08:08+0000\n" +"Last-Translator: Korrosivo <yo@rubendelcampo.es>\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" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index cc2f0a7bafb..aa18899468d 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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "El tipo de objeto no está especificado. " #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Error" @@ -247,7 +247,7 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Error al compartir" @@ -283,87 +283,87 @@ msgstr "Proteger con contraseña " msgid "Password" msgstr "Contraseña" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Enviar el enlace por e-mail." -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Mandar" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Asignar fecha de vencimiento" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Fecha de vencimiento" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Compartir a través de e-mail:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "No se encontraron usuarios" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "No se permite volver a compartir" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "podés editar" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "control de acceso" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "crear" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "actualizar" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "borrar" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "compartir" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "e-mail mandado" @@ -466,7 +466,7 @@ msgstr "Acceso prohibido" msgid "Cloud not found" msgstr "No se encontró ownCloud" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "Hola,\n\nSimplemente te informo que %s compartió %s con vos.\nMiralo acá: %s\n\n¡Chau!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "servicios web que controlás" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar categorías" @@ -573,12 +569,12 @@ msgstr "Huésped de la base de datos" msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está disponible. Obtené más información sobre cómo actualizar." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Cerrar la sesión" @@ -612,7 +608,7 @@ msgstr "Iniciar sesión" msgid "Alternative Logins" msgstr "Nombre alternativos de usuarios" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index a3af3bb938e..4af37c7c9b0 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "No se pudo mover %s - Un archivo con este nombre ya existe" msgid "Could not move %s" msgstr "No se pudo mover %s " -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "No hay errores, el archivo fue subido con éxito" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "El archivo fue subido parcialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "No se subió ningún archivo " -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Error en la carpera temporal" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "No hay suficiente capacidad de almacenamiento" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Directorio invalido." @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "archivo" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "archivos" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index 495c0b33b28..f52bef53bf0 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -63,14 +63,15 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "El módulo OpenSSL para PHP no está instalado." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Pedile al administrador del servidor que instale el módulo. Por ahora la App de encriptación está deshabilitada." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 8a975613d93..be3a5eea2be 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+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" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 471217e1af6..770e65e3805 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Contraseña" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Enviar" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s con vos" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el archivo %s con vos" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Descargar" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Subir" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "La vista preliminar no está disponible para" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 4d829f183c8..4dd17bbd53c 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index c4471cd9ad4..f21762f9dff 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplicaciones" msgid "Admin" msgstr "Administración" +#: defaults.php:33 +msgid "web services under your control" +msgstr "servicios web que controlás" + #: files.php:210 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index d1a176b6aef..2ab164d7b06 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+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" @@ -167,15 +167,15 @@ msgstr "Error creando usuario" msgid "A valid password must be provided" msgstr "Debe ingresar una contraseña válida" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Castellano (Argentina)" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " 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/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Alerta de Configuración" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Por favor, comprobá nuevamente la <a href='%s'>guía de instalación</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "El módulo 'fileinfo' no existe" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "\"Locale\" no está funcionando" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "El servidor ownCloud no puede asignar la localización de sistema a %s. Esto puede provocar que existan problemas con algunos caracteres en los nombres de los archivos. Te sugerimos que instales los paquetes necesarios en tu sistema para dar soporte a %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "La conexión a Internet no esta funcionando. " -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Este servidor ownCloud no tiene una conexión a internet que funcione. Esto significa que alguno de sus servicios, tales como montar dispositivos externos, notificación de actualizaciones o instalar Apps de otros desarrolladores no funcionan. Puede ser que tampoco puedas acceder a archivos remotos y mandar e-mails. Te sugerimos que actives una conexión a internet si querés estas características en ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Ejecutá una tarea con cada pagina cargada." -#: templates/admin.php:111 +#: templates/admin.php:113 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 está registrado como un servicio webcron. Llamar la página cron.php en la raíz de ownCloud una vez al minuto sobre http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Usar el servicio de sistema cron. Llama al archivo cron.php en la carpeta de ownCloud a través del sistema cronjob cada un minuto." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Habilitar Share API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones usar la Share API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir enlaces públicos" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Permitir Re-Compartir" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Permite a los usuarios volver a compartir items que les fueron compartidos" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquiera." -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los de sus mismos grupos" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Forzar a los clientes conectar a ownCloud vía conexión encriptada." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Por favor conectate a este ownCloud vía HTTPS para habilitar o deshabilitar el SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nivel de Log" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Más" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Menos" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versión" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -388,72 +388,72 @@ msgstr "Informar errores" msgid "Commercial Support" msgstr "Soporte comercial" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Obtené Apps para sincronizar tus archivos" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Mostrar de nuevo el asistente de primera ejecución" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Usás <strong>%s</strong> de los <strong>%s</strong> disponibles" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Tu contraseña fue cambiada" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "No fue posible cambiar tu contraseña" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nueva contraseña:" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nombre a mostrar" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "e-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Tu dirección de e-mail" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Escribí una dirección de e-mail para restablecer la contraseña" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Idioma" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Ayudanos a traducir" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usá esta dirección para conectarte con ownCloud en tu Administrador de Archivos" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index c9993c507ce..5c571c14350 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+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" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index d4530b85970..754f5e97f80 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s jagas sinuga »%s«" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -227,8 +227,8 @@ msgstr "Objekti tüüp pole määratletud." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Viga" @@ -248,7 +248,7 @@ msgstr "Jagatud" msgid "Share" msgstr "Jaga" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -284,87 +284,87 @@ msgstr "Parooliga kaitstud" msgid "Password" msgstr "Parool" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Luba avalik üleslaadimine" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Saada link isikule e-postiga" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Saada" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Määra aegumise kuupäev" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Aegumise kuupäev" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Jaga e-postiga:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Ühtegi inimest ei leitud" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Edasijagamine pole lubatud" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Jagatud {item} kasutajaga {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "saab muuta" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "ligipääsukontroll" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "loo" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "uuenda" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "kustuta" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "jaga" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-kiri on saadetud" @@ -413,11 +413,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Sinu failid on krüpteeritud. Kui sa pole taastamise võtit veel määranud, siis pole präast parooli taastamist mingit võimalust sinu andmeid tagasi saada. Kui sa pole kindel, mida teha, siis palun väta enne jätkamist ühendust oma administaatoriga. Oled sa kindel, et sa soovid jätkata?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Jah, ma tõesti soovin oma parooli praegu nullida" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -467,7 +467,7 @@ msgstr "Ligipääs on keelatud" msgid "Cloud not found" msgstr "Pilve ei leitud" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,11 +476,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" - -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "veebitenused sinu kontrolli all" +msgstr "Hei,\n\nlihtsalt annan sulle teada, et %s jagas sinuga %s.\nVaata seda siin: %s\n\nTervitused!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -574,12 +570,12 @@ msgstr "Andmebaasi host" msgid "Finish setup" msgstr "Lõpeta seadistamine" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s on saadaval. Vaata lähemalt kuidas uuendada." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Logi välja" @@ -613,12 +609,12 @@ msgstr "Logi sisse" msgid "Alternative Logins" msgstr "Alternatiivsed sisselogimisviisid" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " "href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "" +msgstr "Hei,<br><br>lihtsalt annan sulle teada, et %s jagas sinuga »%s«.<br><a href=\"%s\">Vaata seda!</a><br><br>Tervitades!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 64f296c009e..a71ffa45288 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+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" @@ -29,54 +29,54 @@ msgstr "Ei saa liigutada faili %s - samanimeline fail on juba olemas" msgid "Could not move %s" msgstr "%s liigutamine ebaõnnestus" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." -msgstr "" +msgstr "Üleslaadimiste kausta määramine ebaõnnestus." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Vigane kontrollkood" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Ühtegi tõrget polnud, fail on üles laetud" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Üleslaetava faili suurus ületab php.ini poolt määratud upload_max_filesize suuruse:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Saadaval pole piisavalt ruumi" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Vigane kaust." @@ -233,7 +233,7 @@ msgstr "{count} faili" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s ümbernimetamine ebaõnnestus" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -331,19 +331,19 @@ msgstr "Praegune skannimine" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "kaust" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "kaustad" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fail" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "faili" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index fb7e4c9a5dc..b5851a1bb9d 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 09:30+0000\n" +"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\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" @@ -47,13 +47,13 @@ msgstr "Ei suutnud vahetada parooli. Võib-olla on vana parool valesti sisestatu #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "Privaatse võtme parool edukalt uuendatud." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige." #: files/error.php:7 msgid "" @@ -61,17 +61,18 @@ msgid "" "ownCloud system (e.g. your corporate directory). You can update your private" " key password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "" +msgid "Missing requirements." +msgstr "Nõutavad on puudu." #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "" +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "Veendu, et kasutusel oleks PHP 5.3.3 või uuem versioon ning kasutusel oleks OpenSSL PHP laiendus ja see on korrektselt seadistatud. Hetkel on krüpteerimise rakenduse kasutamine peatatud." #: js/settings-admin.js:11 msgid "Saving..." @@ -81,15 +82,15 @@ msgstr "Salvestamine..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "Sinu privaatne võti ei ole õige. Võib-olla on parool vahetatud süsteemi väliselt." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Saad avada oma privaatse võtme oma" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "isiklikes seadetes" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -98,11 +99,11 @@ msgstr "Krüpteerimine" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Luba taastevõti (võimada kasutaja failide taastamine parooli kaotuse puhul):" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Taastevõtme parool" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -114,15 +115,15 @@ msgstr "Väljalülitatud" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Muuda taastevõtme parooli:" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Vana taastevõtme parool" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Uus taastevõtme parool" #: templates/settings-admin.php:53 msgid "Change Password" @@ -130,39 +131,39 @@ msgstr "Muuda parooli" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Sinu privaatse võtme parool ei ühti enam sinu sisselogimise parooliga:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Kui sa ei mäleta oma vana parooli, siis palu oma süsteemihalduril taastada ligipääs failidele." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Vana sisselogimise parool" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Praegune sisselogimise parool" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Uuenda privaatse võtme parooli" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Luba parooli taaste:" #: templates/settings-personal.php:47 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Valiku lubamine võimaldab taastada ligipääsu krüpteeritud failidele kui parooli kaotuse puhul" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 1d7ae7c892c..c9f176b9622 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+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" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 31bca9da833..88209aab9b0 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Rivo Zängov <eraser@eraser.ee>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+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" @@ -18,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "Parool on vale. Proovi uuesti." + +#: templates/authenticate.php:7 msgid "Password" msgstr "Parool" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Saada" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jagas sinuga kausta %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s jagas sinuga faili %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Lae alla" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Lae üles" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Eelvaadet pole saadaval" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 892915554b4..97601738739 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+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" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 1da12092f63..0dbbfd574b8 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -43,6 +43,10 @@ msgstr "Rakendused" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "veebitenused sinu kontrolli all" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP-ina allalaadimine on välja lülitatud." diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 81c2b2ef8f2..62a72b6f807 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Viga kasutaja loomisel" msgid "A valid password must be provided" msgstr "Sisesta nõuetele vastav parool" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Eesti" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Turvahoiatus" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, mida pakub ownCloud, ei toimi. Soovitame tungivalt veebiserveri seadistust selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi-juurkataloogist mujale." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Paigalduse hoiatus" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Moodul 'fileinfo' puudub" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Lokalisatsioon ei toimi" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "ownCloud server ei suuda seadistada süsteemi lokalisatsiooni %s. See tähendab, et võib esineda probleeme teatud tähemärkidega failide nimedes. Soovitame tungivalt paigaldada süsteemi vajalikud pakid toetamaks %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Internetiühendus ei toimi" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "ownCloud serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Käivita toiming lehe laadimisel" -#: templates/admin.php:111 +#: templates/admin.php:113 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 on registreeritud webcron teenusena. Lae cron.php lehte owncloud veebikataloogist iga minut üle http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Kasuta süsteemi cron teenust. Käivita cron.php fail owncloud veebikataloogist kasutades süsteemi crontab toimingut iga minut." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Jagamine" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Luba Share API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Luba rakendustel kasutada Share API-t" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Luba lingid" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Luba kasutajatel jagada kirjeid avalike linkidega" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Luba edasijagamine" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Luba kasutajatel kõigiga jagada" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Turvalisus" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Sunni peale HTTPS-i kasutamine" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Sunnib kliente ownCloudiga ühenduma krüpteeritult." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Palun ühendu selle ownCloud instantsiga üle HTTPS või keela SSL kasutamine." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Logi" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Logi tase" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Rohkem" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Vähem" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versioon" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -388,72 +388,72 @@ msgstr "Vigade nimekiri" msgid "Commercial Support" msgstr "Tasuline kasutajatugi" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Hangi rakendusi failide sünkroniseerimiseks" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Näita veelkord Esmase Käivituse Juhendajat" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Kasutad <strong>%s</strong> saadavalolevast <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parool" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Sinu parooli on muudetud" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Sa ei saa oma parooli muuta" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Praegune parool" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Uus parool" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Muuda parooli" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Näidatav nimi" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-post" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Sinu e-posti aadress" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Keel" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Aita tõlkida" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Kasuta seda aadressi ühendamaks oma ownCloudi failihalduriga" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 721492757d3..6f0575b311e 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:06+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/user_webdavauth.po b/l10n/et_EE/user_webdavauth.po index 21fbf41a04f..3c9471a2734 100644 --- a/l10n/et_EE/user_webdavauth.po +++ b/l10n/et_EE/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 09:20+0000\n" +"Last-Translator: pisike.sipelgas <pisike.sipelgas@gmail.com>\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" @@ -25,7 +25,7 @@ msgstr "WebDAV autentimine" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL: " #: templates/settings.php:7 msgid "" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 66d708a35c7..f211559a385 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "Objetu mota ez dago zehaztuta." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Errorea" @@ -246,7 +246,7 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -282,87 +282,87 @@ msgstr "Babestu pasahitzarekin" msgid "Password" msgstr "Pasahitza" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Postaz bidali lotura " -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Bidali" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Ezarri muga data" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Muga data" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Elkarbanatu eposta bidez:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Ez da inor aurkitu" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Berriz elkarbanatzea ez dago baimendua" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "{user}ekin {item}-n elkarbanatuta" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "editatu dezake" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "sarrera kontrola" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "sortu" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "eguneratu" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "ezabatu" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "elkarbanatu" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Eposta bidalia" @@ -465,7 +465,7 @@ msgstr "Sarrera debekatuta" msgid "Cloud not found" msgstr "Ez da hodeia aurkitu" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "web zerbitzuak zure kontrolpean" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editatu kategoriak" @@ -572,12 +568,12 @@ msgstr "Datubasearen hostalaria" msgid "Finish setup" msgstr "Bukatu konfigurazioa" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Saioa bukatu" @@ -611,7 +607,7 @@ msgstr "Hasi saioa" msgid "Alternative Logins" msgstr "Beste erabiltzaile izenak" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 1191fbb6a16..61703fc05bb 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da" msgid "Could not move %s" msgstr "Ezin dira fitxategiak mugitu %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Ez da errorerik egon, fitxategia ongi igo da" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat bakarrik igo da" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Aldi bateko karpeta falta da" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Ez dago behar aina leku erabilgarri," -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Baliogabeko karpeta." @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fitxategia" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "fitxategiak" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index cb8745533ee..cc5d993d62c 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 10:50+0000\n" -"Last-Translator: Piarres Beobide <pi@beobide.net>\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,13 +64,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "OpenSSL PHP modulua ez dago instalaturik." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 83c35071beb..dd1e6a1fcf4 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 10:20+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Piarres Beobide <pi@beobide.net>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index a124307bdd6..033c39723bd 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Pasahitza" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Bidali" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%sk zurekin %s karpeta elkarbanatu du" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%sk zurekin %s fitxategia elkarbanatu du" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Deskargatu" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Igo" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Ez dago aurrebista eskuragarririk hauentzat " diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 07b8b529a08..1d90038bfa8 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 20d0c8ad1f1..d56a988e119 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Aplikazioak" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "web zerbitzuak zure kontrolpean" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP deskarga ez dago gaituta." diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 33078d404ef..62b96a7e452 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 10:10+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: Piarres Beobide <pi@beobide.net>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Errore bat egon da erabiltzailea sortzean" msgid "A valid password must be provided" msgstr "Baliozko pasahitza eman behar da" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Euskera" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Segurtasun abisua" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Konfiguratu Abisuak" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Mesedez begiratu <a href='%s'>instalazio gidak</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "'fileinfo' Modulua falta da" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Lokala ez dabil" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "OwnClud zerbitzari honek ezin du sistemaren lokala %s-ra ezarri. Honek fitxategien izenetan karaktere batzuekin arazoak egon daitekeela esan nahi du. Aholkatzen dizugu zure sistema %s lokalea onartzeko beharrezkoak diren paketeak instalatzea." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Interneteko konexioak ez du funtzionatzen" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "ownCloud zerbitzari honen interneteko konexioa ez dabil. Honek esan nahi du kanpoko biltegiratze zerbitzuak, eguneraketen informazioa edo bestelako aplikazioen instalazioa bezalako programek ez dutela funtzionatuko. Urrunetik fitxategiak eskuratzea eta e-postak bidaltzea ere ezinezkoa izan daiteke. onwCloud-en aukera guztiak erabili ahal izateko zerbitzari honetan interneteko konexioa gaitzea aholkatzen dizugu." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Exekutatu zeregin bat orri karga bakoitzean" -#: templates/admin.php:111 +#: templates/admin.php:113 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 webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Erabili sistemaren cron zerbitzua. Deitu cron.php fitxategia owncloud karpetan minuturo sistemaren cron lan baten bidez." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Partekatzea" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Gaitu Elkarbanatze APIa" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Baimendu loturak" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki elkarbanatzen" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Baimendu birpartekatzea" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Baimendu erabiltzaileak haiekin elkarbanatutako fitxategiak berriz ere elkarbanatzen" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Baimendu erabiltzaileak edonorekin elkarbanatzen" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Segurtasuna" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Behartu HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Bezeroak konexio enkriptatu baten bidez ownCloud-era konektatzera behartzen du." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Mesedez konektatu ownCloud honetara HTTPS bidez SSL-ren beharra gaitu edo ezgaitzeko" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Erregistro maila" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Gehiago" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,72 +387,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Babes komertziala" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Lortu aplikazioak zure fitxategiak sinkronizatzeko" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Erakutsi berriz Lehenengo Aldiko Morroia" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Dagoeneko <strong>%s</strong> erabili duzu eskuragarri duzun <strong>%s</strong>etatik" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Pasahitza" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Zere pasahitza aldatu da" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Ezin izan da zure pasahitza aldatu" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Uneko pasahitza" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Pasahitz berria" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Aldatu pasahitza" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Bistaratze Izena" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-posta" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Zure e-posta" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Hizkuntza" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Lagundu itzultzen" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 3667cefd982..5f8856c9c47 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 771e678b89e..cee0aa1c844 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miki_mika1362 <miki_mika1362@yahoo.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\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" @@ -20,7 +21,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s به اشتراک گذاشته شده است »%s« توسط شما" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -203,7 +204,7 @@ msgstr "منصرف شدن" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "خطا در بارگذاری قالب انتخاب کننده فایل" #: js/oc-dialogs.js:164 msgid "Yes" @@ -225,8 +226,8 @@ msgstr "نوع شی تعیین نشده است." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "خطا" @@ -246,7 +247,7 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراکگذاری" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" @@ -282,87 +283,87 @@ msgstr "نگهداری کردن رمز عبور" msgid "Password" msgstr "گذرواژه" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "اجازه آپلود عمومی" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "پیوند ایمیل برای شخص." -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "ارسال" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "تنظیم تاریخ انقضا" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "تاریخ انقضا" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "از طریق ایمیل به اشتراک بگذارید :" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "کسی یافت نشد" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "اشتراک گذاری مجدد مجاز نمی باشد" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "لغو اشتراک" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "می توان ویرایش کرد" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "کنترل دسترسی" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "ایجاد" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "به روز" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "پاک کردن" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "ایمیل ارسال شد" @@ -390,11 +391,11 @@ msgid "" "The link to reset your password has been sent to your email.<br>If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.<br>If it is not there ask your local administrator ." -msgstr "" +msgstr "لینک تنظیم مجدد رمز عبور به ایمیل شما ارسال شده است.<br>اگر آن رادر یک زمان مشخصی دریافت نکرده اید، لطفا هرزنامه/ پوشه های ناخواسته را بررسی کنید.<br>در صورت نبودن از مدیر خود بپرسید." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!<br>Did you make sure your email/username was right?" -msgstr "" +msgstr "درخواست رد شده است !<br> آیا مطمئن هستید که ایمیل/ نام کاربری شما صحیح میباشد ؟" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." @@ -411,11 +412,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "فایل های شما رمزگذاری شده اند. اگر شما کلید بازیابی را فعال نکرده اید، پس از راه اندازی مجدد رمزعبور هیچ راهی برای بازگشت اطلاعاتتان وجود نخواهد داشت.در صورت عدم اطمینان به انجام کار، لطفا ابتدا با مدیر خود تماس بگیرید. آیا واقعا میخواهید ادامه دهید ؟" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "بله، من اکنون میخواهم رمز عبور خود را مجددا راه اندازی کنم." #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -465,7 +466,7 @@ msgstr "اجازه دسترسی به مناطق ممنوعه را ندارید" msgid "Cloud not found" msgstr "پیدا نشد" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -474,11 +475,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" - -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "سرویس های تحت وب در کنترل شما" +msgstr "اینجا,⏎\n فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده %s توسط شما.⏎\nمشاهده آن : %s⏎\n⏎\nبه سلامتی!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -572,12 +569,12 @@ msgstr "هاست پایگاه داده" msgid "Finish setup" msgstr "اتمام نصب" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s در دسترس است. برای چگونگی به روز رسانی اطلاعات بیشتر را دریافت نمایید." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "خروج" @@ -611,12 +608,12 @@ msgstr "ورود" msgid "Alternative Logins" msgstr "ورود متناوب" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " "href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "" +msgstr "اینجا<br><br> فقط به شما اجازه میدهد که بدانید %s به اشتراک گذاشته شده»%s« توسط شما.<br><a href=\"%s\"> مشاهده آن!</a><br><br> به سلامتی!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index ac33ee98568..7865276de83 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miki_mika1362 <miki_mika1362@yahoo.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" +"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\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" @@ -27,54 +28,54 @@ msgstr "%s نمی تواند حرکت کند - در حال حاضر پرونده msgid "Could not move %s" msgstr "%s نمی تواند حرکت کند " -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." -msgstr "" +msgstr "قادر به تنظیم پوشه آپلود نمی باشد." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "رمز نامعتبر" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی نیست بارگذاری پرونده موفقیت آمیز بود" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است." -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "حداکثر حجم قابل بار گذاری از طریق HTML MAX_FILE_SIZE است" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "پرونده بارگذاری شده فقط تاحدودی بارگذاری شده" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "هیچ پروندهای بارگذاری نشده" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "فضای کافی در دسترس نیست" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." @@ -105,7 +106,7 @@ msgstr "URL نمی تواند خالی باشد." #: js/file-upload.js:238 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +msgstr "نام پوشه نامعتبر است. استفاده از 'به اشتراک گذاشته شده' متعلق به ownCloud میباشد." #: js/file-upload.js:267 js/file-upload.js:283 js/files.js:373 js/files.js:389 #: js/files.js:693 js/files.js:731 @@ -231,7 +232,7 @@ msgstr "{ شمار } فایل ها" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s نمیتواند تغییر نام دهد." #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -329,19 +330,19 @@ msgstr "بازرسی کنونی" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "پوشه" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "پوشه ها" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "پرونده" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "پرونده ها" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index 3a69ee6de27..5435dd5782b 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index fccf5d24193..c5a325c300a 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index b103f6b303c..c43b06e7c23 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miki_mika1362 <miki_mika1362@yahoo.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\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" @@ -18,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "رمزعبور اشتباه می باشد. دوباره امتحان کنید." + +#: templates/authenticate.php:7 msgid "Password" msgstr "گذرواژه" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "ثبت" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%sپوشه %s را با شما به اشتراک گذاشت" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%sفایل %s را با شما به اشتراک گذاشت" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "دانلود" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "بارگزاری" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "هیچگونه پیش نمایشی موجود نیست" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 62c9d22cc4d..bdf12399b9c 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index 19173539924..a288b3ab8a5 100644 --- a/l10n/fa/files_versions.po +++ b/l10n/fa/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miki_mika1362 <miki_mika1362@yahoo.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 12:50+0000\n" +"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\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" @@ -50,7 +51,7 @@ msgstr "هیچ مسیری مشخص نشده است" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "نسخه ها" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index a887236f279..d37876b6042 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miki_mika1362 <miki_mika1362@yahoo.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\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" @@ -41,6 +42,10 @@ msgstr " برنامه ها" msgid "Admin" msgstr "مدیر" +#: defaults.php:33 +msgid "web services under your control" +msgstr "سرویس های تحت وب در کنترل شما" + #: files.php:210 msgid "ZIP download is turned off." msgstr "دانلود به صورت فشرده غیر فعال است" @@ -59,7 +64,7 @@ msgstr "فایل های انتخاب شده بزرگتر از آن هستند ک #: helper.php:236 msgid "couldn't be determined" -msgstr "" +msgstr "نمیتواند مشخص شود" #: json.php:28 msgid "Application is not enabled" @@ -71,7 +76,7 @@ msgstr "خطا در اعتبار سنجی" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "رمز منقضی شده است. لطفا دوباره صفحه را بارگذاری نمایید." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" @@ -88,31 +93,31 @@ msgstr "تصاویر" #: setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s نام کاربری پایگاه داده را وارد نمایید." #: setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s نام پایگاه داده را وارد نمایید." #: setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s شما نباید از نقطه در نام پایگاه داده استفاده نمایید." #: setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "نام کاربری و / یا رمزعبور MS SQL معتبر نیست: %s" #: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 #: setup/postgresql.php:24 setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "شما نیاز به وارد کردن یک حساب کاربری موجود یا حساب مدیریتی دارید." #: setup/mysql.php:12 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "نام کاربری و / یا رمزعبور MySQL معتبر نیست." #: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 #: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 @@ -121,7 +126,7 @@ msgstr "" #: setup/postgresql.php:125 setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "خطای پایگاه داده: \"%s\"" #: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 #: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 @@ -134,28 +139,28 @@ msgstr "" #: setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "کاربرMySQL '%s'@'localhost' درحال حاضر موجود است." #: setup/mysql.php:86 msgid "Drop this user from MySQL" -msgstr "" +msgstr "این کاربر را از MySQL حذف نمایید." #: setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "کاربر'%s'@'%%' MySQL در حال حاضر موجود است." #: setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "" +msgstr "این کاربر را از MySQL حذف نمایید." #: setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "ارتباط اراکل نمیتواند برقرار باشد." #: setup/oci.php:41 setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "نام کاربری و / یا رمزعبور اراکل معتبر نیست." #: setup/oci.php:173 setup/oci.php:205 #, php-format @@ -164,15 +169,15 @@ msgstr "" #: setup/postgresql.php:23 setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "PostgreSQL نام کاربری و / یا رمزعبور معتبر نیست." #: setup.php:42 msgid "Set an admin username." -msgstr "" +msgstr "یک نام کاربری برای مدیر تنظیم نمایید." #: setup.php:45 msgid "Set an admin password." -msgstr "" +msgstr "یک رمزعبور برای مدیر تنظیم نمایید." #: setup.php:198 msgid "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 6bf568653e4..4333cf03a57 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# miki_mika1362 <miki_mika1362@yahoo.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" +"Last-Translator: miki_mika1362 <miki_mika1362@yahoo.com>\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" @@ -28,7 +29,7 @@ msgstr "خطا در اعتبار سنجی" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "نام نمایش شما تغییر یافته است." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" @@ -165,15 +166,15 @@ msgstr "خطا در ایجاد کاربر" msgid "A valid password must be provided" msgstr "رمز عبور صحیح باید وارد شود" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "اخطار امنیتی" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +183,36 @@ msgid "" " webserver document root." msgstr "احتمالاً فهرست و فایلهای شما از طریق اینترنت قابل دسترسی هستند. فایل با فرمت .htaccess که ownCloud اراده کرده است دیگر کار نمی کند. ما قویاً توصیه می کنیم که شما وب سرور خودتان را طوری تنظیم کنید که فهرست اطلاعات شما غیر قابل دسترسی باشند یا فهرست اطلاعات را به خارج از ریشه ی اصلی وب سرور انتقال دهید." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "هشدار راه اندازی" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "لطفاً دوباره <a href='%s'>راهنمای نصب</a>را بررسی کنید." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "ماژول 'fileinfo' از کار افتاده" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" -msgstr "" +msgstr "زبان محلی کار نمی کند." -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "این سرور ownCloud نمی تواند سیستم محلی را بر روی %s تنظیم کند.این به این معنی ست که ممکن است با کاراکترهای خاصی در نام فایل ها مشکل داشته باشد.ما اکیداً نصب کردن بسته های لازم را بر روی سیستم خودتان برای پشتیبانی %s توصیه می کنیم." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "اتصال اینترنت کار نمی کند" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +234,102 @@ msgid "" " of ownCloud." msgstr "این سرور OwnCloud ارتباط اینترنتی ندارد.این بدین معناست که بعضی از خصوصیات نظیر خارج کردن منبع ذخیره ی خارجی، اطلاعات در مورد بروزرسانی ها یا نصب برنامه های نوع 3ام کار نمی کنند.دسترسی به فایل ها از راه دور و ارسال آگاه سازی ایمیل ها ممکن است همچنان کار نکنند.اگرشما همه ی خصوصیات OwnCloud می خواهید ما پیشنهاد می کنیم تا ارتباط اینترنتی مربوط به این سرور را فعال کنید." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "اجرای یک وظیفه با هر بار بارگذاری صفحه" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "اشتراک گذاری" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "فعال کردن API اشتراک گذاری" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "اجازه ی لینک ها" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "مجوز اشتراک گذاری مجدد" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "اجازه به کاربران برای اشتراک گذاری دوباره با آنها" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "اجازه به کابران برای اشتراک گذاری با همه" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "امنیت" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "وادار کردن HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "وادار کردن مشتریان برای ارتباط با ownCloud از طریق رمزگذاری ارتباط" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "از طریق HTTPS به این نسخه از ownCloud متصل شوید تا بتوانید SSL را فعال یا غیر فعال نمایید." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" -msgstr "" +msgstr "سطح ورود" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "بیشتر" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "کمتر" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "نسخه" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +387,72 @@ msgstr "ردیاب باگ " msgid "Commercial Support" msgstr "پشتیبانی تجاری" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "برنامه ها را دریافت کنید تا فایل هایتان را همگام سازید" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "راهبری کمکی اجرای اول را دوباره نمایش بده" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "شما استفاده کردید از <strong>%s</strong> از میزان در دسترس <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "گذرواژه" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "رمز عبور شما تغییر یافت" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "ناتوان در تغییر گذرواژه" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "گذرواژه کنونی" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "گذرواژه جدید" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "تغییر گذر واژه" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "نام نمایشی" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "ایمیل" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "پست الکترونیکی شما" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "زبان" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "به ترجمه آن کمک کنید" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "از این نشانی برای اتصال به ownCloud خودتان در بخش مدیریت فایل خودتان استفاده کنید" @@ -465,13 +466,13 @@ msgstr "ایجاد کردن" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "" +msgstr "مدیریت بازیابی رمز عبور" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "در حین تغییر رمز عبور به منظور بازیابی فایل های کاربران، رمز عبور بازیابی را وارد کنید" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 79b0cc90132..f73e44e0974 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index c2b656bbd0e..9d07f5a883c 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Virhe" @@ -247,7 +247,7 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -283,87 +283,87 @@ msgstr "Suojaa salasanalla" msgid "Password" msgstr "Salasana" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Lähetä linkki sähköpostitse" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Lähetä" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Aseta päättymispäivä" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Päättymispäivä" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Jaa sähköpostilla:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Henkilöitä ei löytynyt" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Jakaminen uudelleen ei ole salittu" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Peru jakaminen" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "voi muokata" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "Pääsyn hallinta" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "luo" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "päivitä" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "poista" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "jaa" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Sähköposti lähetetty" @@ -466,7 +466,7 @@ msgstr "Pääsy estetty" msgid "Cloud not found" msgstr "Pilveä ei löydy" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "Hei!\n\n%s jakoi kohteen %s kanssasi.\nKatso se tästä: %s\n\nNäkemiin!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "verkkopalvelut hallinnassasi" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Muokkaa luokkia" @@ -573,12 +569,12 @@ msgstr "Tietokantapalvelin" msgid "Finish setup" msgstr "Viimeistele asennus" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s on saatavilla. Lue lisätietoja, miten päivitys asennetaan." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Kirjaudu ulos" @@ -612,7 +608,7 @@ msgstr "Kirjaudu sisään" msgid "Alternative Logins" msgstr "Vaihtoehtoiset kirjautumiset" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 627813484ff..c80d04d5f4d 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemas msgid "Could not move %s" msgstr "Kohteen %s siirto ei onnistunut" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Lähetetyn tiedoston koko ylittää php.ini-tiedoston upload_max_filesize-säännön:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Ladattavan tiedoston maksimikoko ylittää MAX_FILE_SIZE dirketiivin, joka on määritelty HTML-lomakkeessa" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Tilapäiskansio puuttuu" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Tallennustilaa ei ole riittävästi käytettävissä" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Virheellinen kansio." @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "tiedosto" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "tiedostoa" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index 5d7d982bedf..0f8f958a2d0 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 17:20+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot <owncloud-bot@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" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "PHP-moduulia OpenSSL ei ole asennettu." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 9b841ddf199..5461218a104 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index afe8ef68fc1..05e068f8850 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Salasana" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Lähetä" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jakoi kansion %s kanssasi" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s jakoi tiedoston %s kanssasi" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Lataa" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Lähetä" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Ei esikatselua kohteelle" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 336dab766b8..a519516e34a 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index e5199b589cf..9f26c171229 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Sovellukset" msgid "Admin" msgstr "Ylläpitäjä" +#: defaults.php:33 +msgid "web services under your control" +msgstr "verkkopalvelut hallinnassasi" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP-lataus on poistettu käytöstä." diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 1883dc1a53b..1dcc938d7a4 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Virhe käyttäjää luotaessa" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "_kielen_nimi_" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Turvallisuusvaroitus" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Lue tarkasti <a href='%s'>asennusohjeet</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Moduuli 'fileinfo' puuttuu" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Internet-yhteys ei toimi" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Jakaminen" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Käytä jakamisen ohjelmointirajapintaa" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Salli linkit" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Salli käyttäjien jakaa kohteita käyttäen linkkejä" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Salli uudelleenjakaminen" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Mahdollistaa käyttäjien jakavan uudelleen heidän kanssaan jaettuja kohteita" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Salli käyttäjien jakaa kenen tahansa kanssa" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Tietoturva" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Pakota HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Pakottaa salaamaan ownCloudiin kohdistuvat yhteydet." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Loki" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Lokitaso" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Enemmän" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versio" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,72 +387,72 @@ msgstr "Ohjelmistovirheiden jäljitys" msgid "Commercial Support" msgstr "Kaupallinen tuki" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Näytä ensimmäisen käyttökerran avustaja uudelleen" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Käytössäsi on <strong>%s</strong>/<strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Salasana" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Salasanasi vaihdettiin" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Salasanaasi ei voitu vaihtaa" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Nykyinen salasana" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Uusi salasana" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Vaihda salasana" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Näyttönimi" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Sähköpostiosoite" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Sähköpostiosoitteesi" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Kieli" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Auta kääntämisessä" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Käytä tätä osoitetta yhdistäessäsi ownCloudiisi tiedostonhallintaa käyttäen" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 6f4307bce4a..8b673753c65 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 3bf7f5894d4..15eb367c9ce 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: Adalberto Rodrigues <rodrigues_adalberto@yahoo.fr>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -230,8 +230,8 @@ msgstr "Le type d'objet n'est pas spécifié." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Erreur" @@ -251,7 +251,7 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -287,87 +287,87 @@ msgstr "Protéger par un mot de passe" msgid "Password" msgstr "Mot de passe" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Autoriser l'upload par les utilisateurs non enregistrés" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Envoyez le lien par email" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Envoyer" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Spécifier la date d'expiration" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Date d'expiration" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Partager via e-mail :" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Aucun utilisateur trouvé" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Le repartage n'est pas autorisé" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Partagé dans {item} avec {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Ne plus partager" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "édition autorisée" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "contrôle des accès" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "créer" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "mettre à jour" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "supprimer" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "partager" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email envoyé" @@ -470,7 +470,7 @@ msgstr "Accès interdit" msgid "Cloud not found" msgstr "Introuvable" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -481,10 +481,6 @@ msgid "" "Cheers!" msgstr "Salut,\n\nje veux juste vous signaler %s partagé %s avec vous.\nVoyez-le: %s\n\nBonne continuation!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "services web sous votre contrôle" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editer les catégories" @@ -577,12 +573,12 @@ msgstr "Serveur de la base de données" msgid "Finish setup" msgstr "Terminer l'installation" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Se déconnecter" @@ -616,7 +612,7 @@ msgstr "Connexion" msgid "Alternative Logins" msgstr "Logins alternatifs" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/fr/files.po b/l10n/fr/files.po index dc37ed2a9a3..0eb02c184e6 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -30,54 +30,54 @@ msgstr "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà" msgid "Could not move %s" msgstr "Impossible de déplacer %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Impossible de définir le dossier pour l'upload, charger." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Jeton non valide" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été envoyé. Erreur inconnue" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Aucune erreur, le fichier a été envoyé avec succès." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Le fichier envoyé dépasse la valeur upload_max_filesize située dans le fichier php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement envoyé." -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Pas de fichier envoyé." -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Absence de dossier temporaire." -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Plus assez d'espace de stockage disponible" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Dossier invalide." @@ -340,11 +340,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fichier" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "fichiers" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 8d677147a86..a7a5e7a6fe4 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 19:50+0000\n" -"Last-Translator: Adalberto Rodrigues <rodrigues_adalberto@yahoo.fr>\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,14 +66,15 @@ msgid "" msgstr "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "Le module OpenSSL de PHP n'est pas installé." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Veuillez demander à l'administrateur du serveur d'installer le module. Pour l'instant l'application de chiffrement a été désactivé." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index e777196f0db..500c423b565 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 9782ed9896c..634329a3301 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Mot de passe" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Envoyer" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partagé le répertoire %s avec vous" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partagé le fichier %s avec vous" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Télécharger" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Envoyer" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Pas d'aperçu disponible pour" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 33f304bbd2e..5bf8643e2fa 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index eec8122a8af..bc2cff39536 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Applications" msgid "Admin" msgstr "Administration" +#: defaults.php:33 +msgid "web services under your control" +msgstr "services web sous votre contrôle" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Téléchargement ZIP désactivé." diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index cbabb0e44fe..d6ecfda05f2 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -168,15 +168,15 @@ msgstr "Erreur lors de la création de l'utilisateur" msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Français" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Avertissement de sécurité" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -185,36 +185,36 @@ msgid "" " 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/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Avertissement, problème de configuration" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Veuillez vous référer au <a href='%s'>guide d'installation</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' manquant" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Localisation non fonctionnelle" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -222,11 +222,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Ce serveur ownCloud ne peut pas ajuster la localisation du système en %s. Cela signifie qu'il pourra y avoir des problèmes avec certains caractères dans les noms de fichiers. Il est vivement recommandé d'installer les paquets requis pour le support de %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "La connexion internet ne fonctionne pas" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -236,102 +236,102 @@ msgid "" " of ownCloud." msgstr "Ce serveur ownCloud ne peut pas se connecter à internet. Cela signifie que certaines fonctionnalités, telles que l'utilisation de supports de stockage distants, les notifications de mises à jour, ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne marcheront pas non plus. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez utiliser toutes les fonctionnalités offertes par ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Exécute une tâche à chaque chargement de page" -#: templates/admin.php:111 +#: templates/admin.php:113 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 est enregistré en tant que service webcron. Veuillez appeler la page cron.php située à la racine du serveur ownCoud via http toute les minutes." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Utilise le service cron du système. Appelle le fichier cron.php du répertoire owncloud toutes les minutes grâce à une tâche cron du système." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Partage" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Activer l'API de partage" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Autoriser les applications à utiliser l'API de partage" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Autoriser les liens" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Autoriser les utilisateurs à partager des éléments publiquement à l'aide de liens" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Autoriser le repartage" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Autoriser les utilisateurs à partager des éléments qui ont été partagés avec eux" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Autoriser les utilisateurs à partager avec tout le monde" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Sécurité" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Forcer HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Forcer les clients à se connecter à Owncloud via une connexion chiffrée." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Merci de vous connecter à cette instance Owncloud en HTTPS pour activer ou désactiver SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Niveau de log" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Plus" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Moins" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -389,72 +389,72 @@ msgstr "Suivi de bugs" msgid "Commercial Support" msgstr "Support commercial" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Obtenez les applications de synchronisation de vos fichiers" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Revoir le premier lancement de l'installeur" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Vous avez utilisé <strong>%s</strong> des <strong>%s<strong> disponibles" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Mot de passe" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Votre mot de passe a été changé" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Impossible de changer votre mot de passe" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Mot de passe actuel" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nouveau mot de passe" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Changer de mot de passe" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nom affiché" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Adresse mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Votre adresse e-mail" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Langue" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Aidez à traduire" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utiliser cette adresse pour vous connecter à ownCloud dans votre gestionnaire de fichiers" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index bc72b0c5445..39a0a8a48cf 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: plachance <patlachance@gmail.com>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index cc94a39a5a4..2d018b49bc1 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -226,8 +226,8 @@ msgstr "Non se especificou o tipo de obxecto." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Erro" @@ -247,7 +247,7 @@ msgstr "Compartir" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" @@ -283,87 +283,87 @@ msgstr "Protexido con contrasinais" msgid "Password" msgstr "Contrasinal" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Permitir o envío público" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Enviar ligazón por correo" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Enviar" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Definir a data de caducidade" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data de caducidade" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Compartir por correo:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Non se atopou xente" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Non se permite volver a compartir" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Deixar de compartir" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "pode editar" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "control de acceso" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "crear" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "actualizar" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "eliminar" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "compartir" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Correo enviado" @@ -466,7 +466,7 @@ msgstr "Acceso denegado" msgid "Cloud not found" msgstr "Nube non atopada" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "Ola,\n\nsó facerlle saber que %s compartiu %s con vostede.\nVéxao en: %s\n\nSaúdos!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "servizos web baixo o seu control" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar as categorías" @@ -573,12 +569,12 @@ msgstr "Servidor da base de datos" msgid "Finish setup" msgstr "Rematar a configuración" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está dispoñíbel. Obteña máis información sobre como actualizar." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Desconectar" @@ -612,7 +608,7 @@ msgstr "Conectar" msgid "Alternative Logins" msgstr "Accesos alternativos" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/gl/files.po b/l10n/gl/files.po index fc9b4bb3190..bd8cfda4c01 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,54 +28,54 @@ msgstr "Non se moveu %s - Xa existe un ficheiro con ese nome." msgid "Could not move %s" msgstr "Non foi posíbel mover %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." -msgstr "" +msgstr "Non é posíbel configurar o directorio de envíos." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Marca incorrecta" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Non se enviou ningún ficheiro. Produciuse un erro descoñecido." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Non houbo erros, o ficheiro enviouse correctamente" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede a directiva indicada por upload_max_filesize de php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "O ficheiro enviado excede da directiva MAX_FILE_SIZE especificada no formulario HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro so foi parcialmente enviado" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Falta o cartafol temporal" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Produciuse un erro ao escribir no disco" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Non hai espazo de almacenamento abondo" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "O directorio é incorrecto." @@ -232,7 +232,7 @@ msgstr "{count} ficheiros" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s non pode cambiar de nome" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -330,19 +330,19 @@ msgstr "Análise actual" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "directorio" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "directorios" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "ficheiro" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "ficheiros" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 20c1755a552..a8f83b07bb4 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 07:20+0000\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 09:11+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -65,14 +65,15 @@ msgid "" msgstr "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "O módulo PHP OpenSSL non está instalado." +msgid "Missing requirements." +msgstr "Non se cumpren os requisitos." #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Pregúntelle ao administrador do servidor pola instalación do módulo. Polo de agora o aplicativo de cifrado foi desactivado." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de que a extensión OpenSSL PHP estea activada e configurada correctamente. Polo de agora foi desactivado o aplicativo de cifrado." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 432452af018..90e75c3e23d 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 31b0ffcc4f9..44389a9cdf6 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mbouzada <mbouzada@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "O contrasinal é incorrecto. Ténteo de novo." + +#: templates/authenticate.php:7 msgid "Password" msgstr "Contrasinal" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Enviar" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartiu o cartafol %s con vostede" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartiu o ficheiro %s con vostede" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Descargar" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Enviar" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Sen vista previa dispoñíbel para" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 5946c079b32..f312548dbc6 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 3083cb74840..772f5f0bbe6 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplicativos" msgid "Admin" msgstr "Administración" +#: defaults.php:33 +msgid "web services under your control" +msgstr "servizos web baixo o seu control" + #: files.php:210 msgid "ZIP download is turned off." msgstr "As descargas ZIP están desactivadas." diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index e516510d99d..e7fcfe51266 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Produciuse un erro ao crear o usuario" msgid "A valid password must be provided" msgstr "Debe fornecer un contrasinal" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Galego" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Aviso de seguranza" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través da Internet. O ficheiro .htaccess que fornece ownCloud non está a empregarse. Suxerímoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesíbel ou mova o cartafol de datos fora do directorio raíz de datos do servidor web." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Configurar os avisos" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Volva comprobar as <a href='%s'>guías de instalación</a>" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Non se atopou o módulo «fileinfo»" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "A configuración rexional non funciona" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Este servidor ownCloud non pode estabelecer a configuración rexional do sistema a %s. Isto significa que pode haber problemas con certos caracteres nos nomes de ficheiro. Recomendámoslle que inste os paquetes necesarios no sistema para aceptar o %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "A conexión á Internet non funciona" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "Este servidor ownCloud non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades de ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Executar unha tarefa con cada páxina cargada" -#: templates/admin.php:111 +#: templates/admin.php:113 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 está rexistrado nun servizo de WebCron. Chame á página cron.php na raíz ownCloud unha vez por minuto a través de HTTP." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Use o servizo de sistema cron. Chame ao ficheiro cron.php no cartafol owncloud a través dun sistema de cronjob unha vez por minuto." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Compartindo" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Activar o API para compartir" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Permitir que os aplicativos empreguen o API para compartir" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Permitir ligazóns" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Permitir que os usuarios compartan elementos ao público con ligazóns" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Permitir compartir" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Permitir que os usuarios compartan de novo os elementos compartidos con eles" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Permitir que os usuarios compartan con calquera" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Permitir que os usuarios compartan só cos usuarios dos seus grupos" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Seguranza" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Forzar que os clientes se conecten a ownCloud empregando unha conexión cifrada" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Conectese a esta instancia ownCloud empregando HTTPS para activar ou desactivar o forzado de SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Rexistro" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nivel de rexistro" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Máis" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Menos" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versión" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,72 +387,72 @@ msgstr "Seguemento de fallos" msgid "Commercial Support" msgstr "Asistencia comercial" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Obteña os aplicativos para sincronizar os seus ficheiros" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Amosar o axudante da primeira execución outra vez" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Ten en uso <strong>%s</strong> do total dispoñíbel de <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasinal" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "O seu contrasinal foi cambiado" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Non é posíbel cambiar o seu contrasinal" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Contrasinal actual" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Novo contrasinal" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Cambiar o contrasinal" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Amosar o nome" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Correo" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "O seu enderezo de correo" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Escriba un enderezo de correo para activar o contrasinal de recuperación" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Idioma" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Axude na tradución" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index 9a604a78fda..b26dff736e8 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: mbouzada <mbouzada@gmail.com>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index ded1f94c944..3d0567b9f34 100644 --- a/l10n/he/core.po +++ b/l10n/he/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "סוג הפריט לא צוין." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "שגיאה" @@ -247,7 +247,7 @@ msgstr "שותף" msgid "Share" msgstr "שתף" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -283,87 +283,87 @@ msgstr "הגנה בססמה" msgid "Password" msgstr "סיסמא" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "שליחת קישור בדוא״ל למשתמש" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "שליחה" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "הגדרת תאריך תפוגה" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "תאריך התפוגה" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "שיתוף באמצעות דוא״ל:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "לא נמצאו אנשים" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "אסור לעשות שיתוף מחדש" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "שותף תחת {item} עם {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "הסר שיתוף" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "ניתן לערוך" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "בקרת גישה" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "יצירה" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "עדכון" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "מחיקה" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "שיתוף" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" @@ -466,7 +466,7 @@ msgstr "הגישה נחסמה" msgid "Cloud not found" msgstr "ענן לא נמצא" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "שירותי רשת תחת השליטה שלך" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "ערוך קטגוריות" @@ -573,12 +569,12 @@ msgstr "שרת בסיס נתונים" msgid "Finish setup" msgstr "סיום התקנה" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s זמינה להורדה. ניתן ללחוץ כדי לקבל מידע נוסף כיצד לעדכן." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "התנתקות" @@ -612,7 +608,7 @@ msgstr "כניסה" msgid "Alternative Logins" msgstr "כניסות אלטרנטיביות" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/he/files.po b/l10n/he/files.po index 57272b92b1e..da8755aea3e 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "לא ניתן להעביר את %s - קובץ בשם הזה כבר קי msgid "Could not move %s" msgstr "לא ניתן להעביר את %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "לא התרחשה שגיאה, הקובץ הועלה בהצלחה" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "הקובץ שהועלה גדוך מהערך MAX_FILE_SIZE שהוגדר בתופס HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ הועלה באופן חלקי בלבד" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "שום קובץ לא הועלה" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "תקיה זמנית חסרה" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "אין די שטח פנוי באחסון" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "תיקייה שגויה." @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "קובץ" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "קבצים" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index a7ff7d9e48e..8b805ef221a 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index f030da5198d..5ef95a4b88d 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index ec661346bbb..4d252bf9190 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "סיסמא" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "שליחה" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s שיתף עמך את התיקייה %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s שיתף עמך את הקובץ %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "הורדה" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "העלאה" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "אין תצוגה מקדימה זמינה עבור" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 44fe5fb151b..6b12ed39264 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 35ef648b05b..369891a13bb 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "יישומים" msgid "Admin" msgstr "מנהל" +#: defaults.php:33 +msgid "web services under your control" +msgstr "שירותי רשת תחת השליטה שלך" + #: files.php:210 msgid "ZIP download is turned off." msgstr "הורדת ZIP כבויה" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 296c78ce3ac..008e9e26c55 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "יצירת המשתמש נכשלה" msgid "A valid password must be provided" msgstr "יש לספק ססמה תקנית" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "עברית" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "אזהרת אבטחה" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "יתכן שתיקיית הנתונים והקבצים שלך נגישים דרך האינטרנט. קובץ ה־.htaccess שמסופק על ידי ownCloud כנראה אינו עובד. אנו ממליצים בחום להגדיר את שרת האינטרנט שלך בדרך שבה תיקיית הנתונים לא תהיה זמינה עוד או להעביר את תיקיית הנתונים מחוץ לספריית העל של שרת האינטרנט." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "שגיאת הגדרה" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "נא לעיין שוב ב<a href='%s'>מדריכי ההתקנה</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "המודול „fileinfo“ חסר" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "החיבור לאינטרנט אינו פעיל" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "יש להפעיל משימה אחת עם כל עמוד שנטען" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "שיתוף" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "הפעלת API השיתוף" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "לאפשר ליישום להשתמש ב־API השיתוף" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "לאפשר קישורים" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "לאפשר למשתמשים לשתף פריטים " -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "לאפשר שיתוף מחדש" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "לאפשר למשתמשים לשתף הלאה פריטים ששותפו אתם" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "לאפשר למשתמשים לשתף עם כל אחד" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "לאפשר למשתמשים לשתף עם משתמשים בקבוצות שלהם בלבד" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "אבטחה" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "לאלץ HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "יומן" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "רמת הדיווח" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "יותר" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "פחות" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "גרסא" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,72 +387,72 @@ msgstr "עוקב תקלות" msgid "Commercial Support" msgstr "תמיכה בתשלום" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "השג את האפליקציות על מנת לסנכרן את הקבצים שלך" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "הצגת אשף ההפעלה הראשונית שוב" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "השתמשת ב־<strong>%s</strong> מתוך <strong>%s</strong> הזמינים לך" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "סיסמא" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "הססמה שלך הוחלפה" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "לא ניתן לשנות את הססמה שלך" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "ססמה נוכחית" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "ססמה חדשה" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "שינוי ססמה" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "שם תצוגה" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "דואר אלקטרוני" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "כתובת הדוא״ל שלך" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "נא למלא את כתובת הדוא״ל שלך כדי לאפשר שחזור ססמה" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "פה" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "עזרה בתרגום" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "השתמש בכתובת זאת על מנת להתחבר אל ownCloud דרך סייר קבצים." diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 922993d60fb..460ba087435 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 9a7e059009c..ba977b5c912 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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -226,10 +226,10 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" -msgstr "" +msgstr "त्रुटि" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -247,7 +247,7 @@ msgstr "" msgid "Share" msgstr "साझा करें" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -283,87 +283,87 @@ msgstr "" msgid "Password" msgstr "पासवर्ड" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -466,7 +466,7 @@ msgstr "" msgid "Cloud not found" msgstr "क्लौड नहीं मिला " -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -573,12 +569,12 @@ msgstr "" msgid "Finish setup" msgstr "सेटअप समाप्त करे" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "लोग आउट" @@ -612,7 +608,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/hi/files.po b/l10n/hi/files.po index b0ada4fa9a0..1f32a0afd67 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" @@ -110,7 +110,7 @@ msgstr "" #: js/file-upload.js:267 js/file-upload.js:283 js/files.js:373 js/files.js:389 #: js/files.js:693 js/files.js:731 msgid "Error" -msgstr "" +msgstr "त्रुटि" #: js/fileactions.js:116 msgid "Share" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index 72318884cfc..94ad25dcd1a 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 61feccf7289..374cd748474 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "पासवर्ड" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:17 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 6c057b0c240..20955b3b495 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -27,43 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:96 +#: js/trash.js:7 js/trash.js:97 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 msgid "Error" -msgstr "" +msgstr "त्रुटि" #: js/trash.js:34 msgid "delete file permanently" msgstr "" -#: js/trash.js:121 +#: js/trash.js:123 msgid "Delete permanently" msgstr "" -#: js/trash.js:174 templates/index.php:17 +#: js/trash.js:176 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:175 templates/index.php:27 +#: js/trash.js:177 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:184 +#: js/trash.js:186 msgid "1 folder" msgstr "" -#: js/trash.js:186 +#: js/trash.js:188 msgid "{count} folders" msgstr "" -#: js/trash.js:194 +#: js/trash.js:196 msgid "1 file" msgstr "" -#: js/trash.js:196 +#: js/trash.js:198 msgid "{count} files" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index b4c3ea47a1b..6856389865d 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Apps" msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 90989723702..3085a64e0cc 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -88,35 +88,35 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: js/apps.js:30 +#: js/apps.js:35 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:36 js/apps.js:76 +#: js/apps.js:41 js/apps.js:81 msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 js/apps.js:83 +#: js/apps.js:41 js/apps.js:69 js/apps.js:88 msgid "Enable" msgstr "" -#: js/apps.js:55 +#: js/apps.js:60 msgid "Please wait...." msgstr "" -#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 msgid "Error" -msgstr "" +msgstr "त्रुटि" -#: js/apps.js:90 +#: js/apps.js:95 msgid "Updating...." msgstr "" -#: js/apps.js:93 +#: js/apps.js:98 msgid "Error while updating app" msgstr "" -#: js/apps.js:96 +#: js/apps.js:101 msgid "Updated" msgstr "" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:116 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:119 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -360,7 +360,7 @@ msgstr "" #: templates/apps.php:43 msgid "Update" -msgstr "" +msgstr "अद्यतन" #: templates/help.php:4 msgid "User Documentation" @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "पासवर्ड" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "नया पासवर्ड" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 43f46c038a4..1eff314d2d7 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-23 01:59+0200\n" -"PO-Revision-Date: 2013-06-22 10:24+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -67,7 +67,7 @@ msgstr "" #: js/settings.js:117 msgid "Error" -msgstr "" +msgstr "त्रुटि" #: js/settings.js:141 msgid "Connection test succeeded" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index ed464d5b387..0c71cd1420d 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Greška" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -282,87 +282,87 @@ msgstr "Zaštiti lozinkom" msgid "Password" msgstr "Lozinka" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Postavi datum isteka" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Datum isteka" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Dijeli preko email-a:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Osobe nisu pronađene" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Ponovo dijeljenje nije dopušteno" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Makni djeljenje" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "može mjenjat" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "kreiraj" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "ažuriraj" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "izbriši" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "djeli" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "Pristup zabranjen" msgid "Cloud not found" msgstr "Cloud nije pronađen" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "web usluge pod vašom kontrolom" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Uredi kategorije" @@ -572,12 +568,12 @@ msgstr "Poslužitelj baze podataka" msgid "Finish setup" msgstr "Završi postavljanje" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Odjava" @@ -611,7 +607,7 @@ msgstr "Prijava" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/hr/files.po b/l10n/hr/files.po index a9953a298e8..78d26619749 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Nema pogreške, datoteka je poslana uspješno." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Poslana datoteka je parcijalno poslana" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Datoteka nije poslana" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Nedostaje privremeni direktorij" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "datoteka" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "datoteke" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index 7e4a7e15c93..41ffd91c1b8 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index edbee1262c6..bdb008d0aba 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 2396120361c..072ac068a09 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "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/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Lozinka" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Pošalji" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Preuzimanje" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Učitaj" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 90551c10cf1..36b9eea034d 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index eeaf3e1ffb0..8657f23d7e8 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Aplikacije" msgid "Admin" msgstr "Administrator" +#: defaults.php:33 +msgid "web services under your control" +msgstr "web usluge pod vašom kontrolom" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 23ae6a018a6..825d92728be 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__ime_jezika__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "više" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Nemoguće promijeniti lozinku" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Izmjena lozinke" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "e-mail adresa" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Vaša e-mail adresa" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Ispunite vase e-mail adresa kako bi se omogućilo oporavak lozinke" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Jezik" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Pomoć prevesti" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 2484828800d..315cf08e47c 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 80af11d95dd..cb1a22a3292 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Az objektum típusa nincs megadva." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Hiba" @@ -247,7 +247,7 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" @@ -283,87 +283,87 @@ msgstr "Jelszóval is védem" msgid "Password" msgstr "Jelszó" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Email címre küldjük el" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Küldjük el" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Legyen lejárati idő" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "A lejárati idő" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Megosztás emaillel:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Nincs találat" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Megosztva {item}-ben {user}-rel" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "A megosztás visszavonása" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "módosíthat" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "jogosultság" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "létrehoz" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "szerkeszt" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "töröl" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "megoszt" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Az emailt elküldtük" @@ -466,7 +466,7 @@ msgstr "A hozzáférés nem engedélyezett" msgid "Cloud not found" msgstr "A felhő nem található" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "Üdv!\n\nÚj hír: %s megosztotta Önnel ezt: %s.\nItt nézhető meg: %s\n\nMinden jót!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "webszolgáltatások saját kézben" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategóriák szerkesztése" @@ -573,12 +569,12 @@ msgstr "Adatbázis szerver" msgid "Finish setup" msgstr "A beállítások befejezése" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s rendelkezésre áll. További információ a frissítéshez." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Kilépés" @@ -612,7 +608,7 @@ msgstr "Bejelentkezés" msgid "Alternative Logins" msgstr "Alternatív bejelentkezés" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 4e53b2b5129..28a99a75596 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a név msgid "Could not move %s" msgstr "Nem sikerült %s áthelyezése" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "A fájlt sikerült feltölteni" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét." -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "A feltöltött fájl mérete meghaladja a MAX_FILE_SIZE paramétert, ami a HTML formban került megadásra." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Az eredeti fájlt csak részben sikerült feltölteni." -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nem töltődött fel állomány" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történő írás" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nincs elég szabad hely." -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Érvénytelen mappa." @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fájl" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "fájlok" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index 01aa8396a33..cac07fdabb5 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 5199ce0ee7e..22951fdac67 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index d035812b03e..9cf783be2fc 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Jelszó" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Elküld" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s megosztotta Önnel ezt a mappát: %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s megosztotta Önnel ezt az állományt: %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Letöltés" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Feltöltés" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Nem áll rendelkezésre előnézet ehhez: " diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 2370f65e49f..331b5e8d1e3 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index f1387d3c8ba..44b691374c6 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Alkalmazások" msgid "Admin" msgstr "Adminsztráció" +#: defaults.php:33 +msgid "web services under your control" +msgstr "webszolgáltatások saját kézben" + #: files.php:210 msgid "ZIP download is turned off." msgstr "A ZIP-letöltés nincs engedélyezve." diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 478923a9d7d..13a4140b994 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "A felhasználó nem hozható létre" msgid "A valid password must be provided" msgstr "Érvényes jelszót kell megadnia" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Biztonsági figyelmeztetés" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon fontos, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "A beállítással kapcsolatos figyelmeztetés" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Kérjük tüzetesen tanulmányozza át a <a href='%s'>telepítési útmutatót</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "A 'fileinfo' modul hiányzik" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "A nyelvi lokalizáció nem működik" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Ezen az ownCloud kiszolgálón nem használható a %s nyelvi beállítás. Ez azt jelenti, hogy a fájlnevekben gond lehet bizonyos karakterekkel. Nyomatékosan ajánlott, hogy telepítse a szükséges csomagokat annak érdekében, hogy a rendszer támogassa a %s beállítást." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Az internet kapcsolat nem működik" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Az ownCloud kiszolgálónak nincs internet kapcsolata. Ez azt jelenti, hogy bizonyos dolgok nem fognak működni, pl. külső tárolók csatolása, programfrissítésekről való értesítések, vagy külső fejlesztői modulok telepítése. Lehet, hogy az állományok távolról történő elérése, ill. az email értesítések sem fog működni. Javasoljuk, hogy engedélyezze az internet kapcsolatot a kiszolgáló számára, ha az ownCloud összes szolgáltatását szeretné használni." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Ütemezett feladatok" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek" -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "A cron.php webcron szolgáltatásként van regisztrálva. Hívja meg az owncloud könyvtárban levő cron.php állományt http-n keresztül percenként egyszer." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "A rendszer cron szolgáltatásának használata. Hívja meg az owncloud könyvtárban levő cron.php állományt percenként egyszer a rendszer cron szolgáltatásának segítségével." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Megosztás" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "A megosztás API-jának engedélyezése" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Linkek engedélyezése" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Lehetővé teszi, hogy a felhasználók linkek segítségével külsősökkel is megoszthassák az adataikat" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "A továbbosztás engedélyezése" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Lehetővé teszi, hogy a felhasználók a velük megosztott állományokat megosszák egy további, harmadik féllel" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "A felhasználók bárkivel megoszthatják állományaikat" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Biztonság" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Kötelező HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak az ownCloud szolgáltatáshoz." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Kérjük, hogy HTTPS protokollt használjon, ha be vagy ki akarja kapcsolni a kötelező SSL beállítást." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Naplózás" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Naplózási szint" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Több" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Verzió" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -388,72 +388,72 @@ msgstr "Hibabejelentések" msgid "Commercial Support" msgstr "Megvásárolható támogatás" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Töltse le az állományok szinkronizációjához szükséges programokat" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Nézzük meg újra az első bejelentkezéskori segítséget!" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Az Ön tárterület-felhasználása jelenleg: <strong>%s</strong>. Maximálisan ennyi áll rendelkezésére: <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Jelszó" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "A jelszava megváltozott" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "A jelszó nem változtatható meg" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "A jelenlegi jelszó" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Az új jelszó" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "A jelszó megváltoztatása" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "A megjelenített név" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Az Ön email címe" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Adja meg az email címét, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Nyelv" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Segítsen a fordításban!" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Ennek a címnek a megadásával a WebDAV-protokollon keresztül saját gépének fájlkezelőjével is is elérheti az állományait." diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index bb38514a809..bcd318a1b90 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 9bee1877f9e..2238a3574fd 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: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/hy/files.po b/l10n/hy/files.po index a78f199054d..1cd86ab4d36 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/hy/files_encryption.po b/l10n/hy/files_encryption.po index 5d98b56d419..aac4b4707b6 100644 --- a/l10n/hy/files_encryption.po +++ b/l10n/hy/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index e9a24afac62..7e1f7dbf007 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index 64f9515bb8a..fb65de7ef87 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Հաստատել" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Բեռնել" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 9797a35bee3..ccbeee8d50a 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index f1c31aeae69..07d46915210 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index e98e94e3116..9bde8e8b792 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 4700fe8f4f9..7e456232c0c 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Error" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "Contrasigno" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Invia" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "Accesso prohibite" msgid "Cloud not found" msgstr "Nube non trovate" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "servicios web sub tu controlo" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Modificar categorias" @@ -572,12 +568,12 @@ msgstr "Hospite de base de datos" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Clauder le session" @@ -611,7 +607,7 @@ msgstr "Aperir session" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ia/files.po b/l10n/ia/files.po index ea89463fb85..ea04090eb98 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nulle file esseva incargate." -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index 77fce1ace5c..3dc0de99506 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index b8392b61ce0..cd07dccb633 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 2b34579a533..ff9e5798898 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Contrasigno" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Submitter" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Discargar" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Incargar" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 1f07f410143..4bc3b9c5f86 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 889a46f0b5d..714f5786e1b 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Applicationes" msgid "Admin" msgstr "Administration" +#: defaults.php:33 +msgid "web services under your control" +msgstr "servicios web sub tu controlo" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index f142a501be3..fd0c5dff8bd 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Interlingua" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Registro" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Plus" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Obtene le apps (applicationes) pro synchronizar tu files" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasigno" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Non pote cambiar tu contrasigno" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Contrasigno currente" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nove contrasigno" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Cambiar contrasigno" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-posta" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Tu adresse de e-posta" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Linguage" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Adjuta a traducer" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 7da00dfe343..e8da07d982a 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 07c64345aa4..61c7ec568df 100644 --- a/l10n/id/core.po +++ b/l10n/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "Tipe objek tidak ditentukan." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Galat" @@ -246,7 +246,7 @@ msgstr "Dibagikan" msgid "Share" msgstr "Bagikan" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Galat ketika membagikan" @@ -282,87 +282,87 @@ msgstr "Lindungi dengan sandi" msgid "Password" msgstr "Sandi" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Emailkan tautan ini ke orang" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Kirim" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Setel tanggal kedaluwarsa" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Tanggal kedaluwarsa" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Bagian lewat email:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Tidak ada orang ditemukan" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Berbagi ulang tidak diizinkan" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Dibagikan dalam {item} dengan {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Batalkan berbagi" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "dapat mengedit" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "kontrol akses" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "buat" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "perbarui" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "hapus" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "bagikan" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Dilindungi sandi" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Galat ketika menyetel tanggal kedaluwarsa" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email terkirim" @@ -465,7 +465,7 @@ msgstr "Akses ditolak" msgid "Cloud not found" msgstr "Cloud tidak ditemukan" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "layanan web dalam kontrol Anda" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Edit kategori" @@ -572,12 +568,12 @@ msgstr "Host basis data" msgid "Finish setup" msgstr "Selesaikan instalasi" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Keluar" @@ -611,7 +607,7 @@ msgstr "Masuk" msgid "Alternative Logins" msgstr "Cara Alternatif untuk Masuk" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/id/files.po b/l10n/id/files.po index 07c5e82a525..041e73a8d62 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada" msgid "Could not move %s" msgstr "Tidak dapat memindahkan %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Tidak ada berkas yang diunggah. Galat tidak dikenal." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Berkas yang diunggah melampaui direktif MAX_FILE_SIZE yang ditentukan dalam formulir HTML." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Folder sementara tidak ada" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Ruang penyimpanan tidak mencukupi" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Direktori tidak valid." @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "berkas" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "berkas-berkas" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index 9ebd58469c0..754fd8ebf9a 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 0dbe65d4687..56327f91988 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 17d8faaa8b6..1e582d40e6a 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Sandi" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Kirim" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s membagikan folder %s dengan Anda" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s membagikan file %s dengan Anda" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Unduh" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Unggah" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Tidak ada pratinjau tersedia untuk" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 36cede00b26..ab8b0e64c04 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 3227625de4e..f7c74ee7319 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Aplikasi" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "layanan web dalam kontrol Anda" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Pengunduhan ZIP dimatikan." diff --git a/l10n/id/settings.po b/l10n/id/settings.po index e3a215db92a..5324e13d187 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "Gagal membuat pengguna" msgid "A valid password must be provided" msgstr "Tuliskan sandi yang valid" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Peringatan Keamanan" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "Mungkin direktori data dan berkas Anda dapat diakses dari internet. Berkas .htaccess yang disediakan oleh ownCloud tidak berfungsi. Kami sangat menyarankan Anda untuk mengonfigurasi webserver Anda agar direktori data tidak lagi dapat diakses atau pindahkan direktori data ke luar akar dokumen webserver." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Peringatan Persiapan" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Silakan periksa ulang <a href='%s'>panduan instalasi</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' tidak ada" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Kode pelokalan tidak berfungsi" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Server ownCloud ini tidak dapat menyetel kode pelokalan sistem ke nilai %s. Ini berarti mungkin akan terjadi masalah pada karakter tertentu pada nama berkas. Kami sarankan untuk menginstal paket yang dibutuhkan pada sistem Anda untuk mendukung %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Koneksi internet tidak berfungsi" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "Server ownCloud ini tidak memiliki koneksi internet yang berfungsi. Artinya, beberapa fitur misalnya mengaitkan penyimpanan eksternal, notifikasi tentang pembaruan, atau instalasi aplikasi dari pihak ketiga tidak akan dapat berfungsi. Pengaksesan berkas secara online dan pengiriman email notifikasi mungkin juga tidak dapat berfungsi. Kami sarankan untuk mengaktifkan koneksi internet server ini agar mendapatkan semua fitur ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Jalankan tugas setiap kali halaman dimuat" -#: templates/admin.php:111 +#: templates/admin.php:113 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 telah terdaftar sebagai layanan webcron. Panggil halaman cron.php pada akar direktori ownCloud tiap menit lewat http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Gunakan layanan cron sistem. Panggil berkas cron.php pada folder ownCloud lewat cronjob sistem tiap menit." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Berbagi" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Aktifkan API Pembagian" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Izinkan aplikasi untuk menggunakan API Pembagian" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Izinkan tautan" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Izinkan pengguna untuk berbagi item kepada publik lewat tautan" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Izinkan pembagian ulang" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka." -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Izinkan pengguna untuk berbagi kepada siapa saja" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Keamanan" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Selalu Gunakan HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Paksa klien untuk tersambung ke ownCloud lewat koneksi yang dienkripsi." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Silakan sambungkan ke instalasi ownCloud lewat HTTPS untuk mengaktifkan atau menonaktifkan fitur SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Catat" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Level pencatatan" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Lainnya" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versi" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Dukungan Komersial" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Dapatkan aplikasi untuk sinkronisasi berkas Anda" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Tampilkan Penuntun Konfigurasi Awal" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Anda telah menggunakan <strong>%s</strong> dari total <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Sandi" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Sandi Anda telah diubah" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Gagal mengubah sandi Anda" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Sandi saat ini" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Sandi baru" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Ubah sandi" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nama Tampilan" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Alamat email Anda" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Masukkan alamat email untuk mengaktifkan pemulihan sandi" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Bantu menerjemahkan" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Gunakan alamat ini untuk terhubung ke ownCloud Anda pada manajer berkas " diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 5e9053af866..4cc836ac023 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index b20212c84b0..3ad3b9b5b8f 100644 --- a/l10n/is/core.po +++ b/l10n/is/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Tegund ekki tilgreind" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Villa" @@ -247,7 +247,7 @@ msgstr "Deilt" msgid "Share" msgstr "Deila" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Villa við deilingu" @@ -283,87 +283,87 @@ msgstr "Verja með lykilorði" msgid "Password" msgstr "Lykilorð" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Senda vefhlekk í tölvupóstu til notenda" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Senda" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Setja gildistíma" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Gildir til" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Deila með tölvupósti:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Engir notendur fundust" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Endurdeiling er ekki leyfð" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Deilt með {item} ásamt {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Hætta deilingu" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "getur breytt" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "aðgangsstýring" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "mynda" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "uppfæra" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "eyða" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "deila" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Tölvupóstur sendur" @@ -466,7 +466,7 @@ msgstr "Aðgangur bannaður" msgid "Cloud not found" msgstr "Ský finnst ekki" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "vefþjónusta undir þinni stjórn" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Breyta flokkum" @@ -573,12 +569,12 @@ msgstr "Netþjónn gagnagrunns" msgid "Finish setup" msgstr "Virkja uppsetningu" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s er til boða. Fáðu meiri upplýsingar um hvernig þú uppfærir." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Útskrá" @@ -612,7 +608,7 @@ msgstr "<strong>Skrá inn</strong>" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/is/files.po b/l10n/is/files.po index 34364c612a6..f4fdcc19a9a 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Gat ekki fært %s - Skrá með þessu nafni er þegar til" msgid "Could not move %s" msgstr "Gat ekki fært %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Engin skrá var send inn. Óþekkt villa." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Innsend skrá er stærri en upload_max stillingin í php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Einungis hluti af innsendri skrá skilaði sér" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Engin skrá skilaði sér" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Vantar bráðabirgðamöppu" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Tókst ekki að skrifa á disk" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Ógild mappa." diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index 25eb7b28e29..4cc867c7a62 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 372ac099ba6..07dbe92ebd6 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index 31a9e2916d6..541341279ed 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Lykilorð" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Senda" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deildi möppunni %s með þér" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s deildi skránni %s með þér" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Niðurhal" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Senda inn" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Yfirlit ekki í boði fyrir" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 1bf547e91ea..e5f2ec3cda7 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index d526fd5bbf8..9b03edc87d4 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Forrit" msgid "Admin" msgstr "Stjórnun" +#: defaults.php:33 +msgid "web services under your control" +msgstr "vefþjónusta undir þinni stjórn" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Slökkt á ZIP niðurhali." diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 2c4fda3cc38..74291e07cdf 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__nafn_tungumáls__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Öryggis aðvörun" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "Gagnamappan þín er að öllum líkindum aðgengileg frá internetinu. Skráin .htaccess sem fylgir með ownCloud er ekki að virka. Við mælum eindregið með því að þú stillir vefþjóninn þannig að gagnamappan verði ekki aðgengileg frá internetinu eða færir hana út fyrir vefrótina." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Meira" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Minna" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,72 +387,72 @@ msgstr "Villubókhald" msgid "Commercial Support" msgstr "Borgaður stuðningur" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Þú hefur notað <strong>%s</strong> af tiltæku <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lykilorð" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Lykilorði þínu hefur verið breytt" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Ekki tókst að breyta lykilorðinu þínu" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Núverandi lykilorð" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nýtt lykilorð" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Breyta lykilorði" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Vísa nafn" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Netfang" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Netfangið þitt" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Sláðu inn netfangið þitt til að virkja endurheimt á lykilorði" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Tungumál" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Hjálpa við þýðingu" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Notaðu þessa vefslóð til að tengjast ownCloud svæðinu þínu" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 1205d878d91..518896a855c 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Magnus Magnusson <maggiymir@gmail.com>\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 70fb61139d7..91137e735c0 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 05:50+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -228,8 +228,8 @@ msgstr "Il tipo di oggetto non è specificato." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Errore" @@ -249,7 +249,7 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -285,87 +285,87 @@ msgstr "Proteggi con password" msgid "Password" msgstr "Password" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Consenti caricamento pubblico" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Invia collegamento via email" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Invia" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Imposta data di scadenza" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data di scadenza" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Condividi tramite email:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Non sono state trovate altre persone" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "La ri-condivisione non è consentita" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Condiviso in {item} con {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "può modificare" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "controllo d'accesso" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "creare" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "aggiornare" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "elimina" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "condividi" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Messaggio inviato" @@ -468,7 +468,7 @@ msgstr "Accesso negato" msgid "Cloud not found" msgstr "Nuvola non trovata" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -479,10 +479,6 @@ msgid "" "Cheers!" msgstr "Ehilà,\n\nvolevo solamente farti sapere che %s ha condiviso %s con te.\nGuarda: %s\n\nSaluti!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "servizi web nelle tue mani" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Modifica categorie" @@ -575,12 +571,12 @@ msgstr "Host del database" msgid "Finish setup" msgstr "Termina la configurazione" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s è disponibile. Ottieni ulteriori informazioni sull'aggiornamento." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Esci" @@ -614,7 +610,7 @@ msgstr "Accedi" msgid "Alternative Logins" msgstr "Accessi alternativi" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/it/files.po b/l10n/it/files.po index 535034c72c4..8c9f7e0db21 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+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" @@ -29,54 +29,54 @@ msgstr "Impossibile spostare %s - un file con questo nome esiste già" msgid "Could not move %s" msgstr "Impossibile spostare %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Impossibile impostare una cartella di caricamento." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Token non valido" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Non ci sono errori, il file è stato caricato correttamente" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Il file caricato supera la direttiva upload_max_filesize in php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato caricato solo parzialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Manca una cartella temporanea" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Spazio di archiviazione insufficiente" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Cartella non valida." @@ -331,19 +331,19 @@ msgstr "Scansione corrente" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "cartella" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "cartelle" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "file" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "file" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index bd0c8201a69..0c1b972a0f1 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 06:10+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -65,14 +65,15 @@ msgid "" msgstr "La chiave privata non è valida! Forse la password è stata cambiata esternamente al sistema di ownCloud (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "Il modulo PHP OpenSSL non è installato." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Chiedi all'amministratore del server di installare il modulo. Per ora la crittografia è disabilitata." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 6510e575769..5aebd46d8a4 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+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" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 76966a3edcb..b52f22dc6b4 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 06:10+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -19,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Password" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Invia" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha condiviso la cartella %s con te" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha condiviso il file %s con te" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Scarica" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Carica" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Annulla il caricamento" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Nessuna anteprima disponibile per" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 0de57665fd6..75650f58fc3 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+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" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 0c1903975e8..657130e4f35 100644 --- a/l10n/it/lib.po +++ b/l10n/it/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Applicazioni" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "servizi web nelle tue mani" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Lo scaricamento in formato ZIP è stato disabilitato." diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 0499861abb0..bdd8b4d7501 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+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" @@ -167,15 +167,15 @@ msgstr "Errore durante la creazione dell'utente" msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Italiano" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Avviso di sicurezza" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " 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/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Avviso di configurazione" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Leggi attentamente le <a href='%s'>guide d'installazione</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Modulo 'fileinfo' mancante" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Locale non funzionante" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Questo server ownCloud non può impostare la localizzazione a %s. Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file. Consigliamo vivamente di installare i pacchetti richiesti sul sistema per supportare %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Concessione Internet non funzionante" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. Anche l'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità di ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Esegui un'operazione con ogni pagina caricata" -#: templates/admin.php:111 +#: templates/admin.php:113 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 è registrato su un sevizio webcron. Invoca la pagina cron.php nella radice di ownCloud ogni minuto, tramite http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Utilizza il servizio cron di sistema. Invoca il file cron.php nella cartella di ownCloud tramite un job ogni minuto." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Condivisione" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Abilita API di condivisione" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Consenti collegamenti" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Consenti agli utenti di condividere pubblicamente elementi tramite collegamenti" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Consenti la ri-condivisione" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Consenti agli utenti di condividere a loro volta elementi condivisi da altri" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Consenti agli utenti di condividere con chiunque" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Consenti agli utenti di condividere solo con utenti dei loro gruppi" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Protezione" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Forza HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Obbliga i client a connettersi a ownCloud tramite una confessione cifrata." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Connettiti a questa istanza di ownCloud tramite HTTPS per abilitare o disabilitare la protezione SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Livello di log" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Altro" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Meno" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versione" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -388,72 +388,72 @@ msgstr "Sistema di tracciamento bug" msgid "Commercial Support" msgstr "Supporto commerciale" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Scarica le applicazioni per sincronizzare i tuoi file" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Mostra nuovamente la procedura di primo avvio" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Hai utilizzato <strong>%s</strong> dei <strong>%s</strong> disponibili" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Password" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "La tua password è cambiata" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Modifica password non riuscita" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Password attuale" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nuova password" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Modifica password" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nome visualizzato" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Posta elettronica" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Il tuo indirizzo email" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Inserisci il tuo indirizzo email per abilitare il recupero della password" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Lingua" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Migliora la traduzione" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 5dd936059e7..d5d8d6e1e88 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+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" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index a34e09a9c90..c0d4ab7dd27 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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "オブジェクタイプが指定されていません。" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "エラー" @@ -248,7 +248,7 @@ msgstr "共有中" msgid "Share" msgstr "共有" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -284,87 +284,87 @@ msgstr "パスワード保護" msgid "Password" msgstr "パスワード" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "パブリックなアップロードを許可" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "メールリンク" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "送信" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "有効期限を設定" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "有効期限" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "メール経由で共有:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "ユーザーが見つかりません" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "再共有は許可されていません" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "{item} 内で {user} と共有中" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "共有解除" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "編集可能" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "アクセス権限" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "作成" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "更新" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "削除" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "共有" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "メールを送信しました" @@ -467,7 +467,7 @@ msgstr "アクセスが禁止されています" msgid "Cloud not found" msgstr "見つかりません" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "こんにちは、\n\n%s があなたと %s を共有したことをお知らせします。\nそれを表示: %s\n\nそれでは。" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "管理下のウェブサービス" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "カテゴリを編集" @@ -574,12 +570,12 @@ msgstr "データベースのホスト名" msgid "Finish setup" msgstr "セットアップを完了します" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s が利用可能です。更新方法に関してさらに情報を取得して下さい。" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "ログアウト" @@ -613,7 +609,7 @@ msgstr "ログイン" msgid "Alternative Logins" msgstr "代替ログイン" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index 2b68a5d3054..efd78d61141 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -5,13 +5,14 @@ # Translators: # Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2013 # plazmism <gomidori@live.jp>, 2013 +# tt yn <tetuyano+transi@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" +"Last-Translator: tt yn <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" @@ -29,54 +30,54 @@ msgstr "%s を移動できませんでした ― この名前のファイルは msgid "Could not move %s" msgstr "%s を移動できませんでした" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "アップロードディレクトリを設定出来ません。" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "無効なトークン" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "ファイルは何もアップロードされていません。不明なエラー" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "エラーはありません。ファイルのアップロードは成功しました" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "アップロードされたファイルはphp.ini の upload_max_filesize に設定されたサイズを超えています:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "アップロードファイルは一部分だけアップロードされました" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "ファイルはアップロードされませんでした" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "一時保存フォルダが見つかりません" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "ディスクへの書き込みに失敗しました" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "ストレージに十分な空き容量がありません" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "無効なディレクトリです。" @@ -331,19 +332,19 @@ msgstr "スキャン中" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "ディレクトリ" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "ディレクトリ" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "ファイル" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "ファイル" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 4c03b565485..1697707c7fe 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 15:30+0000\n" -"Last-Translator: plazmism <gomidori@live.jp>\n" +"POT-Creation-Date: 2013-07-07 01:58+0200\n" +"PO-Revision-Date: 2013-07-06 01:30+0000\n" +"Last-Translator: tt yn <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" @@ -65,14 +65,15 @@ msgid "" msgstr "秘密鍵が有効ではありません。パスワードがownCloudシステムの外部(例えば、企業ディレクトリ)から変更された恐れがあります。個人設定で秘密鍵のパスワードを更新して、暗号化されたファイルを回復出来ます。" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "PHPのモジュール OpenSSLがインストールされていません。" +msgid "Missing requirements." +msgstr "必要要件が満たされていません。" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "サーバーの管理者にモジュールのインストールを頼んでください。さしあたり暗号化アプリは無効化されました。" +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "必ず、PHP 5.3.3以上をインストールし、OpenSSLのPHP拡張を有効にして適切に設定してください。現時点では暗号化アプリは無効になっています。" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index a5fd17defa5..ea04f3df7cf 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index aab66ce20fa..84f7b0bc77b 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# tt yn <tetuyano+transi@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: tt yn <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" @@ -18,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "パスワードが間違っています。再試行してください。" + +#: templates/authenticate.php:7 msgid "Password" msgstr "パスワード" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "送信" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s はフォルダー %s をあなたと共有中です" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s はファイル %s をあなたと共有中です" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ダウンロード" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "アップロード" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "プレビューはありません" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 3854c33415f..c5fc1e8734d 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 7fdf42bd6b2..253c4a919e9 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "アプリ" msgid "Admin" msgstr "管理" +#: defaults.php:33 +msgid "web services under your control" +msgstr "管理下のウェブサービス" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIPダウンロードは無効です。" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index f08173bacd8..1cc4b6483cf 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: plazmism <gomidori@live.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -168,15 +168,15 @@ msgstr "ユーザ作成エラー" msgid "A valid password must be provided" msgstr "有効なパスワードを指定する必要があります" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Japanese (日本語)" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "セキュリティ警告" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -185,36 +185,36 @@ msgid "" " webserver document root." msgstr "データディレクトリとファイルが恐らくインターネットからアクセスできるようになっています。ownCloudが提供する .htaccessファイルが機能していません。データディレクトリを全くアクセスできないようにするか、データディレクトリをウェブサーバのドキュメントルートの外に置くようにウェブサーバを設定することを強くお勧めします。 " -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "セットアップ警告" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "<a href='%s'>インストールガイド</a>をよく確認してください。" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "モジュール 'fileinfo' が見つかりません" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "ロケールが動作していません" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -222,11 +222,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "この ownCloud サーバは、システムロケールを %s に設定できません。これは、ファイル名の特定の文字で問題が発生する可能性があることを意味しています。%s をサポートするために、システムに必要なパッケージをインストールすることを強く推奨します。" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "インターネット接続が動作していません" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -236,102 +236,102 @@ msgid "" " of ownCloud." msgstr "この ownCloud サーバには有効なインターネット接続がありません。これは、外部ストレージのマウント、更新の通知、サードパーティ製アプリのインストール、のようないくつかの機能が動作しないことを意味しています。リモートからファイルにアクセスしたり、通知メールを送信したりすることもできません。全ての機能を利用するためには、このサーバのインターネット接続を有効にすることを推奨します。" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "各ページの読み込み時にタスクを実行する" -#: templates/admin.php:111 +#: templates/admin.php:113 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 は webcron サービスに登録されています。owncloud のルートにある cron.php のページを http 経由で1分に1回呼び出して下さい。" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "システムの cron サービスを利用する。システムの cronjob を通して1分に1回 owncloud 内の cron.php ファイルを呼び出して下さい。" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "共有" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "共有APIを有効にする" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "アプリからの共有APIの利用を許可する" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "リンクを許可する" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "リンクによりアイテムを公開することを許可する" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "再共有を許可する" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "ユーザが共有しているアイテムの再共有を許可する" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "ユーザが誰とでも共有することを許可する" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "ユーザにグループ内のユーザとのみ共有を許可する" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "セキュリティ" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "常にHTTPSを使用する" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "クライアントからownCloudへの接続を常に暗号化する" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "常にSSL接続を有効/無効にするために、HTTPS経由でこの ownCloud に接続して下さい。" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "ログ" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "もっと見る" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "閉じる" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "バージョン" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -389,72 +389,72 @@ msgstr "バグトラッカー" msgid "Commercial Support" msgstr "コマーシャルサポート" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "ファイルを同期するためのアプリを取得" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "初回ウィザードを再表示する" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "現在、<strong>%s</strong> / <strong>%s</strong> を利用しています" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "パスワード" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "パスワードを変更しました" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "パスワードを変更することができません" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Current password" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "新しいパスワードを入力" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "パスワードを変更" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "表示名" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "メール" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "あなたのメールアドレス" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "※パスワード回復を有効にするにはメールアドレスの入力が必要です" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "言語" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "翻訳に協力する" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ファイルマネージャでownCloudに接続する際はこのアドレスを利用してください" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 080a2845f18..fcd6fa39571 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Daisuke Deguchi <ddeguchi@nagoya-u.jp>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index 1242d91bdc2..5dea5056dfe 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/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: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "პაროლი" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ka/files.po b/l10n/ka/files.po index c0e4705a3b6..9a9ec4bd3f5 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/ka/files_encryption.po b/l10n/ka/files_encryption.po index 3b7fde71cf9..30ae56a19d1 100644 --- a/l10n/ka/files_encryption.po +++ b/l10n/ka/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index fa40092fd3a..f8c7d64fc69 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "პაროლი" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "გადმოწერა" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index ecb28020e5c..4fa2845d636 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "შველა" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "პერსონა" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "მომხმარებლები" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "ადმინისტრატორი" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP გადმოწერა გამორთულია" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index b058cbae3e6..f535dd229cf 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "ობიექტის ტიპი არ არის მითი #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "შეცდომა" @@ -246,7 +246,7 @@ msgstr "გაზიარებული" msgid "Share" msgstr "გაზიარება" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -282,87 +282,87 @@ msgstr "პაროლით დაცვა" msgid "Password" msgstr "პაროლი" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "ლინკის პიროვნების იმეილზე გაგზავნა" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "გაგზავნა" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "მიუთითე ვადის გასვლის დრო" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "ვადის გასვლის დრო" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "გააზიარე მეილზე" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "მომხმარებელი არ არის ნაპოვნი" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "მეორეჯერ გაზიარება არ არის დაშვებული" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "გაზიარდა {item}–ში {user}–ის მიერ" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "გაუზიარებადი" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "შეგიძლია შეცვლა" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "დაშვების კონტროლი" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "შექმნა" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "განახლება" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "წაშლა" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "გაზიარება" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "იმეილი გაიგზავნა" @@ -465,7 +465,7 @@ msgstr "წვდომა აკრძალულია" msgid "Cloud not found" msgstr "ღრუბელი არ არსებობს" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "web services under your control" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "კატეგორიების რედაქტირება" @@ -572,12 +568,12 @@ msgstr "მონაცემთა ბაზის ჰოსტი" msgid "Finish setup" msgstr "კონფიგურაციის დასრულება" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "გამოსვლა" @@ -611,7 +607,7 @@ msgstr "შესვლა" msgid "Alternative Logins" msgstr "ალტერნატიული Login–ი" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 93512471caa..473a92c4411 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "%s –ის გადატანა ვერ მოხერხდა msgid "Could not move %s" msgstr "%s –ის გადატანა ვერ მოხერხდა" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "ფაილი არ აიტვირთა. უცნობი შეცდომა" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ატვირთული ფაილი აჭარბებს MAX_FILE_SIZE დირექტივას, რომელიც მითითებულია HTML ფორმაში" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "ფაილი არ აიტვირთა" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "დროებითი საქაღალდე არ არსებობს" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "შეცდომა დისკზე ჩაწერისას" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "საცავში საკმარისი ადგილი არ არის" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "დაუშვებელი დირექტორია." diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index a5b3930bdb7..39799227c61 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index ec02bbc4eb7..555b8c7578d 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: drlinux64 <romeo@energo-pro.ge>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 8839318824d..3de78a630cd 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "პაროლი" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "გაგზავნა" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s–მა გაგიზიარათ ფოლდერი %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s–მა გაგიზიარათ ფაილი %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "ატვირთვა" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "წინასწარი დათვალიერება შეუძლებელია" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 62909f82cef..6a1aed832e2 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: drlinux64 <romeo@energo-pro.ge>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index f984197761a..40b370a4540 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "აპლიკაციები" msgid "Admin" msgstr "ადმინისტრატორი" +#: defaults.php:33 +msgid "web services under your control" +msgstr "web services under your control" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP download–ი გათიშულია" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index f6c1a317ffe..c8b25ab7350 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "შეცდომა მომხმარებლის შექმ msgid "A valid password must be provided" msgstr "უნდა მიუთითოთ არსებული პაროლი" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "უსაფრთხოების გაფრთხილება" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "თქვენი data დირექტორია და ფაილები არის დაშვებადი ინტერნეტიდან. .htaccess ფაილი რომელსაც ownCloud გვთავაზობს არ მუშაობს. ჩვენ გირჩევთ რომ თქვენი ვებსერვერი დააკონფიგურიროთ ისე რომ data დირექტორია არ იყოს დაშვებადი, ან გაიტანოთ data დირექტორია ვებსერვერის document root დირექტორიის გარეთ." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "გაფრთხილება დაყენებისას" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "გთხოვთ გადაათვალიეროთ <a href='%s'>ინსტალაციის გზამკვლევი</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "მოდული 'fileinfo' არ არსებობს" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "ლოკალიზაცია არ მუშაობს" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "თქვენი ownCloud სერვერი ვერ აყენებს %s სისტემურ ენას. ეს გულისხმობს იმას რომ შეიძლება შეიქმნას პრობლემა გარკვეულ სიმბოლოებზე ფაილის სახელებში. ჩვენ გიჩევთ რომ დააინსტალიროთ საჭირო პაკეტები თქვენს სისტემაზე იმისათვის რომ იყოს %s –ის მხარდაჭერა." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "ინტერნეტ კავშირი არ მუშაობს" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "ownCloud სერვერს არ გააჩნია ინტერნეტთან კავშირი. ეს ნიშნავს იმას რომ გარკვეული ფუნქციები როგორიცაა ექსტერნალ საცავების მონტირება, შეტყობინებები განახლების შესახებ ან სხვადასხვა 3rd აპლიკაციების ინსტალაცია არ იმუშავებს. ფაილებთან წვდომა გარე სამყაროდან და შეტყობინების იმეილებიც აგრეთვე არ იმუშავებს. ჩვენ გირჩევთ რომ ჩართოთ ინტერნეტ კავშირი ამ სერვერისთვის იმისათვის რომ გქონდეთ ownCloud–ის ყველა ფუნქცია გააქტიურებული." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron–ი" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე" -#: templates/admin.php:111 +#: templates/admin.php:113 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 რეგისტრირებულია webcron სერვისად. გაუშვით cron.php გვერდი რომელიც მოთავსებულია owncloud root დირექტორიაში, წუთში ერთხელ http–ით." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "გამოიყენე სისტემური cron სერვისი. გაუშვით cron.php ფაილი owncloud ფოლდერიდან სისტემურ cronjob–ში წუთში ერთხელ." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "გაზიარება" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Share API–ის ჩართვა" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "დაუშვი აპლიკაციების უფლება Share API –ზე" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "ლინკების დაშვება" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "გადაზიარების დაშვება" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "მიეცით მომხმარებლებს უფლება რომ გააზიაროს მისთვის გაზიარებული" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "მიეცით უფლება მომხმარებლებს გააზიაროს ყველასთვის" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "უსაფრთხოება" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "HTTPS–ის ჩართვა" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "ვაიძულოთ მომხმარებლები რომ დაუკავშირდნენ ownCloud დაცული კავშირით (https)." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "გთხოვთ დაუკავშირდეთ ownCloud–ს HTTPS–ით რომ შეძლოთ SSL–ის ჩართვა გამორთვა." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "ლოგი" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "ლოგირების დონე" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "უფრო მეტი" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,72 +387,72 @@ msgstr "ბაგთრექერი" msgid "Commercial Support" msgstr "კომერციული მხარდაჭერა" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "აპლიკაცია ფაილების სინქრონიზაციისთვის" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "მაჩვენე თავიდან გაშვებული ვიზარდი" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "თქვენ გამოყენებული გაქვთ <strong>%s</strong> –ი –<strong>%s<strong>–დან" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "პაროლი" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "თქვენი პაროლი შეიცვალა" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "თქვენი პაროლი არ შეიცვალა" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "მიმდინარე პაროლი" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "ახალი პაროლი" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "პაროლის შეცვლა" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "დისპლეის სახელი" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "იმეილი" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "თქვენი იმეილ მისამართი" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "ენა" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "თარგმნის დახმარება" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index c69322a81cb..5631f681507 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 6f26c46e571..aef3d399ed3 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/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: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/kn/files_encryption.po b/l10n/kn/files_encryption.po index ad0441068ff..227f1e73e33 100644 --- a/l10n/kn/files_encryption.po +++ b/l10n/kn/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/kn/files_sharing.po b/l10n/kn/files_sharing.po index fa93cd9bc38..2d27aa7fc36 100644 --- a/l10n/kn/files_sharing.po +++ b/l10n/kn/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:17 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 1b8144c8b1c..308114917bc 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 6c8d3c15fd5..1bb3e1c2337 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "객체 유형이 지정되지 않았습니다." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "오류" @@ -247,7 +247,7 @@ msgstr "공유됨" msgid "Share" msgstr "공유" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -283,87 +283,87 @@ msgstr "암호 보호" msgid "Password" msgstr "암호" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "이메일 주소" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "전송" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "만료 날짜 설정" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "만료 날짜" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "이메일로 공유:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "발견된 사람 없음" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "다시 공유할 수 없습니다" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "{user} 님과 {item}에서 공유 중" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "공유 해제" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "편집 가능" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "접근 제어" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "생성" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "업데이트" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "삭제" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "공유" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "이메일 발송됨" @@ -466,7 +466,7 @@ msgstr "접근 금지됨" msgid "Cloud not found" msgstr "클라우드를 찾을 수 없습니다" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "내가 관리하는 웹 서비스" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "분류 수정" @@ -573,12 +569,12 @@ msgstr "데이터베이스 호스트" msgid "Finish setup" msgstr "설치 완료" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "로그아웃" @@ -612,7 +608,7 @@ msgstr "로그인" msgid "Alternative Logins" msgstr "대체 " -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 02f2de9ec37..174365cb6d5 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -29,54 +29,54 @@ msgstr "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존 msgid "Could not move %s" msgstr "%s 항목을 이딩시키지 못하였음" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "파일 업로드에 성공하였습니다." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "업로드한 파일이 php.ini의 upload_max_filesize보다 큽니다:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "업로드한 파일 크기가 HTML 폼의 MAX_FILE_SIZE보다 큼" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "파일의 일부분만 업로드됨" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "파일이 업로드되지 않았음" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "임시 폴더가 없음" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "저장소가 용량이 충분하지 않습니다." -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." @@ -339,11 +339,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "파일" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "파일" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index dda825aea3e..8fe2f1bc3b3 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index b1264f0b78f..15d541fd1c8 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Shinjo Park <kde@peremen.name>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index d20b8c2b2d7..eea0b3fd38d 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "암호" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "제출" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s 님이 파일 %s을(를) 공유하였습니다" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "다운로드" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "업로드" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "다음 항목을 미리 볼 수 없음:" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 51952ac00ba..31d2cdd1846 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 68751435d60..dcdc5a8f3c4 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "앱" msgid "Admin" msgstr "관리자" +#: defaults.php:33 +msgid "web services under your control" +msgstr "내가 관리하는 웹 서비스" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP 다운로드가 비활성화되었습니다." diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 9f4bc83cf7a..0d5172981c3 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "사용자 생성 오류" msgid "A valid password must be provided" msgstr "올바른 암호를 입력해야 함" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "한국어" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "보안 경고" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "데이터 디렉터리와 파일을 인터넷에서 접근할 수 있는 것 같습니다. ownCloud에서 제공한 .htaccess 파일이 작동하지 않습니다. 웹 서버를 다시 설정하여 데이터 디렉터리에 접근할 수 없도록 하거나 문서 루트 바깥쪽으로 옮기는 것을 추천합니다." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "설정 경고" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "<a href='%s'>설치 가이드</a>를 다시 한 번 확인하십시오." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "모듈 'fileinfo'가 없음" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "로캘이 작동하지 않음" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "ownCloud 서버의 시스템 로캘을 %s(으)로 설정할 수 없습니다. 파일 이름에 특정한 글자가 들어가 있는 경우 문제가 발생할 수 있습니다. %s을(를) 지원하기 위해서 시스템에 필요한 패키지를 설치하는 것을 추천합니다." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "인터넷에 연결할 수 없음" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "ownCloud 서버에서 인터넷에 연결할 수 없습니다. 외부 저장소 마운트, 업데이트 알림, 외부 앱 설치 등이 작동하지 않을 것입니다. 외부에서 파일에 접근하거나, 알림 이메일을 보내지 못할 수도 있습니다. ownCloud의 모든 기능을 사용하려면 이 서버를 인터넷에 연결하는 것을 추천합니다." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "크론" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "개별 페이지를 불러올 때마다 실행" -#: templates/admin.php:111 +#: templates/admin.php:113 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가 webcron 서비스에 등록되어 있습니다. HTTP를 통하여 1분마다 ownCloud 루트에서 cron.php 페이지를 불러옵니다." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "시스템 cron 서비스를 사용합니다. 시스템 cronjob을 사용하여 ownCloud 폴더의 cron.php 파일을 1분마다 불러옵니다." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "공유" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "공유 API 사용하기" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "앱에서 공유 API를 사용할 수 있도록 허용" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "링크 허용" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "사용자가 개별 항목의 링크를 공유할 수 있도록 허용" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "재공유 허용" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "누구나와 공유할 수 있도록 허용" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "보안" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "HTTPS 강제 사용" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "클라이언트가 ownCloud에 항상 암호화된 연결로 연결하도록 강제합니다." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "SSL 강제 사용 설정을 변경하려면 ownCloud 인스턴스에 HTTPS로 연결하십시오." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "로그" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "로그 단계" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "더 중요함" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "버전" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,72 +387,72 @@ msgstr "버그 트래커" msgid "Commercial Support" msgstr "상업용 지원" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "파일 동기화 앱 가져오기" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "첫 실행 마법사 다시 보이기" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "현재 공간 중 <strong>%s</strong>/<strong>%s</strong>을(를) 사용 중입니다" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "암호" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "암호가 변경되었습니다" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "암호를 변경할 수 없음" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "현재 암호" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "새 암호" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "암호 변경" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "표시 이름" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "이메일" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "이메일 주소" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "언어" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "번역 돕기" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 987125a79b5..87bdb1b63a2 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 0fd020b4453..4ac07aa8ad9 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "ههڵه" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "وشەی تێپەربو" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "هیچ نهدۆزرایهوه" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "ڕاژهی وێب لهژێر چاودێریت دایه" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "هۆستی داتابهیس" msgid "Finish setup" msgstr "كۆتایی هات دهستكاریهكان" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "چوونەدەرەوە" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 429173c2381..8bb8996c190 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index 9dba4bd2e23..0adc093d2f9 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 76ec41b264e..4b8ef3247fb 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "ناردن" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s دابهشی کردووه بوخچهی %s لهگهڵ تۆ" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s دابهشی کردووه پهڕگهیی %s لهگهڵ تۆ" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "داگرتن" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "بارکردن" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "هیچ پێشبینیهك ئاماده نیه بۆ" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index aa153b72227..76ccae5add4 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index b51349ac441..c1bb63e5783 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "بهرنامهكان" msgid "Admin" msgstr "بهڕێوهبهری سهرهكی" +#: defaults.php:33 +msgid "web services under your control" +msgstr "ڕاژهی وێب لهژێر چاودێریت دایه" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 01cd6120963..b6b94ed7a5e 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "وشەی نهێنی نوێ" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "ئیمهیل" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index f5877e61277..15d557df5c0 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 537f0cfaa3e..ad26c4657f7 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Michel Weimerskirch <michel@weimerskirch.net>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -20,11 +21,11 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "Den/D' %s huet »%s« mat dir gedeelt" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "Typ vun der Kategorie net uginn." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -33,24 +34,24 @@ msgstr "Keng Kategorie fir bäizesetzen?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Dës Kategorie existéiert schon: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "Typ vum Objet net uginn." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID net uginn." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "Feeler beim dobäisetze vun %s bei d'Favoritten." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -59,19 +60,19 @@ msgstr "Keng Kategorien ausgewielt fir ze läschen." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "Feeler beim läsche vun %s aus de Favoritten." #: js/config.php:32 msgid "Sunday" -msgstr "Sonndes" +msgstr "Sonndeg" #: js/config.php:33 msgid "Monday" -msgstr "Méindes" +msgstr "Méindeg" #: js/config.php:34 msgid "Tuesday" -msgstr "Dënschdes" +msgstr "Dënschdeg" #: js/config.php:35 msgid "Wednesday" @@ -79,15 +80,15 @@ msgstr "Mëttwoch" #: js/config.php:36 msgid "Thursday" -msgstr "Donneschdes" +msgstr "Donneschdeg" #: js/config.php:37 msgid "Friday" -msgstr "Freides" +msgstr "Freideg" #: js/config.php:38 msgid "Saturday" -msgstr "Samschdes" +msgstr "Samschdeg" #: js/config.php:43 msgid "January" @@ -143,55 +144,55 @@ msgstr "Astellungen" #: js/js.js:721 msgid "seconds ago" -msgstr "" +msgstr "Sekonnen hir" #: js/js.js:722 msgid "1 minute ago" -msgstr "" +msgstr "1 Minutt hir" #: js/js.js:723 msgid "{minutes} minutes ago" -msgstr "" +msgstr "virun {minutes} Minutten" #: js/js.js:724 msgid "1 hour ago" -msgstr "vrun 1 Stonn" +msgstr "virun 1 Stonn" #: js/js.js:725 msgid "{hours} hours ago" -msgstr "vru {hours} Stonnen" +msgstr "virun {hours} Stonnen" #: js/js.js:726 msgid "today" -msgstr "" +msgstr "haut" #: js/js.js:727 msgid "yesterday" -msgstr "" +msgstr "gëschter" #: js/js.js:728 msgid "{days} days ago" -msgstr "" +msgstr "virun {days} Deeg" #: js/js.js:729 msgid "last month" -msgstr "Läschte Mount" +msgstr "leschte Mount" #: js/js.js:730 msgid "{months} months ago" -msgstr "vru {months} Méint" +msgstr "virun {months} Méint" #: js/js.js:731 msgid "months ago" -msgstr "Méint hier" +msgstr "Méint hir" #: js/js.js:732 msgid "last year" -msgstr "Läscht Joer" +msgstr "Lescht Joer" #: js/js.js:733 msgid "years ago" -msgstr "Joren hier" +msgstr "Joren hir" #: js/oc-dialogs.js:117 msgid "Choose" @@ -203,7 +204,7 @@ msgstr "Ofbriechen" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "Feeler beim Luede vun der Virlag fir d'Fichiers-Selektioun" #: js/oc-dialogs.js:164 msgid "Yes" @@ -220,185 +221,185 @@ msgstr "OK" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "" +msgstr "Den Typ vum Object ass net uginn." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" -msgstr "Fehler" +msgstr "Feeler" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "Den Numm vun der App ass net uginn." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "De benéidegte Fichier {file} ass net installéiert!" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "Gedeelt" #: js/share.js:90 msgid "Share" msgstr "Deelen" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" -msgstr "" +msgstr "Feeler beim Deelen" #: js/share.js:136 msgid "Error while unsharing" -msgstr "" +msgstr "Feeler beim Annuléiere vum Deelen" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "" +msgstr "Feeler beim Ännere vun de Rechter" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Gedeelt mat dir an der Grupp {group} vum {owner}" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Gedeelt mat dir vum {owner}" #: js/share.js:172 msgid "Share with" -msgstr "" +msgstr "Deele mat" #: js/share.js:177 msgid "Share with link" -msgstr "" +msgstr "Mat Link deelen" #: js/share.js:180 msgid "Password protect" -msgstr "" +msgstr "Passwuertgeschützt" #: js/share.js:182 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Passwuert" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Ëffentlechen Upload erlaaben" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" -msgstr "" +msgstr "Link enger Persoun mailen" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" -msgstr "" +msgstr "Schécken" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" -msgstr "" +msgstr "Verfallsdatum setzen" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" -msgstr "" +msgstr "Verfallsdatum" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" -msgstr "" +msgstr "Via E-Mail deelen:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" -msgstr "" +msgstr "Keng Persoune fonnt" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" -msgstr "" +msgstr "Weiderdeelen ass net erlaabt" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Gedeelt an {item} mat {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Net méi deelen" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" -msgstr "" +msgstr "kann änneren" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" -msgstr "" +msgstr "Zougrëffskontroll" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "erstellen" -#: js/share.js:345 +#: js/share.js:347 msgid "update" -msgstr "" +msgstr "aktualiséieren" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "läschen" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "deelen" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" -msgstr "" +msgstr "Passwuertgeschützt" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" -msgstr "" +msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." -msgstr "" +msgstr "Gëtt geschéckt..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" -msgstr "" +msgstr "Email geschéckt" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the <a " "href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " "community</a>." -msgstr "" +msgstr "Den Update war net erfollegräich. Mell dëse Problem w.e.gl der<a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud-Community</a>." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Den Update war erfollegräich. Du gëss elo bei d'ownCloud ëmgeleet." #: lostpassword/controller.php:60 msgid "ownCloud password reset" -msgstr "ownCloud Passwuert reset" +msgstr "Passwuert-Zrécksetzung vun der ownCloud" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Benotz folgende Link fir däi Passwuert ze reseten: {link}" +msgstr "Benotz folgende Link fir däi Passwuert zréckzesetzen: {link}" #: lostpassword/templates/lostpassword.php:4 msgid "" "The link to reset your password has been sent to your email.<br>If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.<br>If it is not there ask your local administrator ." -msgstr "" +msgstr "De Link fir d'Passwuert zréckzesetzen gouf un deng E-Mail-Adress geschéckt.<br>Falls du d'Mail net an den nächste Minutte kriss, kuck w.e.gl. an dengem Spam-Dossier.<br>Wann do och keng Mail ass, fro w.e.gl. däin Adminstrateur." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!<br>Did you make sure your email/username was right?" -msgstr "" +msgstr "Ufro feelfeschloen!<br>Hues du séchergestallt dass deng Email respektiv däi Benotzernumm korrekt sinn?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." -msgstr "Du kriss en Link fir däin Passwuert nei ze setzen via Email geschéckt." +msgstr "Du kriss e Link fir däi Passwuert zréckzesetze via Email geschéckt." #: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 #: templates/login.php:19 @@ -411,23 +412,23 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Deng Fichiere si verschlësselt. Falls du de Recuperatiouns-Schlëssel net aktivéiert hues, gëtt et keng Méiglechkeet nees un deng Daten ze komme wann däi Passwuert muss zréckgesat ginn. Falls du net sécher bass wat s de maache soll, kontaktéier w.e.gl däin Administrateur bevir s de weidermëss. Wëlls de wierklech weidermaachen?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Jo, ech wëll mäi Passwuert elo zrécksetzen" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" -msgstr "Reset ufroen" +msgstr "Zrécksetzung ufroen" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Dän Passwuert ass zeréck gesat gin" +msgstr "Däi Passwuert ass zréck gesat ginn" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Op d'Login Säit" +msgstr "Bei d'Login-Säit" #: lostpassword/templates/resetpassword.php:8 msgid "New password" @@ -435,7 +436,7 @@ msgstr "Neit Passwuert" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Passwuert zeréck setzen" +msgstr "Passwuert zréck setzen" #: strings.php:5 msgid "Personal" @@ -447,7 +448,7 @@ msgstr "Benotzer" #: strings.php:7 msgid "Apps" -msgstr "Applicatiounen" +msgstr "Applikatiounen" #: strings.php:8 msgid "Admin" @@ -459,13 +460,13 @@ msgstr "Hëllef" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Access net erlaabt" +msgstr "Zougrëff net erlaabt" #: templates/404.php:12 msgid "Cloud not found" msgstr "Cloud net fonnt" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -474,11 +475,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" - -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Web Servicer ënnert denger Kontroll" +msgstr "Hallo,\n\nech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.\nKucken: %s\n\nE schéine Bonjour!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -491,44 +488,44 @@ msgstr "Dobäisetzen" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "Sécherheets Warnung" +msgstr "Sécherheets-Warnung" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Deng PHP-Versioun ass verwonnbar duerch d'NULL-Byte-Attack (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Aktualiséier w.e.gl deng PHP-Installatioun fir ownCloud sécher benotzen ze kënnen." #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "Et ass kee sécheren Zoufallsgenerator verfügbar. Aktivéier w.e.gl d'OpenSSL-Erweiderung vu PHP." #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "Ouni e sécheren Zoufallsgenerator kann en Ugräifer d'Passwuert-Zrécksetzungs-Schlësselen viraussoen an en Account iwwerhuelen." #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Däin Daten-Dossier an deng Fichieren si wahrscheinlech iwwert den Internet accessibel well den .htaccess-Fichier net funktionnéiert." #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the <a " "href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " "target=\"_blank\">documentation</a>." -msgstr "" +msgstr "Kuck w.e.gl. an der <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">Dokumentatioun</a> fir Informatiounen iwwert eng uerdentlech Konfiguratioun vum Server." #: templates/installation.php:44 msgid "Create an <strong>admin account</strong>" -msgstr "En <strong>Admin Account</strong> uleeën" +msgstr "En <strong>Admin-Account</strong> uleeën" #: templates/installation.php:62 msgid "Advanced" @@ -536,11 +533,11 @@ msgstr "Avancéiert" #: templates/installation.php:64 msgid "Data folder" -msgstr "Daten Dossier" +msgstr "Daten-Dossier" #: templates/installation.php:74 msgid "Configure the database" -msgstr "Datebank konfiguréieren" +msgstr "D'Datebank konfiguréieren" #: templates/installation.php:79 templates/installation.php:91 #: templates/installation.php:102 templates/installation.php:113 @@ -550,11 +547,11 @@ msgstr "wärt benotzt ginn" #: templates/installation.php:137 msgid "Database user" -msgstr "Datebank Benotzer" +msgstr "Datebank-Benotzer" #: templates/installation.php:144 msgid "Database password" -msgstr "Datebank Passwuert" +msgstr "Datebank-Passwuert" #: templates/installation.php:149 msgid "Database name" @@ -562,38 +559,38 @@ msgstr "Datebank Numm" #: templates/installation.php:159 msgid "Database tablespace" -msgstr "Datebank Tabelle-Gréisst" +msgstr "Tabelle-Plaz vun der Datebank" #: templates/installation.php:166 msgid "Database host" -msgstr "Datebank Server" +msgstr "Datebank-Server" #: templates/installation.php:172 msgid "Finish setup" msgstr "Installatioun ofschléissen" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s ass verfügbar. Kréi méi Informatiounen doriwwer wéi d'Aktualiséierung ofleeft." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" -msgstr "Ausloggen" +msgstr "Ofmellen" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Automatesch Umeldung ofgeleent!" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "Falls du däi Passwuert net viru kuerzem geännert hues, kéint däin Account kompromittéiert sinn!" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "Änner w.e.gl däi Passwuert fir däin Account nees ofzesécheren." #: templates/login.php:34 msgid "Lost your password?" @@ -605,18 +602,18 @@ msgstr "verhalen" #: templates/login.php:41 msgid "Log in" -msgstr "Log dech an" +msgstr "Umellen" #: templates/login.php:47 msgid "Alternative Logins" -msgstr "" +msgstr "Alternativ Umeldungen" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " "href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "" +msgstr "Hallo,<br><br>ech wëll just Bescheed soen dass den/d' %s, »%s« mat dir gedeelt huet.<br><a href=\"%s\">Kucken!</a><br><br>E schéine Bonjour!" #: templates/part.pagenavi.php:3 msgid "prev" @@ -629,4 +626,4 @@ msgstr "weider" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "ownCloud gëtt op d'Versioun %s aktualiséiert, dat kéint e Moment daueren." diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 0a60428d1e3..720cad4f116 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Keen Feeler, Datei ass komplett ropgelueden ginn" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Et ass kee Fichier ropgeluede ginn" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "Datei" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "Dateien" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index 4f3830922dc..cecd9c33434 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index c27c1ab1b0c..70874c610ec 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 6aec99c9b4f..692772cf799 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Passwuert" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Fortschécken" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Download" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Eroplueden" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 97285009fd5..ada6fbf0ad2 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 7660f96f37c..ed2f0b3a455 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Michel Weimerskirch <michel@weimerskirch.net>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -35,12 +36,16 @@ msgstr "Benotzer" #: app.php:409 msgid "Apps" -msgstr "Applicatiounen" +msgstr "Applikatiounen" #: app.php:417 msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "Web-Servicer ënnert denger Kontroll" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" @@ -187,11 +192,11 @@ msgstr "" #: template.php:113 msgid "seconds ago" -msgstr "" +msgstr "Sekonnen hir" #: template.php:114 msgid "1 minute ago" -msgstr "" +msgstr "1 Minutt hir" #: template.php:115 #, php-format @@ -209,11 +214,11 @@ msgstr "" #: template.php:118 msgid "today" -msgstr "" +msgstr "haut" #: template.php:119 msgid "yesterday" -msgstr "" +msgstr "gëschter" #: template.php:120 #, php-format diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 1ec6db719b9..045ff019ec4 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Sécherheets Warnung" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Share API aschalten" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Erlab Apps d'Share API ze benotzen" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Links erlaben" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Resharing erlaben" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Useren erlaben mat egal wiem ze sharen" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Méi" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwuert" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Konnt däin Passwuert net änneren" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Momentan 't Passwuert" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Neit Passwuert" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Passwuert änneren" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Deng Email Adress" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Gëff eng Email Adress an fir d'Passwuert recovery ze erlaben" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Sprooch" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Hëllef iwwersetzen" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 1c9cc8bf655..71a2d7b367d 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 6a6cc42aa40..88897dd15c1 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -227,8 +227,8 @@ msgstr "Objekto tipas nenurodytas." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Klaida" @@ -248,7 +248,7 @@ msgstr "Dalinamasi" msgid "Share" msgstr "Dalintis" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -284,87 +284,87 @@ msgstr "Apsaugotas slaptažodžiu" msgid "Password" msgstr "Slaptažodis" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Nusiųsti nuorodą paštu" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Siųsti" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Nustatykite galiojimo laiką" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Galiojimo laikas" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Dalintis per el. paštą:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Žmonių nerasta" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Dalijinasis išnaujo negalimas" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Pasidalino {item} su {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Nebesidalinti" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "gali redaguoti" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "priėjimo kontrolė" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "sukurti" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "atnaujinti" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "ištrinti" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "dalintis" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Laiškas išsiųstas" @@ -467,7 +467,7 @@ msgstr "Priėjimas draudžiamas" msgid "Cloud not found" msgstr "Negalima rasti" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "jūsų valdomos web paslaugos" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Redaguoti kategorijas" @@ -574,12 +570,12 @@ msgstr "Duomenų bazės serveris" msgid "Finish setup" msgstr "Baigti diegimą" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s yra prieinama. Gaukite daugiau informacijos apie atnaujinimą." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Atsijungti" @@ -613,7 +609,7 @@ msgstr "Prisijungti" msgid "Alternative Logins" msgstr "Alternatyvūs prisijungimai" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index bf2758a3277..0c7153e7671 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Nepavyko perkelti %s - failas su tokiu pavadinimu jau egzistuoja" msgid "Could not move %s" msgstr "Nepavyko perkelti %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Failai nebuvo įkelti dėl nežinomos priežasties" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Failas įkeltas sėkmingai, be klaidų" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Įkeliamas failas yra didesnis nei leidžia upload_max_filesize php.ini faile:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nebuvo įkeltas joks failas" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nepakanka vietos serveryje" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Neteisingas aplankas" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "failas" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "failai" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index d3313e032e9..a17364ca8ec 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index b5bdde34973..f22ccdab212 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Min2liz <min2lizz@gmail.com>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 8f4d038b5cc..f74ed4a9209 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -19,35 +19,39 @@ msgstr "" "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/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Slaptažodis" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Išsaugoti" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s pasidalino su jumis %s aplanku" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s pasidalino su jumis %s failu" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Atsisiųsti" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Įkelti" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Peržiūra nėra galima" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 0013c8d571b..a2b69c2f486 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: fizikiukas <fizikiukas@gmail.com>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index d93ea778f27..66cf671d30f 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Programos" msgid "Admin" msgstr "Administravimas" +#: defaults.php:33 +msgid "web services under your control" +msgstr "jūsų valdomos web paslaugos" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP atsisiuntimo galimybė yra išjungta." diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index e73e68dd506..a07474a53a7 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Kalba" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Saugumo pranešimas" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "Jūsų duomenų aplankalas ir Jūsų failai turbūt yra pasiekiami per internetą. Failas .htaccess, kuris duodamas, neveikia. Mes rekomenduojame susitvarkyti savo nustatymsu taip, kad failai nebūtų pasiekiami per internetą, arba persikelti juos kitur." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Dalijimasis" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Žurnalo išsamumas" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Daugiau" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mažiau" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Atsisiųskite programėlių, kad sinchronizuotumėte savo failus" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Slaptažodis" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Jūsų slaptažodis buvo pakeistas" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Neįmanoma pakeisti slaptažodžio" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Dabartinis slaptažodis" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Naujas slaptažodis" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Pakeisti slaptažodį" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "El. Paštas" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Jūsų el. pašto adresas" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Pamiršto slaptažodžio atkūrimui įveskite savo el. pašto adresą" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Kalba" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Padėkite išversti" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 465a5efe892..90376da3b3d 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index b841d9d9d0e..7da79e40d04 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "Nav norādīts objekta tips." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Kļūda" @@ -246,7 +246,7 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Kļūda, daloties" @@ -282,87 +282,87 @@ msgstr "Aizsargāt ar paroli" msgid "Password" msgstr "Parole" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Sūtīt saiti personai pa e-pastu" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Sūtīt" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Iestaties termiņa datumu" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Termiņa datums" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Dalīties, izmantojot e-pastu:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Nav atrastu cilvēku" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Atkārtota dalīšanās nav atļauta" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Dalījās ar {item} ar {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "var rediģēt" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "piekļuves vadība" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "izveidot" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "atjaunināt" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "dzēst" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "dalīties" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Vēstule nosūtīta" @@ -465,7 +465,7 @@ msgstr "Pieeja ir liegta" msgid "Cloud not found" msgstr "Mākonis netika atrasts" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "tīmekļa servisi tavā varā" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Rediģēt kategoriju" @@ -572,12 +568,12 @@ msgstr "Datubāzes serveris" msgid "Finish setup" msgstr "Pabeigt iestatīšanu" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Izrakstīties" @@ -611,7 +607,7 @@ msgstr "Ierakstīties" msgid "Alternative Logins" msgstr "Alternatīvās pieteikšanās" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/lv/files.po b/l10n/lv/files.po index a4f197e3fc2..32bc8219e1b 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu" msgid "Could not move %s" msgstr "Nevarēja pārvietot %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Netika augšupielādēta neviena datne. Nezināma kļūda" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Viss kārtībā, datne augšupielādēta veiksmīga" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Augšupielādētā datne pārsniedz upload_max_filesize norādījumu php.ini datnē:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Augšupielādētā datne pārsniedz MAX_FILE_SIZE norādi, kas ir norādīta HTML formā" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Augšupielādētā datne ir tikai daļēji augšupielādēta" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Neviena datne netika augšupielādēta" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Trūkst pagaidu mapes" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Neizdevās saglabāt diskā" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nav pietiekami daudz vietas" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Nederīga direktorija." @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fails" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "faili" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index 3eb15d857dd..f75bfcbdf54 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index b0b2d44f5b3..5c9e7603ac2 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index bb8e9d14e73..75adae3d1c2 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Parole" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Iesniegt" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ar jums dalījās ar mapi %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ar jums dalījās ar datni %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Lejupielādēt" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Augšupielādēt" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Nav pieejams priekšskatījums priekš" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 8cea9972928..65e927e197d 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 02fcb9aed7b..caf1f8ab044 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Lietotnes" msgid "Admin" msgstr "Administratori" +#: defaults.php:33 +msgid "web services under your control" +msgstr "tīmekļa servisi tavā varā" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP lejupielādēšana ir izslēgta." diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index d2d55971cf2..d171e188262 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "Kļūda, veidojot lietotāju" msgid "A valid password must be provided" msgstr "Jānorāda derīga parole" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__valodas_nosaukums__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Brīdinājums par drošību" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "Jūsu datu direktorija un datnes visdrīzāk ir pieejamas no interneta. ownCloud nodrošinātā .htaccess datne nedarbojas. Mēs iesakām konfigurēt serveri tā, lai datu direktorija vairs nebūtu pieejama, vai arī pārvietojiet datu direktoriju ārpus tīmekļa servera dokumentu saknes." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Iestatīšanas brīdinājums" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Lūdzu, vēlreiz pārbaudiet <a href='%s'>instalēšanas palīdzību</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Trūkst modulis “fileinfo”" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Lokāle nestrādā" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Šis ownCloud serveris nevar iestatīt sistēmas lokāli uz %s. Tas nozīmē, ka varētu būt problēmas ar noteiktām rakstzīmēm datņu nosaukumos. Mēs iesakām instalēt vajadzīgās pakotnes savā sistēmā %s atbalstam." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Interneta savienojums nedarbojas" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "Šim ownCloud serverim nav strādājoša interneta savienojuma. Tas nozīmē, ka dažas no šīm iespējām, piemēram, ārējas krātuves montēšana, paziņošana par atjauninājumiem vai trešās puses programmatūras instalēšana nestrādā. Varētu nestrādāt attālināta piekļuve pie datnēm un paziņojumu e-pasta vēstuļu sūtīšana. Mēs iesakām aktivēt interneta savienojumu šim serverim, ja vēlaties visas ownCloud iespējas." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Izpildīt vienu uzdevumu ar katru ielādēto lapu" -#: templates/admin.php:111 +#: templates/admin.php:113 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 ir reģistrēts webcron servisā. Izsauciet cron.php lapu ownCloud saknē caur http reizi sekundē." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Izmantot sistēmas cron servisu. Izsauciet cron.php datni ownCloud mapē caur sistēmas cornjob reizi minūtē." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Dalīšanās" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Aktivēt koplietošanas API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Ļauj lietotnēm izmantot koplietošanas API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Atļaut saites" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Ļaut lietotājiem publiski dalīties ar vienumiem, izmantojot saites" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Atļaut atkārtotu koplietošanu" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Ļaut lietotājiem dalīties ar vienumiem atkārtoti" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Ļaut lietotājiem dalīties ar visiem" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Ļaut lietotājiem dalīties ar lietotājiem to grupās" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Drošība" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Uzspiest HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Piespiež klientus savienoties ar ownCloud caur šifrētu savienojumu." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Lūdzu, savienojieties ar šo ownCloud pakalpojumu caur HTTPS, lai aktivētu vai deaktivētu SSL piemērošanu." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Žurnāls" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Žurnāla līmenis" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Vairāk" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mazāk" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versija" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "Kļūdu sekotājs" msgid "Commercial Support" msgstr "Komerciālais atbalsts" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Saņem lietotnes, lai sinhronizētu savas datnes" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Vēlreiz rādīt pirmās palaišanas vedni" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Jūs lietojat <strong>%s</strong> no pieejamajiem <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parole" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Jūru parole tika nomainīta" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Nevar nomainīt jūsu paroli" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Pašreizējā parole" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Jauna parole" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Mainīt paroli" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Redzamais vārds" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-pasts" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Jūsu e-pasta adrese" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Ievadiet e-pasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Valoda" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Palīdzi tulkot" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Izmanto šo adresi, lai, izmantojot datņu pārvaldnieku, savienotos ar savu ownCloud" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 086785332b3..968bac58249 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 8fe352290e6..fe3f5ffb50f 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "Не е специфициран типот на објект." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Грешка" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Сподели" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -282,87 +282,87 @@ msgstr "Заштити со лозинка" msgid "Password" msgstr "Лозинка" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Прати врска по е-пошта на личност" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Прати" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Постави рок на траење" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Рок на траење" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Сподели по е-пошта:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Не се најдени луѓе" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Повторно споделување не е дозволено" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Споделено во {item} со {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Не споделувај" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "може да се измени" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "контрола на пристап" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "креирај" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "ажурирај" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "избриши" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "сподели" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Е-порака пратена" @@ -465,7 +465,7 @@ msgstr "Забранет пристап" msgid "Cloud not found" msgstr "Облакот не е најден" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "веб сервиси под Ваша контрола" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Уреди категории" @@ -572,12 +568,12 @@ msgstr "Сервер со база" msgid "Finish setup" msgstr "Заврши го подесувањето" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Одјава" @@ -611,7 +607,7 @@ msgstr "Најава" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 4c113c94f57..59c4d851c10 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Датотеката беше успешно подигната." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Големината на датотеката ја надминува MAX_FILE_SIZE директивата која беше специфицирана во HTML формата" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Не беше подигната датотека." -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Недостасува привремена папка" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "датотека" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "датотеки" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index 8aedce8814d..377a5a10467 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 9ce87f58a37..5ed406ad4a5 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index a0f85f679ec..efe3913c7dc 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Лозинка" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Прати" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ја сподели папката %s со Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ја сподели датотеката %s со Вас" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Преземи" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Подигни" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Нема достапно преглед за" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 891b3ea2b57..bf8427d9100 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index f34f004866f..ac5e6d37ea1 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Аппликации" msgid "Admin" msgstr "Админ" +#: defaults.php:33 +msgid "web services under your control" +msgstr "веб сервиси под Ваша контрола" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Преземање во ZIP е исклучено" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 6dcdbfc2f5b..12b0072562a 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Безбедносно предупредување" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "Вашата папка со податоци и датотеките е најверојатно достапна од интернет. .htaccess датотеката што ја овозможува ownCloud не фунционира. Силно препорачуваме да го исконфигурирате вашиот сервер за вашата папка со податоци не е достапна преку интернетт или преместете ја надвор од коренот на веб серверот." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Записник" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Ниво на логирање" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Повеќе" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Помалку" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Верзија" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "Комерцијална подршка" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Имате искористено <strong>%s</strong> од достапните <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Вашата лозинка беше променета." -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Вашата лозинка неможе да се смени" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Моментална лозинка" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Смени лозинка" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Вашата адреса за е-пошта" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Пополни ја адресата за е-пошта за да може да ја обновуваш лозинката" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Јазик" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Помогни во преводот" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Користете ја оваа адреса да " diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index d84b08f50c5..8596a89d1fa 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po new file mode 100644 index 00000000000..11842cfad46 --- /dev/null +++ b/l10n/ml_IN/core.po @@ -0,0 +1,628 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:97 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: js/config.php:32 +msgid "Sunday" +msgstr "" + +#: js/config.php:33 +msgid "Monday" +msgstr "" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "" + +#: js/config.php:36 +msgid "Thursday" +msgstr "" + +#: js/config.php:37 +msgid "Friday" +msgstr "" + +#: js/config.php:38 +msgid "Saturday" +msgstr "" + +#: js/config.php:43 +msgid "January" +msgstr "" + +#: js/config.php:44 +msgid "February" +msgstr "" + +#: js/config.php:45 +msgid "March" +msgstr "" + +#: js/config.php:46 +msgid "April" +msgstr "" + +#: js/config.php:47 +msgid "May" +msgstr "" + +#: js/config.php:48 +msgid "June" +msgstr "" + +#: js/config.php:49 +msgid "July" +msgstr "" + +#: js/config.php:50 +msgid "August" +msgstr "" + +#: js/config.php:51 +msgid "September" +msgstr "" + +#: js/config.php:52 +msgid "October" +msgstr "" + +#: js/config.php:53 +msgid "November" +msgstr "" + +#: js/config.php:54 +msgid "December" +msgstr "" + +#: js/js.js:289 +msgid "Settings" +msgstr "" + +#: js/js.js:721 +msgid "seconds ago" +msgstr "" + +#: js/js.js:722 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:723 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:724 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:725 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:726 +msgid "today" +msgstr "" + +#: js/js.js:727 +msgid "yesterday" +msgstr "" + +#: js/js.js:728 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:729 +msgid "last month" +msgstr "" + +#: js/js.js:730 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:731 +msgid "months ago" +msgstr "" + +#: js/js.js:732 +msgid "last year" +msgstr "" + +#: js/js.js:733 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:117 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:122 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:141 js/oc-dialogs.js:200 +msgid "Error loading file picker template" +msgstr "" + +#: js/oc-dialogs.js:164 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:172 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:185 +msgid "Ok" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:30 js/share.js:45 js/share.js:87 +msgid "Shared" +msgstr "" + +#: js/share.js:90 +msgid "Share" +msgstr "" + +#: js/share.js:125 js/share.js:660 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:136 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:143 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:152 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:154 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:172 +msgid "Share with" +msgstr "" + +#: js/share.js:177 +msgid "Share with link" +msgstr "" + +#: js/share.js:180 +msgid "Password protect" +msgstr "" + +#: js/share.js:182 templates/installation.php:54 templates/login.php:26 +msgid "Password" +msgstr "" + +#: js/share.js:187 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:191 +msgid "Email link to person" +msgstr "" + +#: js/share.js:192 +msgid "Send" +msgstr "" + +#: js/share.js:197 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:198 +msgid "Expiration date" +msgstr "" + +#: js/share.js:230 +msgid "Share via email:" +msgstr "" + +#: js/share.js:232 +msgid "No people found" +msgstr "" + +#: js/share.js:270 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:306 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:327 +msgid "Unshare" +msgstr "" + +#: js/share.js:339 +msgid "can edit" +msgstr "" + +#: js/share.js:341 +msgid "access control" +msgstr "" + +#: js/share.js:344 +msgid "create" +msgstr "" + +#: js/share.js:347 +msgid "update" +msgstr "" + +#: js/share.js:350 +msgid "delete" +msgstr "" + +#: js/share.js:353 +msgid "share" +msgstr "" + +#: js/share.js:387 js/share.js:607 +msgid "Password protected" +msgstr "" + +#: js/share.js:620 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:632 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:647 +msgid "Sending ..." +msgstr "" + +#: js/share.js:658 +msgid "Email sent" +msgstr "" + +#: js/update.js:14 +msgid "" +"The update was unsuccessful. Please report this issue to the <a " +"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " +"community</a>." +msgstr "" + +#: js/update.js:18 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:60 +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:4 +msgid "" +"The link to reset your password has been sent to your email.<br>If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.<br>If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:12 +msgid "Request failed!<br>Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: templates/login.php:19 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:22 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:24 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +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/altmail.php:4 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:24 templates/installation.php:31 +#: templates/installation.php:38 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:25 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:26 +msgid "Please update your PHP installation to use ownCloud securely." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:33 +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:39 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"For information how to properly configure your server, please see the <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" + +#: templates/installation.php:44 +msgid "Create an <strong>admin account</strong>" +msgstr "" + +#: templates/installation.php:62 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:64 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:74 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 +msgid "will be used" +msgstr "" + +#: templates/installation.php:137 +msgid "Database user" +msgstr "" + +#: templates/installation.php:144 +msgid "Database password" +msgstr "" + +#: templates/installation.php:149 +msgid "Database name" +msgstr "" + +#: templates/installation.php:159 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:166 +msgid "Database host" +msgstr "" + +#: templates/installation.php:172 +msgid "Finish setup" +msgstr "" + +#: templates/layout.user.php:43 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:68 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:34 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:39 +msgid "remember" +msgstr "" + +#: templates/login.php:41 +msgid "Log in" +msgstr "" + +#: templates/login.php:47 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:16 +#, php-format +msgid "" +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " +"href=\"%s\">View it!</a><br><br>Cheers!" +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po new file mode 100644 index 00000000000..90706b4f0b6 --- /dev/null +++ b/l10n/ml_IN/files.po @@ -0,0 +1,348 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:22 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:62 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:69 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:70 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:72 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:73 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:74 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:75 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:76 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:94 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:126 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:12 +msgid "Files" +msgstr "" + +#: js/file-upload.js:11 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:24 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:64 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:167 js/files.js:266 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:233 js/files.js:339 +msgid "URL cannot be empty." +msgstr "" + +#: js/file-upload.js:238 lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: js/file-upload.js:267 js/file-upload.js:283 js/files.js:373 js/files.js:389 +#: js/files.js:693 js/files.js:731 +msgid "Error" +msgstr "" + +#: js/fileactions.js:116 +msgid "Share" +msgstr "" + +#: js/fileactions.js:126 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:194 +msgid "Rename" +msgstr "" + +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +msgid "Pending" +msgstr "" + +#: js/filelist.js:302 js/filelist.js:304 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:302 js/filelist.js:304 +msgid "replace" +msgstr "" + +#: js/filelist.js:302 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:302 js/filelist.js:304 +msgid "cancel" +msgstr "" + +#: js/filelist.js:349 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:349 +msgid "undo" +msgstr "" + +#: js/filelist.js:374 +msgid "perform delete operation" +msgstr "" + +#: js/filelist.js:456 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:459 js/filelist.js:517 +msgid "files uploading" +msgstr "" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:231 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:344 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:744 templates/index.php:69 +msgid "Name" +msgstr "" + +#: js/files.js:745 templates/index.php:80 +msgid "Size" +msgstr "" + +#: js/files.js:746 templates/index.php:82 +msgid "Modified" +msgstr "" + +#: js/files.js:765 +msgid "1 folder" +msgstr "" + +#: js/files.js:767 +msgid "{count} folders" +msgstr "" + +#: js/files.js:775 +msgid "1 file" +msgstr "" + +#: js/files.js:777 +msgid "{count} files" +msgstr "" + +#: lib/app.php:73 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:42 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:48 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:54 +msgid "You don’t have write permissions here." +msgstr "" + +#: templates/index.php:61 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:75 +msgid "Download" +msgstr "" + +#: templates/index.php:87 templates/index.php:88 +msgid "Unshare" +msgstr "" + +#: templates/index.php:107 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:109 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:114 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:117 +msgid "Current scanning" +msgstr "" + +#: templates/part.list.php:78 +msgid "directory" +msgstr "" + +#: templates/part.list.php:80 +msgid "directories" +msgstr "" + +#: templates/part.list.php:89 +msgid "file" +msgstr "" + +#: templates/part.list.php:91 +msgid "files" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/ml_IN/files_encryption.po b/l10n/ml_IN/files_encryption.po new file mode 100644 index 00000000000..788f7259d4f --- /dev/null +++ b/l10n/ml_IN/files_encryption.po @@ -0,0 +1,172 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:51 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:53 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:7 +msgid "" +"Your private key is not valid! Likely your password was changed outside the " +"ownCloud system (e.g. your corporate directory). You can update your private" +" key password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: hooks/hooks.php:44 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:45 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" + +#: js/settings-admin.js:11 +msgid "Saving..." +msgstr "" + +#: templates/invalid_private_key.php:5 +msgid "" +"Your private key is not valid! Maybe the your password was changed from " +"outside." +msgstr "" + +#: templates/invalid_private_key.php:7 +msgid "You can unlock your private key in your " +msgstr "" + +#: templates/invalid_private_key.php:7 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:5 templates/settings-personal.php:4 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:10 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:54 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:62 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:41 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:48 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:14 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:16 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:24 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:30 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:35 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:45 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:47 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:63 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:64 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/ml_IN/files_external.po b/l10n/ml_IN/files_external.po new file mode 100644 index 00000000000..1b638a2af4f --- /dev/null +++ b/l10n/ml_IN/files_external.po @@ -0,0 +1,123 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:66 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:36 js/google.js:93 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:431 +msgid "" +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:434 +msgid "" +"<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: lib/config.php:437 +msgid "" +"<b>Warning:</b> The Curl support in PHP is not enabled or installed. " +"Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " +"your system administrator to install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/ml_IN/files_sharing.po b/l10n/ml_IN/files_sharing.po new file mode 100644 index 00000000000..dbf8befe5f9 --- /dev/null +++ b/l10n/ml_IN/files_sharing.po @@ -0,0 +1,56 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:9 +msgid "Submit" +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:20 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:28 templates/public.php:90 +msgid "Download" +msgstr "" + +#: templates/public.php:45 templates/public.php:48 +msgid "Upload" +msgstr "" + +#: templates/public.php:58 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:87 +msgid "No preview available for" +msgstr "" diff --git a/l10n/ml_IN/files_trashbin.po b/l10n/ml_IN/files_trashbin.po new file mode 100644 index 00000000000..6aae4c87314 --- /dev/null +++ b/l10n/ml_IN/files_trashbin.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:97 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +msgid "Error" +msgstr "" + +#: js/trash.js:34 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:123 +msgid "Delete permanently" +msgstr "" + +#: js/trash.js:176 templates/index.php:17 +msgid "Name" +msgstr "" + +#: js/trash.js:177 templates/index.php:27 +msgid "Deleted" +msgstr "" + +#: js/trash.js:186 +msgid "1 folder" +msgstr "" + +#: js/trash.js:188 +msgid "{count} folders" +msgstr "" + +#: js/trash.js:196 +msgid "1 file" +msgstr "" + +#: js/trash.js:198 +msgid "{count} files" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "" + +#: templates/index.php:30 templates/index.php:31 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/ml_IN/files_versions.po b/l10n/ml_IN/files_versions.po new file mode 100644 index 00000000000..7fbfa21dcc7 --- /dev/null +++ b/l10n/ml_IN/files_versions.po @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:69 +msgid "No old versions available" +msgstr "" + +#: history.php:74 +msgid "No path specified" +msgstr "" + +#: js/versions.js:6 +msgid "Versions" +msgstr "" + +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po new file mode 100644 index 00000000000..d4532ad9a44 --- /dev/null +++ b/l10n/ml_IN/lib.po @@ -0,0 +1,247 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:360 +msgid "Help" +msgstr "" + +#: app.php:373 +msgid "Personal" +msgstr "" + +#: app.php:384 +msgid "Settings" +msgstr "" + +#: app.php:396 +msgid "Users" +msgstr "" + +#: app.php:409 +msgid "Apps" +msgstr "" + +#: app.php:417 +msgid "Admin" +msgstr "" + +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + +#: files.php:210 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:211 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:212 files.php:245 +msgid "Back to Files" +msgstr "" + +#: files.php:242 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: helper.php:236 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: setup/abstractdatabase.php:22 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: setup/abstractdatabase.php:25 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: setup/abstractdatabase.php:28 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 +#: setup/postgresql.php:24 setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: setup/mysql.php:12 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 +#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 +#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 +#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 +#: setup/postgresql.php:125 setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 +#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 +#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 +#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "" + +#: setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: setup/oci.php:41 setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: setup/oci.php:173 setup/oci.php:205 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: setup/postgresql.php:23 setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: setup.php:42 +msgid "Set an admin username." +msgstr "" + +#: setup.php:45 +msgid "Set an admin password." +msgstr "" + +#: setup.php:198 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: setup.php:199 +#, php-format +msgid "Please double check the <a href='%s'>installation guides</a>." +msgstr "" + +#: template.php:113 +msgid "seconds ago" +msgstr "" + +#: template.php:114 +msgid "1 minute ago" +msgstr "" + +#: template.php:115 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:116 +msgid "1 hour ago" +msgstr "" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:118 +msgid "today" +msgstr "" + +#: template.php:119 +msgid "yesterday" +msgstr "" + +#: template.php:120 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:121 +msgid "last month" +msgstr "" + +#: template.php:122 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:123 +msgid "last year" +msgstr "" + +#: template.php:124 +msgid "years ago" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po new file mode 100644 index 00000000000..f41b43f4472 --- /dev/null +++ b/l10n/ml_IN/settings.po @@ -0,0 +1,506 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: js/apps.js:35 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:41 js/apps.js:81 +msgid "Disable" +msgstr "" + +#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +msgid "Enable" +msgstr "" + +#: js/apps.js:60 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 +msgid "Error" +msgstr "" + +#: js/apps.js:95 +msgid "Updating...." +msgstr "" + +#: js/apps.js:98 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:101 +msgid "Updated" +msgstr "" + +#: js/personal.js:118 +msgid "Saving..." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 +msgid "Groups" +msgstr "" + +#: js/users.js:95 templates/users.php:89 templates/users.php:124 +msgid "Group Admin" +msgstr "" + +#: js/users.js:115 templates/users.php:164 +msgid "Delete" +msgstr "" + +#: js/users.js:269 +msgid "add group" +msgstr "" + +#: js/users.js:428 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:429 js/users.js:435 js/users.js:450 +msgid "Error creating user" +msgstr "" + +#: js/users.js:434 +msgid "A valid password must be provided" +msgstr "" + +#: personal.php:37 personal.php:38 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:17 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:20 +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 "Setup Warning" +msgstr "" + +#: templates/admin.php:34 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:35 +#, php-format +msgid "Please double check the <a href='%s'>installation guides</a>." +msgstr "" + +#: templates/admin.php:46 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:49 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:60 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:65 +#, php-format +msgid "" +"This ownCloud server can't set system locale to %s. This means that there " +"might be problems with certain characters in file names. We strongly suggest" +" to install the required packages on your system to support %s." +msgstr "" + +#: templates/admin.php:77 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:80 +msgid "" +"This ownCloud server has no working internet connection. This means that " +"some of the features like mounting of external storage, notifications about " +"updates or installation of 3rd party apps don´t work. Accessing files from " +"remote and sending of notification emails might also not work. We suggest to" +" enable internet connection for this server if you want to have all features" +" of ownCloud." +msgstr "" + +#: templates/admin.php:94 +msgid "Cron" +msgstr "" + +#: templates/admin.php:103 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:113 +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:123 +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:130 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:136 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:137 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:144 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:145 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:152 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:153 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:160 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:163 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:170 +msgid "Security" +msgstr "" + +#: templates/admin.php:183 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:184 +msgid "" +"Enforces the clients to connect to ownCloud via an encrypted connection." +msgstr "" + +#: templates/admin.php:187 +msgid "" +"Please connect to this ownCloud instance via HTTPS to enable or disable the " +"SSL enforcement." +msgstr "" + +#: templates/admin.php:197 +msgid "Log" +msgstr "" + +#: templates/admin.php:198 +msgid "Log level" +msgstr "" + +#: templates/admin.php:229 +msgid "More" +msgstr "" + +#: templates/admin.php:230 +msgid "Less" +msgstr "" + +#: templates/admin.php:236 templates/personal.php:116 +msgid "Version" +msgstr "" + +#: templates/admin.php:240 templates/personal.php:119 +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:13 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:41 +msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +msgstr "" + +#: templates/apps.php:43 +msgid "Update" +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:10 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:21 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:29 +#, php-format +msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" +msgstr "" + +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +msgid "Password" +msgstr "" + +#: templates/personal.php:42 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:43 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:44 +msgid "Current password" +msgstr "" + +#: templates/personal.php:46 +msgid "New password" +msgstr "" + +#: templates/personal.php:48 +msgid "Change password" +msgstr "" + +#: templates/personal.php:60 templates/users.php:85 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:75 +msgid "Email" +msgstr "" + +#: templates/personal.php:77 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:78 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:87 templates/personal.php:88 +msgid "Language" +msgstr "" + +#: templates/personal.php:100 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:106 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:108 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:21 +msgid "Login Name" +msgstr "" + +#: templates/users.php:30 +msgid "Create" +msgstr "" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:48 templates/users.php:142 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:66 templates/users.php:157 +msgid "Other" +msgstr "" + +#: templates/users.php:84 +msgid "Username" +msgstr "" + +#: templates/users.php:91 +msgid "Storage" +msgstr "" + +#: templates/users.php:102 +msgid "change display name" +msgstr "" + +#: templates/users.php:106 +msgid "set new password" +msgstr "" + +#: templates/users.php:137 +msgid "Default" +msgstr "" diff --git a/l10n/ml_IN/user_ldap.po b/l10n/ml_IN/user_ldap.po new file mode 100644 index 00000000000..0488df2f5a2 --- /dev/null +++ b/l10n/ml_IN/user_ldap.po @@ -0,0 +1,419 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:36 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:43 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:111 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:112 +msgid "Success" +msgstr "" + +#: js/settings.js:117 +msgid "Error" +msgstr "" + +#: js/settings.js:141 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:146 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:156 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:157 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:9 +msgid "" +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:12 +msgid "" +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:16 +msgid "Server configuration" +msgstr "" + +#: templates/settings.php:32 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:37 +msgid "Host" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:40 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:41 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:42 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:44 +msgid "User DN" +msgstr "" + +#: templates/settings.php:46 +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:47 +msgid "Password" +msgstr "" + +#: templates/settings.php:50 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:51 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:54 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:55 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:56 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:59 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:60 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:61 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:64 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:65 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:69 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:71 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:71 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:72 +msgid "Port" +msgstr "" + +#: templates/settings.php:73 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:73 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:74 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:75 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:75 +msgid "When switched on, ownCloud will only connect to the replica server." +msgstr "" + +#: templates/settings.php:76 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:76 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:77 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:78 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:78 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:78 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:79 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:79 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:81 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:83 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:83 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:84 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:84 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:85 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:85 templates/settings.php:88 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:86 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:86 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:87 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:87 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:88 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:89 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:91 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:93 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:94 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:94 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:95 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:96 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:96 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:101 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:102 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder in " +"ownCloud. It is also a port of remote URLs, for instance for all *DAV " +"services. With this setting, the default behaviour can be overriden. To " +"achieve a similar behaviour as before ownCloud 5 enter the user display name" +" attribute in the following field. Leave it empty for default behaviour. " +"Changes will have effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:103 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:104 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:105 +msgid "" +"By default, ownCloud autodetects the UUID attribute. The UUID attribute is " +"used to doubtlessly identify LDAP users and groups. Also, the internal " +"username will be created based on the UUID, if not specified otherwise " +"above. You can override the setting and pass an attribute of your choice. " +"You must make sure that the attribute of your choice can be fetched for both" +" users and groups and it is unique. Leave it empty for default behaviour. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:106 +msgid "UUID Attribute:" +msgstr "" + +#: templates/settings.php:107 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:108 +msgid "" +"ownCloud uses usernames to store and assign (meta) data. In order to " +"precisely identify and recognize users, each LDAP user will have a internal " +"username. This requires a mapping from ownCloud username to LDAP user. The " +"created username is mapped to the UUID of the LDAP user. Additionally the DN" +" is cached as well to reduce LDAP interaction, but it is not used for " +"identification. If the DN changes, the changes will be found by ownCloud. " +"The internal ownCloud name is used all over in ownCloud. Clearing the " +"Mappings will have leftovers everywhere. Clearing the Mappings is not " +"configuration sensitive, it affects all LDAP configurations! Do never clear " +"the mappings in a production environment. Only clear mappings in a testing " +"or experimental stage." +msgstr "" + +#: templates/settings.php:109 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:109 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" + +#: templates/settings.php:111 +msgid "Test Configuration" +msgstr "" + +#: templates/settings.php:111 +msgid "Help" +msgstr "" diff --git a/l10n/ml_IN/user_webdavauth.po b/l10n/ml_IN/user_webdavauth.po new file mode 100644 index 00000000000..883156e8a55 --- /dev/null +++ b/l10n/ml_IN/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "URL: " +msgstr "" + +#: templates/settings.php:7 +msgid "" +"ownCloud will send the user credentials to this URL. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 229d3b0b688..185ab287860 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Ralat" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Kongsi" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "Kata laluan" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "Larangan akses" msgid "Cloud not found" msgstr "Awan tidak dijumpai" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Perkhidmatan web di bawah kawalan anda" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Ubah kategori" @@ -572,12 +568,12 @@ msgstr "Hos pangkalan data" msgid "Finish setup" msgstr "Setup selesai" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Log keluar" @@ -611,7 +607,7 @@ msgstr "Log masuk" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index d7a2b167293..072b7e4ad38 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat berlaku, fail berjaya dimuatnaik" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Fail yang dimuatnaik tidak lengkap" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Tiada fail dimuatnaik" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Direktori sementara hilang" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fail" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "fail" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index 32e0b37b83b..80ba103e3db 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 03c2064fae9..48b59109ca9 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 66399c89a28..ad14d0dbe33 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Kata laluan" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Hantar" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Muat turun" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Muat naik" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index d0b78cc6f33..82896e576a2 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index acc4c08fe4b..865908299ae 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Aplikasi" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "Perkhidmatan web di bawah kawalan anda" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 9a47350530a..112f4c85146 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "_nama_bahasa_" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Amaran keselamatan" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Tahap Log" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Lanjutan" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Kata laluan" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Gagal mengubah kata laluan anda " -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Kata laluan semasa" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Kata laluan baru" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Ubah kata laluan" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Alamat emel anda" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Isi alamat emel anda untuk membolehkan pemulihan kata laluan" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Bantu terjemah" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index caf097cb1a9..9be97dc1d52 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index eaf0152b6fa..610e8449fda 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/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: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:04+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "စကားဝှက်" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်သတ်မှတ်မည်" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "ပြင်ဆင်နိုင်" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "ဖန်တီးမည်" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "ဖျက်မည်" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "မတွေ့ရှိမိပါ" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "တပ်ဆင်ခြင်းပြီးပါပြီ။" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "ဝင်ရောက်ရန်" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index ae1645b5af8..7a64b72c497 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index 34ad4d6608f..3465eb2405e 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 2d2b871ee13..0ee4e87ece3 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "စကားဝှက်" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "ထည့်သွင်းမည်" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 9d3f5cdca4a..532100aa172 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Apps" msgid "Admin" msgstr "အက်ဒမင်" +#: defaults.php:33 +msgid "web services under your control" +msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index d6d9c3b428f..dde2411973c 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Feil" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Del" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Feil under deling" @@ -282,87 +282,87 @@ msgstr "Passordbeskyttet" msgid "Password" msgstr "Passord" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Send" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Set utløpsdato" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Utløpsdato" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Del på epost" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Ingen personer funnet" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Avslutt deling" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kan endre" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "opprett" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "oppdater" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "slett" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "del" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-post sendt" @@ -465,7 +465,7 @@ msgstr "Tilgang nektet" msgid "Cloud not found" msgstr "Sky ikke funnet" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "web tjenester du kontrollerer" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Rediger kategorier" @@ -572,12 +568,12 @@ msgstr "Databasevert" msgid "Finish setup" msgstr "Fullfør oppsetting" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Logg ut" @@ -611,7 +607,7 @@ msgstr "Logg inn" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index b01fa174e50..248c28d80f0 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Kan ikke flytte %s - En fil med samme navn finnes allerede" msgid "Could not move %s" msgstr "Kunne ikke flytte %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Pust ut, ingen feil. Filen ble lastet opp problemfritt" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Filstørrelsen overskrider maksgrensedirektivet upload_max_filesize i php.ini-konfigurasjonen." -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Filen du prøvde å laste opp ble kun delvis lastet opp" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ingen filer ble lastet opp" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Mangler midlertidig mappe" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Klarte ikke å skrive til disk" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Ikke nok lagringsplass" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Ugyldig katalog." @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fil" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "filer" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index a9169b40688..0daabad1ea7 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 7802e35c2b7..1d97e787ae2 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index b2459ccc8ba..91e6d217ffc 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Passord" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Send inn" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med deg" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med deg" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Last ned" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Last opp" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgjengelig for" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 9c5251eea99..94d766edc44 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index bb3bd74a1e5..97ff43c3093 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Apper" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "web tjenester du kontrollerer" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP-nedlasting av avslått" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 13ae361aff0..a87b638d779 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Feil ved oppretting av bruker" msgid "A valid password must be provided" msgstr "Oppgi et gyldig passord" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Sikkerhetsadvarsel" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "Ditt data mappe og dine filer er sannsynligvis tilgjengelig fra internet. .htaccess filene som ownCloud bruker virker ikke. Du bør konfigurere din nettserver slik at data mappa ikke lenger er tilgjengelig eller flytt data mappe ut av nettserverens dokumentområde." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Installasjonsadvarsel" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Vennligst dobbelsjekk <a href='%s'>installasjonsguiden</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Modulen 'fileinfo' mangler" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Språk virker ikke" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Denne ownCloud serveren kan ikke sette systemspråk til %s. Det kan være problemer med visse tegn i filnavn. Vi foreslår at du installerer de nødvendige pakkene på ditt system for å støtte %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Ingen internettilkopling" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "Denne ownCloud serveren har ikke tilkopling til internett. Noen funksjoner som f.eks. tilkopling til ekstern lager, melgin om oppdatering og installasjon av tredjeparts apps vil ikke virke. Vi foreslår at du aktivere en internettilkopling til denne serveren hvis du vil bruke alle funksjonene i ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Utfør en oppgave med hver side som blir lastet" -#: templates/admin.php:111 +#: templates/admin.php:113 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 er registrert som webcron-tjeneste. Kjør cron.php siden i ownCloud rot hvert minutt vha http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Bruk systemets crontjeneste. Kjør cron.php filen i owncloud mappa vha systemets crontjeneste hver minutt." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Aktiver API for Deling" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Tillat apps å bruke API for Deling" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Tillat lenker" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Tillat brukere å dele filer med lenker" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "TIllat videredeling" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Tillat brukere å dele filer som allerede har blitt delt med dem" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Tillat brukere å dele med alle" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Tillat kun deling med andre brukere i samme gruppe" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Sikkerhet" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Tving HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Tvinger klienter til å bruke ownCloud via kryptert tilkopling." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Vær vennlig, bruk denne ownCloud instansen via HTTPS for å aktivere eller deaktivere tvungen bruk av SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Logg" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Loggnivå" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mer" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mindre" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versjon" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,72 +387,72 @@ msgstr "Feilsporing" msgid "Commercial Support" msgstr "Kommersiell støtte" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Få dine apps til å synkronisere dine filer" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Vis \"Førstegangs veiveiseren\" på nytt" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Du har brukt <strong>%s</strong> av tilgjengelig <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passord" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Passord har blitt endret" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Kunne ikke endre passordet ditt" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Nåværende passord" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Endre passord" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Visningsnavn" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Epost" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Din e-postadresse" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Oppi epostadressen du vil tilbakestille passordet for" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Språk" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Bidra til oversettelsen" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bruk denne adressen for å kople til ownCloud i din filbehandler" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 85d10245054..9601f74a6e5 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 00c0dcd7236..a8062fa9dbd 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/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: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ne/files_encryption.po b/l10n/ne/files_encryption.po index cead23af395..53e5a46e007 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ne/files_sharing.po b/l10n/ne/files_sharing.po index 8827c53476c..4dc2fd5cd44 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:17 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 1823499d29c..37489e0ed64 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 2de87d5e602..0c87a81b4ce 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "Het object type is niet gespecificeerd." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Fout" @@ -248,7 +248,7 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -284,87 +284,87 @@ msgstr "Wachtwoord beveiligd" msgid "Password" msgstr "Wachtwoord" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Sta publieke uploads toe" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "E-mail link naar persoon" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Versturen" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Stel vervaldatum in" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Vervaldatum" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Deel via e-mail:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Geen mensen gevonden" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Verder delen is niet toegestaan" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Gedeeld in {item} met {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Stop met delen" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kan wijzigen" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "toegangscontrole" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "creëer" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "bijwerken" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "verwijderen" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "deel" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-mail verzonden" @@ -467,7 +467,7 @@ msgstr "Toegang verboden" msgid "Cloud not found" msgstr "Cloud niet gevonden" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "Hallo daar,\n\n%s deelde %s met jou.\nBekijk: %s\n\nVeel plezier!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Webdiensten in eigen beheer" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Wijzig categorieën" @@ -574,12 +570,12 @@ msgstr "Databaseserver" msgid "Finish setup" msgstr "Installatie afronden" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s is beschikbaar. Verkrijg meer informatie over het bijwerken." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Afmelden" @@ -613,7 +609,7 @@ msgstr "Meld je aan" msgid "Alternative Logins" msgstr "Alternatieve inlogs" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 9a2214cfa9c..9f219fcaf7e 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam" msgid "Could not move %s" msgstr "Kon %s niet verplaatsen" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Kan upload map niet instellen." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Ongeldig Token" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "De upload van het bestand is goedgegaan." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Het geüploade bestand overscheidt de upload_max_filesize optie in php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is gedeeltelijk geüpload" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Er is geen bestand geüpload" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Er ontbreekt een tijdelijke map" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Niet genoeg opslagruimte beschikbaar" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Ongeldige directory." @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "bestand" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "bestanden" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index 9e02619d6f6..d69aec28385 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -63,14 +63,15 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "PHP module OpenSSL is niet geïnstalleerd." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Vraag uw beheerder deze module te installeren. Tot zolang is de crypto app gedeactiveerd." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 1ce3e1369cd..2d860f3e028 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 097637f5d7b..fdeb19a94bb 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Wachtwoord" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Verzenden" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deelt de map %s met u" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt het bestand %s met u" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Downloaden" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Uploaden" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index ca757c30afd..ff4c1a2d60b 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 74367ab03a6..aa4df2410e3 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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Apps" msgid "Admin" msgstr "Beheerder" +#: defaults.php:33 +msgid "web services under your control" +msgstr "Webdiensten in eigen beheer" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP download is uitgeschakeld." diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index d8f83970b96..303d72eef1f 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Fout bij aanmaken gebruiker" msgid "A valid password must be provided" msgstr "Er moet een geldig wachtwoord worden opgegeven" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Nederlands" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Beveiligingswaarschuwing" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Uw data is waarschijnlijk toegankelijk vanaf net internet. Het .htaccess bestand dat ownCloud levert werkt niet goed. U wordt aangeraden om de configuratie van uw webserver zodanig aan te passen dat de data folders niet meer publiekelijk toegankelijk zijn. U kunt ook de data folder verplaatsen naar een folder buiten de webserver document folder." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Instellingswaarschuwing" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Controleer de <a href='%s'>installatiehandleiding</a> goed." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' ontbreekt" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Taalbestand werkt niet" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Deze ownCloud server kan de systeemtaal niet instellen op %s. Hierdoor kunnen er mogelijk problemen optreden met bepaalde tekens in bestandsnamen. Het wordt sterk aangeraden om de vereiste pakketen op uw systeem te installeren zodat %s ondersteund wordt." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Internet verbinding werkt niet" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Deze ownCloud server heeft geen actieve internet verbinding. dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internet verbinding voor deze server in te schakelen als u alle functies van ownCloud wilt gebruiken." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Bij laden van elke pagina één taak uitvoeren" -#: templates/admin.php:111 +#: templates/admin.php:113 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 is geregistreerd bij een webcron service. Roep eens per minuut de cron.php pagina aan over http in de ownCloud root." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Gebruik de systems cron service. Roep eens per minuut de cron.php file in de ownCloud map via een systeem cronjob." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Delen" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Activeren Share API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Apps toestaan de Share API te gebruiken" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Toestaan links" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Toestaan dat gebruikers objecten met links delen met anderen" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Toestaan opnieuw delen" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Toestaan dat gebruikers met iedereen delen" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Instellen dat gebruikers alleen met leden binnen hun groepen delen" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Beveiliging" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Afdwingen HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Afdwingen dat de clients alleen via versleutelde verbinding contact maken met ownCloud." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Maak via HTTPS verbinding met deze ownCloud inrichting om het afdwingen van gebruik van SSL te activeren of deactiveren." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Meer" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Minder" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versie" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -388,72 +388,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Commerciële ondersteuning" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Download de apps om bestanden te syncen" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Toon de Eerste start Wizard opnieuw" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Je hebt <strong>%s</strong> gebruikt van de beschikbare <strong>%s<strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Wachtwoord" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Je wachtwoord is veranderd" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Niet in staat om uw wachtwoord te wijzigen" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Huidig wachtwoord" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nieuw" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Wijzig wachtwoord" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Weergavenaam" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mailadres" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Uw e-mailadres" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Vul een mailadres in om je wachtwoord te kunnen herstellen" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Taal" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Help met vertalen" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Gebruik dit adres om te verbinden met uw ownCloud in uw bestandsbeheer" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 208eee2c59a..45c938c6910 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: André Koot <meneer@tken.net>\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 590397fa372..29e221351c8 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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -227,8 +227,8 @@ msgstr "Objekttypen er ikkje spesifisert." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Feil" @@ -248,7 +248,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Feil ved deling" @@ -284,87 +284,87 @@ msgstr "Passordvern" msgid "Password" msgstr "Passord" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Send lenkja over e-post" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Send" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Set utløpsdato" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Utløpsdato" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Del over e-post:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Fann ingen personar" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Vidaredeling er ikkje tillate" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {brukar}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Udel" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kan endra" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "lag" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "oppdater" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "slett" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "del" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Passordverna" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-post sendt" @@ -467,7 +467,7 @@ msgstr "Tilgang forbudt" msgid "Cloud not found" msgstr "Fann ikkje skyen" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Vev tjenester under din kontroll" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Endra kategoriar" @@ -574,12 +570,12 @@ msgstr "Databasetenar" msgid "Finish setup" msgstr "Fullfør oppsettet" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s er tilgjengeleg. Få meir informasjon om korleis du oppdaterer." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Logg ut" @@ -613,7 +609,7 @@ msgstr "Logg inn" msgid "Alternative Logins" msgstr "Alternative innloggingar" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 9c7ec67ddce..d7130bd85d5 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -29,54 +29,54 @@ msgstr "Klarte ikkje flytta %s – det finst allereie ei fil med dette namnet" msgid "Could not move %s" msgstr "Klarte ikkje flytta %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer lasta opp. Ukjend feil" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fila du lasta opp er større enn det «upload_max_filesize» i php.ini tillater: " -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Den opplasta fila er større enn variabelen MAX_FILE_SIZE i HTML-skjemaet" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Klarte ikkje skriva til disk" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Ugyldig mappe." diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index bcff36cdcd4..c8ba72ef42d 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index c2098a0454b..0332eae3108 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 164f7aa92d1..f127b82252f 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -19,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Passord" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Send" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappa %s med deg" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte fila %s med deg" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Last ned" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Last opp" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Inga førehandsvising tilgjengeleg for" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index b9cd7573b75..bd9af3dd65b 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: unhammer <unhammer+dill@mm.st>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 440c27e197f..0a83492919c 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Program" msgid "Admin" msgstr "Administrer" +#: defaults.php:33 +msgid "web services under your control" +msgstr "Vev tjenester under din kontroll" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 0f8180340bb..45bba9e3741 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Feil ved oppretting av brukar" msgid "A valid password must be provided" msgstr "Du må oppgje eit gyldig passord" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Nynorsk" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Tryggleiksåtvaring" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Datamappa og filene dine er sannsynlegvis tilgjengelege frå Internett. Fila .htaccess som ownCloud tilbyr fungerer ikkje. Me rår sterkt til at du set opp tenaren din slik at datamappa ikkje lenger er tilgjengeleg, eller at du flyttar datamappa vekk frå dokumentrota til tenaren." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Oppsettsåtvaring" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Ver venleg og dobbeltsjekk <a href='%s'>installasjonsrettleiinga</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Modulen «fileinfo» manglar" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Regionaldata fungerer ikkje" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Denne ownCloud-tenaren kan ikkje stilla regionen til %s. Dette tyder at det kan vera problem med visse teikn i filnamn. Me rår sterkt til å installera systempakkane som trengst for å støtta %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Nettilkoplinga fungerer ikkje" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Denne ownCloud-tenaren har ikkje nokon fungerande nettilkopling. Difor vil visse funksjonar, t.d. montering av ekstern lagring, varsling om oppdatering, eller installering av tredjepartsprogram ikkje fungera. Varslingsepostar og ekstern tilgang til filer vil kanskje heller ikkje fungera. Me foreslår at du slå på nettilkoplinga til denne tenaren viss du vil nytta alle funksjonane til ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Utfør éi oppgåve for kvar sidelasting" -#: templates/admin.php:111 +#: templates/admin.php:113 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 er registrert ved ei webcron-teneste. Last sida cron.php i ownCloud-rota ein gong i minuttet over http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Bruk cron-tenesta til systemet. Køyr fila cron.php i ownCloud-mappa frå ein cron-jobb på systemet ein gong i minuttet." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Slå på API-et for deling" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "La app-ar bruka API-et til deling" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Tillat lenkjer" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "La brukarar dela ting offentleg med lenkjer" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Tillat vidaredeling" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "La brukarar vidaredela delte ting" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "La brukarar dela med kven som helst" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "La brukarar dela berre med brukarar i deira grupper" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Tryggleik" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Krev HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Krev at klientar koplar til ownCloud med ei kryptert tilkopling." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Ver venleg og kopla denne ownCloud-instansen til via HTTPS for å slå av/på SSL-handhevinga." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Logg" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Log nivå" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Meir" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mindre" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -388,72 +388,72 @@ msgstr "Feilsporar" msgid "Commercial Support" msgstr "Betalt brukarstøtte" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Få app-ar som kan synkronisera filene dine" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Vis Oppstartvegvisaren igjen" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Du har brukt <strong>%s</strong> av dine tilgjengelege <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passord" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Passordet ditt er endra" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Klarte ikkje endra passordet" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Passord" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Endra passord" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Visingsnamn" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-post" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Di epost-adresse" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Fyll inn e-postadressa di for å gjera passordgjenoppretting mogleg" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Språk" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Hjelp oss å omsetja" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bruk denne adressa for å kopla til din ownCloud frå filhandsamaren din" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index c62c2cac197..d706c6687b8 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 393f8fdea6b..1a960807224 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Error" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Parteja" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Error al partejar" @@ -282,87 +282,87 @@ msgstr "Parat per senhal" msgid "Password" msgstr "Senhal" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Met la data d'expiracion" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data d'expiracion" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Parteja tras corrièl :" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Deguns trobat" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Tornar partejar es pas permis" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Pas partejador" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "pòt modificar" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "Contraròtle d'acces" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "crea" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "met a jorn" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "escafa" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "parteja" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "Acces enebit" msgid "Cloud not found" msgstr "Nívol pas trobada" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Services web jos ton contraròtle" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Edita categorias" @@ -572,12 +568,12 @@ msgstr "Òste de basa de donadas" msgid "Finish setup" msgstr "Configuracion acabada" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Sortida" @@ -611,7 +607,7 @@ msgstr "Dintrada" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 3938a696f08..6888f0396d5 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fichièr" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "fichièrs" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index fb09b5d5fb7..a9474224b7b 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 2854e9da540..b01f581f039 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 91737836603..4bd0cbfec89 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Senhal" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Sosmetre" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Avalcarga" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Amontcarga" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 4d9ad616a1b..d314336eb7c 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 3d4230bbd37..f84a8a0a779 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Apps" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "Services web jos ton contraròtle" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Avalcargar los ZIP es inactiu." diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 6805662448c..88a8c84ceb7 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Avertiment de securitat" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Executa un prètfach amb cada pagina cargada" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Utiliza lo servici cron de ton sistèm operatiu. Executa lo fichièr cron.php dins lo dorsier owncloud tras cronjob del sistèm cada minuta." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Al partejar" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Activa API partejada" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Jornal" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mai d'aquò" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Senhal" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Ton senhal a cambiat" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Pas possible de cambiar ton senhal" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Senhal en cors" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Senhal novèl" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Cambia lo senhal" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Corrièl" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Ton adreiça de corrièl" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Emplena una adreiça de corrièl per permetre lo mandadís del senhal perdut" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Lenga" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Ajuda a la revirada" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 043c42bf036..42bdb08f948 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 2b4e7e47ce3..228d66ef194 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "Nie określono typu obiektu." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Błąd" @@ -248,7 +248,7 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -284,87 +284,87 @@ msgstr "Zabezpiecz hasłem" msgid "Password" msgstr "Hasło" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Pozwól na publiczne wczytywanie" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Wyślij osobie odnośnik poprzez e-mail" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Wyślij" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Ustaw datę wygaśnięcia" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data wygaśnięcia" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Współdziel poprzez e-mail:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Nie znaleziono ludzi" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Współdzielenie nie jest możliwe" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Współdzielone w {item} z {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "może edytować" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "kontrola dostępu" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "utwórz" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "uaktualnij" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "usuń" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "współdziel" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-mail wysłany" @@ -467,7 +467,7 @@ msgstr "Dostęp zabroniony" msgid "Cloud not found" msgstr "Nie odnaleziono chmury" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Kontrolowane serwisy" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Edytuj kategorie" @@ -574,12 +570,12 @@ msgstr "Komputer bazy danych" msgid "Finish setup" msgstr "Zakończ konfigurowanie" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s jest dostępna. Dowiedz się więcej na temat aktualizacji." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Wyloguj" @@ -613,7 +609,7 @@ msgstr "Zaloguj" msgid "Alternative Logins" msgstr "Alternatywne loginy" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/pl/files.po b/l10n/pl/files.po index a369596152d..8033471de95 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" +"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\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" @@ -29,54 +29,54 @@ msgstr "Nie można było przenieść %s - Plik o takiej nazwie już istnieje" msgid "Could not move %s" msgstr "Nie można było przenieść %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Nie można ustawić katalog wczytywania." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Nieprawidłowy Token" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Żaden plik nie został załadowany. Nieznany błąd" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Nie było błędów, plik wysłano poprawnie." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini: " -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Wysłany plik przekracza wielkość dyrektywy MAX_FILE_SIZE określonej w formularzu HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Załadowany plik został wysłany tylko częściowo." -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nie wysłano żadnego pliku" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Brak folderu tymczasowego" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Za mało dostępnego miejsca" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Zła ścieżka." @@ -233,7 +233,7 @@ msgstr "Ilość plików: {count}" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s nie można zmienić nazwy" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -331,19 +331,19 @@ msgstr "Aktualnie skanowane" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "Katalog" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "Katalogi" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "plik" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "pliki" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index c94cf9e38c6..8342d627db9 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -63,14 +63,15 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "Moduł PHP OpenSSL nie jest zainstalowany" +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Proszę poproś administratora serwera aby zainstalował ten moduł. Obecnie aplikacja szyfrowanie została wyłączona." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 9b919ab67ee..4a42f899f9f 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 843b94c807f..5d39d487ccb 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Hasło" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Wyślij" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s współdzieli folder z tobą %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s współdzieli z tobą plik %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Pobierz" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Wyślij" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Podgląd nie jest dostępny dla" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 5656e19b888..64df204df68 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 9cd79056e99..7b2097563af 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplikacje" msgid "Admin" msgstr "Administrator" +#: defaults.php:33 +msgid "web services under your control" +msgstr "Kontrolowane serwisy" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Pobieranie ZIP jest wyłączone." diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 332b57a9a70..f80f8457a4f 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Błąd podczas tworzenia użytkownika" msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "polski" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Ostrzeżenie o zabezpieczeniach" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Katalog danych i twoje pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess dostarczony przez ownCloud nie działa. Zalecamy skonfigurowanie serwera internetowego w taki sposób, aby katalog z danymi nie był dostępny lub przeniesienie katalogu z danymi poza katalog główny serwera internetowego." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Ostrzeżenia konfiguracji" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Sprawdź ponownie <a href='%s'>przewodniki instalacji</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Brak modułu „fileinfo”" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Lokalizacja nie działa" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Ten serwer ownCloud nie może włączyć ustawień regionalnych %s. Może to oznaczać, że wystąpiły problemy z niektórymi znakami w nazwach plików. Zalecamy instalację wymaganych pakietów na tym systemie w celu wsparcia %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Połączenie internetowe nie działa" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Ten serwer OwnCloud nie ma działającego połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub instalacja dodatkowych aplikacji nie będą działać. Dostęp do plików z zewnątrz i wysyłanie powiadomień e-mail może również nie działać. Sugerujemy, aby włączyć połączenie internetowe dla tego serwera, jeśli chcesz korzystać ze wszystkich funkcji ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Wykonuj jedno zadanie wraz z każdą wczytaną stroną" -#: templates/admin.php:111 +#: templates/admin.php:113 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 jest zarejestrowany w usłudze webcron. Przywołaj stronę cron.php w katalogu głównym ownCloud raz na minutę przez http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Użyj systemowej usługi cron. Przywołaj plik cron.php z katalogu ownCloud przez systemowy cronjob raz na minutę." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Udostępnianie" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Włącz API udostępniania" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Zezwalaj aplikacjom na korzystanie z API udostępniania" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Zezwalaj na odnośniki" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą odnośników" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Zezwalaj na ponowne udostępnianie" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Bezpieczeństwo" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Wymuś HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Wymusza na klientach na łączenie się ownCloud za pośrednictwem połączenia szyfrowanego." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Proszę połącz się do tej instancji ownCloud za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Logi" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Poziom logów" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Więcej" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mniej" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Wersja" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -388,72 +388,72 @@ msgstr "Zgłaszanie błędów" msgid "Commercial Support" msgstr "Wsparcie komercyjne" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Pobierz aplikacje żeby synchronizować swoje pliki" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Uruchom ponownie kreatora pierwszego uruchomienia" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Wykorzystujesz <strong>%s</strong> z dostępnych <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Hasło" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Twoje hasło zostało zmienione" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Nie można zmienić hasła" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Bieżące hasło" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nowe hasło" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Zmień hasło" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Wyświetlana nazwa" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Twój adres e-mail" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Podaj adres e-mail, aby uzyskać możliwość odzyskania hasła" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Język" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Pomóż w tłumaczeniu" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 128ecc074c0..62d6e83fb0b 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: orcio6 <orcio6@o2.pl>\n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index e7d3a4df5e7..2ad2129ae05 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: bjamalaro <bjamalaro@yahoo.com.br>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "O tipo de objeto não foi especificado." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Erro" @@ -248,7 +248,7 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -284,87 +284,87 @@ msgstr "Proteger com senha" msgid "Password" msgstr "Senha" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Permitir upload público" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Enviar link por e-mail" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Enviar" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Definir data de expiração" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Compartilhar via e-mail:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Nenhuma pessoa encontrada" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Não é permitido re-compartilhar" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Compartilhado em {item} com {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Descompartilhar" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "pode editar" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "controle de acesso" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "criar" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "atualizar" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "remover" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "compartilhar" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-mail enviado" @@ -467,7 +467,7 @@ msgstr "Acesso proibido" msgid "Cloud not found" msgstr "Cloud não encontrado" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "Olá,\n\napenas para você saber que %s compartilhou %s com você.\nVeja: %s\n\nAbraços!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "serviços web sob seu controle" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar categorias" @@ -574,12 +570,12 @@ msgstr "Host do banco de dados" msgid "Finish setup" msgstr "Concluir configuração" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está disponível. Obtenha mais informações sobre como atualizar." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Sair" @@ -613,7 +609,7 @@ msgstr "Fazer login" msgid "Alternative Logins" msgstr "Logins alternativos" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 2c7f1020ab0..32dd1de618b 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -5,13 +5,14 @@ # Translators: # bjamalaro <bjamalaro@yahoo.com.br>, 2013 # Flávio Veras <flaviove@gmail.com>, 2013 +# tuliouel, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" +"Last-Translator: tuliouel\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" @@ -29,54 +30,54 @@ msgstr "Impossível mover %s - Um arquivo com este nome já existe" msgid "Could not move %s" msgstr "Impossível mover %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Impossível configurar o diretório de upload" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Token inválido" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi enviado. Erro desconhecido" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Sem erros, o arquivo foi enviado com sucesso" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O arquivo enviado excede a diretiva upload_max_filesize no php.ini: " -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi parcialmente enviado" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nenhum arquivo enviado" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Espaço de armazenamento insuficiente" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Diretório inválido." @@ -331,19 +332,19 @@ msgstr "Scanning atual" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "diretório" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "diretórios" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "arquivo" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "arquivos" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index d11f4ef2df8..907be4d30a2 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 15:10+0000\n" +"POT-Creation-Date: 2013-07-06 02:01+0200\n" +"PO-Revision-Date: 2013-07-05 23:10+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -64,14 +64,15 @@ msgid "" msgstr "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "O módulo PHP OpenSSL não está instalado." +msgid "Missing requirements." +msgstr "Requisitos em falta." #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Por favor peça ao administrador do servidor para instalar o módulo. Por enquanto o app de encriptação foi desabilitada." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 759a65f40fc..05c66cf9daf 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index e3ce117e701..a1fdebe1c5f 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Flávio Veras <flaviove@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: Flávio Veras <flaviove@gmail.com>\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" @@ -18,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "Senha incorreta. Tente novamente." + +#: templates/authenticate.php:7 msgid "Password" msgstr "Senha" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Submeter" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartilhou a pasta %s com você" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartilhou o arquivo %s com você" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Baixar" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Upload" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Nenhuma visualização disponível para" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 3e1968e3244..838beab7f78 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 30dd7931cb1..7f82d489c12 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplicações" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "serviços web sob seu controle" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Download ZIP está desligado." diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index a917f8535c0..cc97100c03f 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Erro ao criar usuário" msgid "A valid password must be provided" msgstr "Forneça uma senha válida" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Português (Brasil)" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Seu diretório de dados e seus arquivos estão, provavelmente, acessíveis a partir da internet. O .htaccess que o ownCloud fornece não está funcionando. Nós sugerimos que você configure o seu servidor web de uma forma que o diretório de dados esteja mais acessível ou que você mova o diretório de dados para fora da raiz do servidor web." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Aviso de Configuração" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece não estar funcionando." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Por favor, confira o <a href='%s'>guia de instalação</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Módulo 'fileinfo' faltando" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type)." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Localização não funcionando" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Este servidor ownCloud não pode configurar a localização do sistema para %s. Isto significa que pode haver problema com alguns caracteres nos nomes de arquivos. Nós recomendamos fortemente que você instale os pacotes requeridos em seu sistema para suportar %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Sem conexão com a internet" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Este servidor ownCloud não tem conexão com a internet. Isto significa que alguns dos recursos como montar armazenamento externo, notificar atualizações ou instalar aplicativos de terceiros não funcionam. Acesso remoto a arquivos e envio de e-mails de notificação podem também não funcionar. Sugerimos que habilite a conexão com a internet neste servidor se quiser usufruir de todos os recursos do ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Execute uma tarefa com cada página carregada" -#: templates/admin.php:111 +#: templates/admin.php:113 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 está registrado no serviço webcron. Chame a página cron.php na raíz do owncloud a cada minuto por http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Usar serviço de cron do sistema. Chama o arquivo cron.php na pasta owncloud via cronjob do sistema a cada minuto." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Compartilhamento" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Habilitar API de Compartilhamento" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Permitir que aplicativos usem a API de Compartilhamento" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Permitir que usuários compartilhem itens com o público usando links" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Permitir recompartilhamento" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Permitir que usuários compartilhem novamente itens compartilhados com eles" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Permitir que usuários compartilhem com qualquer um" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Permitir que usuários compartilhem somente com usuários em seus grupos" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Segurança" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Força o cliente a conectar-se ao ownCloud por uma conexão criptografada." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Por favor, conecte-se a esta instância do ownCloud via HTTPS para habilitar ou desabilitar 'Forçar SSL'." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Registro" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nível de registro" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mais" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Menos" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versão" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -388,72 +388,72 @@ msgstr "Rastreador de Bugs" msgid "Commercial Support" msgstr "Suporte Comercial" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Faça com que os apps sincronize seus arquivos" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Mostrar este Assistente de novo" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Você usou <strong>%s</strong> do seu espaço de <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Senha" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Sua senha foi alterada" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Não é possivel alterar a sua senha" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Senha atual" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nova senha" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Alterar senha" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nome de Exibição" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Seu endereço de e-mail" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Preencha um endereço de e-mail para habilitar a recuperação de senha" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Idioma" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usar este endereço para conectar-se ao seu ownCloud no seu gerenciador de arquivos" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index e696db5b0ae..68aca8fb45b 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Flávio Veras <flaviove@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index eb3a7ebb2cd..2ec02bb1e5e 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -227,8 +227,8 @@ msgstr "O tipo de objecto não foi especificado" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Erro" @@ -248,7 +248,7 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -284,87 +284,87 @@ msgstr "Proteger com palavra-passe" msgid "Password" msgstr "Password" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Enviar o link por e-mail" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Enviar" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Especificar data de expiração" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Partilhar via email:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Não foi encontrado ninguém" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Não é permitido partilhar de novo" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Partilhado em {item} com {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "pode editar" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "Controlo de acesso" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "criar" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "actualizar" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "apagar" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "partilhar" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-mail enviado" @@ -467,7 +467,7 @@ msgstr "Acesso interdito" msgid "Cloud not found" msgstr "Cloud nao encontrada" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "serviços web sob o seu controlo" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editar categorias" @@ -574,12 +570,12 @@ msgstr "Anfitrião da base de dados" msgid "Finish setup" msgstr "Acabar instalação" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está disponível. Tenha mais informações como actualizar." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Sair" @@ -613,7 +609,7 @@ msgstr "Entrar" msgid "Alternative Logins" msgstr "Contas de acesso alternativas" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 96d3570cf89..16fe54c9ec9 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse msgid "Could not move %s" msgstr "Não foi possível move o ficheiro %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Não ocorreram erros, o ficheiro foi submetido com sucesso" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize" -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro seleccionado foi apenas carregado parcialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nenhum ficheiro foi submetido" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Está a faltar a pasta temporária" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Não há espaço suficiente em disco" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Directório Inválido" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "ficheiro" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "ficheiros" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index 64e9510c7f7..7ad79e88e85 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -64,13 +64,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index da7e4989905..8890e658977 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Mouxy <daniel@mouxy.net>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index f7461b33f01..23e782bec71 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Password" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Submeter" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s partilhou a pasta %s consigo" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s partilhou o ficheiro %s consigo" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Transferir" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Carregar" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Não há pré-visualização para" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index bddeaee8ddb..ca605c32622 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index af114843c01..e2df15c1273 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplicações" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "serviços web sob o seu controlo" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Descarregamento em ZIP está desligado." diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index fbd8b7f2924..a42ea8fa6f0 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -168,15 +168,15 @@ msgstr "Erro a criar utilizador" msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -185,36 +185,36 @@ msgid "" " webserver document root." msgstr "A sua pasta com os dados e os seus ficheiros estão provavelmente acessíveis a partir das internet. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessível, ou mova a pasta com os dados para fora da raiz de documentos do servidor web." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Aviso de setup" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Por favor verifique <a href='%s'>installation guides</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Falta o módulo 'fileinfo'" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Internacionalização não está a funcionar" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -222,11 +222,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Este servidor de ownCloud não consegue definir a codificação de caracteres para %s. Isto significa que pode haver problemas com alguns caracteres nos nomes dos ficheiros. É fortemente recomendado que instale o pacote recomendado para ser possível ver caracteres codificados em %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "A ligação à internet não está a funcionar" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -236,102 +236,102 @@ msgid "" " of ownCloud." msgstr "Este servidor ownCloud não tem uma ligação de internet funcional. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretende obter todas as funcionalidades do ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Executar uma tarefa com cada página carregada" -#: templates/admin.php:111 +#: templates/admin.php:113 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 está registado como um serviço webcron. Aceda a pagina cron.php que se encontra na raiz do ownCloud uma vez por minuto utilizando o seu browser." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Usar o serviço cron do sistema. Aceda a pagina cron.php que se encontra na raiz do ownCloud uma vez por minuto utilizando o seu browser." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Partilha" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Activar a API de partilha" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Permitir que os utilizadores usem a API de partilha" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Permitir que os utilizadores partilhem itens com o público utilizando um link." -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Permitir repartilha" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Permitir que os utilizadores partilhem itens partilhados com eles" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Permitir que os utilizadores partilhem com todos" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Segurança" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Forçar clientes a ligar através de uma ligação encriptada" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Por favor ligue-se ao ownCloud através de uma ligação HTTPS para ligar/desligar o forçar da ligação por SSL" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Registo" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nível do registo" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mais" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Menos" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versão" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -389,72 +389,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Suporte Comercial" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Obtenha as aplicações para sincronizar os seus ficheiros" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Mostrar novamente Wizard de Arranque Inicial" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Usou <strong>%s</strong> do disponivel <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Password" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "A sua palavra-passe foi alterada" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Não foi possivel alterar a sua palavra-chave" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Palavra-chave actual" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nova palavra-chave" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Alterar palavra-chave" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Nome público" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "O seu endereço de email" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Idioma" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use este endereço no seu gestor de ficheiros para ligar à sua ownCloud" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 792e33e28f5..cdc3a1d6874 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Mouxy <daniel@mouxy.net>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 9573e82db14..89280ae406b 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -5,12 +5,13 @@ # Translators: # dimaursu16 <dima@ceata.org>, 2013 # ripkid666 <ripkid666@gmail.com>, 2013 +# sergiu_sechel <sergiu.sechel@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -227,8 +228,8 @@ msgstr "Tipul obiectului nu a fost specificat" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Eroare" @@ -248,7 +249,7 @@ msgstr "Partajat" msgid "Share" msgstr "Partajează" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -284,87 +285,87 @@ msgstr "Protejare cu parolă" msgid "Password" msgstr "Parolă" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Permiteţi încărcarea publică." -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Expediază legătura prin poșta electronică" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Expediază" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Specifică data expirării" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data expirării" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Distribuie prin email:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Nici o persoană găsită" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Repartajarea nu este permisă" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Distribuie in {item} si {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Anulare partajare" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "poate edita" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "control acces" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "creare" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "actualizare" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "ștergere" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "partajare" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Mesajul a fost expediat" @@ -467,7 +468,7 @@ msgstr "Acces interzis" msgid "Cloud not found" msgstr "Nu s-a găsit" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +479,6 @@ msgid "" "Cheers!" msgstr "Salutare,\n\nVă aduc la cunoștință că %s a partajat %s cu tine.\nAccesează la: %s\n\nNumai bine!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "servicii web controlate de tine" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editează categorii" @@ -574,12 +571,12 @@ msgstr "Bază date" msgid "Finish setup" msgstr "Finalizează instalarea" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s este disponibil. Vezi mai multe informații despre procesul de actualizare." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Ieșire" @@ -613,7 +610,7 @@ msgstr "Autentificare" msgid "Alternative Logins" msgstr "Conectări alternative" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 3f0e134ac62..a74e8309f17 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -5,13 +5,14 @@ # Translators: # dimaursu16 <dima@ceata.org>, 2013 # ripkid666 <ripkid666@gmail.com>, 2013 +# sergiu_sechel <sergiu.sechel@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" +"Last-Translator: sergiu_sechel <sergiu.sechel@gmail.com>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,61 +23,61 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Nu se poate de mutat %s - Fișier cu acest nume deja există" +msgstr "%s nu se poate muta - Fișierul cu acest nume există deja " #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" msgstr "Nu s-a putut muta %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." -msgstr "" +msgstr "Imposibil de a seta directorul pentru incărcare." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Jeton Invalid" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Nici un fișier nu a fost încărcat. Eroare necunoscută" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Nu a apărut nici o eroare, fișierul a fost încărcat cu succes" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Fisierul incarcat depaseste upload_max_filesize permisi in php.ini: " -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Fișierul are o dimensiune mai mare decât variabile MAX_FILE_SIZE specificată în formularul HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Fișierul a fost încărcat doar parțial" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nu a fost încărcat nici un fișier" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Lipsește un director temporar" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Eroare la scriere pe disc" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nu este suficient spațiu disponibil" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Director invalid." @@ -233,7 +234,7 @@ msgstr "{count} fisiere" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s nu a putut fi redenumit" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -331,19 +332,19 @@ msgstr "În curs de scanare" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "catalog" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "cataloage" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fișier" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "fișiere" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index 6cc19361534..d499ad94c54 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index bcb0c80a988..ff3a47a6a5b 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 9df5a1bbbbd..c55b5d9ec04 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# sergiu_sechel <sergiu.sechel@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: sergiu_sechel <sergiu.sechel@gmail.com>\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" @@ -18,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "Parola este incorectă. Încercaţi din nou." + +#: templates/authenticate.php:7 msgid "Password" msgstr "Parolă" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Trimite" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partajat directorul %s cu tine" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partajat fișierul %s cu tine" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Descarcă" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Încărcare" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Nici o previzualizare disponibilă pentru " diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 14865e2135e..a7acd953be2 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 090a40014ad..207ad850d74 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Aplicații" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "servicii web controlate de tine" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Descărcarea ZIP este dezactivată." @@ -178,12 +182,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă." #: setup.php:199 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." -msgstr "" +msgstr "Vă rugăm să verificați <a href='%s'>ghiduri de instalare</ a>." #: template.php:113 msgid "seconds ago" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 3b2ba95e0e5..51f9adf04ed 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# sergiu_sechel <sergiu.sechel@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" +"Last-Translator: sergiu_sechel <sergiu.sechel@gmail.com>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "Imposibil de încărcat lista din App Store" +msgstr "Imposibil de actualizat lista din App Store." #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 @@ -28,11 +29,11 @@ msgstr "Eroare la autentificare" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "Numele afişat a fost schimbat." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "" +msgstr "Imposibil de schimbat numele afişat." #: ajax/creategroup.php:10 msgid "Group already exists" @@ -86,11 +87,11 @@ msgstr "Nu s-a putut elimina utilizatorul din grupul %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "Aplicaţia nu s-a putut actualiza." #: js/apps.js:35 msgid "Update to {appversion}" -msgstr "" +msgstr "Actualizat la {versiuneaaplicaţiei}" #: js/apps.js:41 js/apps.js:81 msgid "Disable" @@ -102,7 +103,7 @@ msgstr "Activare" #: js/apps.js:60 msgid "Please wait...." -msgstr "" +msgstr "Aşteptaţi vă rog...." #: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 msgid "Error" @@ -110,15 +111,15 @@ msgstr "Eroare" #: js/apps.js:95 msgid "Updating...." -msgstr "" +msgstr "Actualizare în curs...." #: js/apps.js:98 msgid "Error while updating app" -msgstr "" +msgstr "Eroare în timpul actualizării aplicaţiei" #: js/apps.js:101 msgid "Updated" -msgstr "" +msgstr "Actualizat" #: js/personal.js:118 msgid "Saving..." @@ -134,7 +135,7 @@ msgstr "Anulează ultima acțiune" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "Imposibil de eliminat utilizatorul" #: js/users.js:92 templates/users.php:26 templates/users.php:87 #: templates/users.php:112 @@ -151,29 +152,29 @@ msgstr "Șterge" #: js/users.js:269 msgid "add group" -msgstr "" +msgstr "adăugaţi grupul" #: js/users.js:428 msgid "A valid username must be provided" -msgstr "" +msgstr "Trebuie să furnizaţi un nume de utilizator valid" #: js/users.js:429 js/users.js:435 js/users.js:450 msgid "Error creating user" -msgstr "" +msgstr "Eroare la crearea utilizatorului" #: js/users.js:434 msgid "A valid password must be provided" -msgstr "" +msgstr "Trebuie să furnizaţi o parolă validă" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "_language_name_" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Avertisment de securitate" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,48 +183,48 @@ msgid "" " webserver document root." msgstr "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" -msgstr "" +msgstr "Atenţie la implementare" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." -msgstr "" +msgstr "Vă rugăm să verificați <a href='%s'>ghiduri de instalare</ a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Modulul \"Fileinfo\" lipsește" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" -msgstr "" +msgstr "Localizarea nu funcționează" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "Acest server ownCloud nu poate seta sistemul de localizare pentru% s. Acest lucru înseamnă că ar putea exista probleme cu anumite caractere în numele de fișiere. Vă recomandăm să instalați pachetele necesare pe sistemul dumneavoastră pentru a sprijini% s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" -msgstr "" +msgstr "Conexiunea la internet nu funcționează" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -231,104 +232,104 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "Acest server ownCloud nu are nici o conexiune la internet activă. Acest lucru înseamnă că anumite caracteristici, cum ar fi montarea mediilor de stocare externe, notificări despre actualizări sau instalarea de aplicatii tereţe nu funcționează. Accesarea fișierelor de la distanță și trimiterea de e-mailuri de notificare s-ar putea, de asemenea, să nu funcționeze. Vă sugerăm să permiteţi conectarea la Internet pentru acest server, dacă doriți să aveți toate caracteristicile de oferite de ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Execută o sarcină la fiecare pagină încărcată" -#: templates/admin.php:111 +#: templates/admin.php:113 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 este înregistrat în serviciul webcron. Accesează pagina cron.php din root-ul owncloud odată pe minut prin http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Folosește serviciul cron al sistemului. Accesează fișierul cron.php din directorul owncloud printr-un cronjob de sistem odată la fiecare minut." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Partajare" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Activare API partajare" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Permite aplicațiilor să folosească API-ul de partajare" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Pemite legături" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Permite utilizatorilor să partajeze fișiere în mod public prin legături" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Permite repartajarea" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Permite utilizatorilor să repartajeze fișiere partajate cu ei" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Permite utilizatorilor să partajeze cu oricine" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același grup" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" -msgstr "" +msgstr "Securitate" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nivel jurnal" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mai mult" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +387,72 @@ msgstr "Urmărire bug-uri" msgid "Commercial Support" msgstr "Suport comercial" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Ia acum aplicatia pentru sincronizarea fisierelor " -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Ați utilizat <strong>%s</strong> din <strong>%s</strong> disponibile" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parolă" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Parola a fost modificată" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Imposibil de-ați schimbat parola" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Parola curentă" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Noua parolă" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Schimbă parola" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Adresa ta de email" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Completează o adresă de mail pentru a-ți putea recupera parola" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Limba" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Ajută la traducere" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Folosește această adresă pentru a conecta ownCloud cu managerul de fișiere" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index f2fef57c9e8..c712b66c64d 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index ef301d97c6f..7515a2c60c6 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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -230,8 +230,8 @@ msgstr "Тип объекта не указан" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Ошибка" @@ -251,7 +251,7 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -287,87 +287,87 @@ msgstr "Защитить паролем" msgid "Password" msgstr "Пароль" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Почтовая ссылка на персону" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Отправить" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Установить срок доступа" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Дата окончания" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Поделится через электронную почту:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Ни один человек не найден" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Общий доступ не разрешен" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Общий доступ к {item} с {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Закрыть общий доступ" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "может редактировать" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "контроль доступа" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "создать" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "обновить" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "удалить" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "открыть доступ" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Письмо отправлено" @@ -470,7 +470,7 @@ msgstr "Доступ запрещён" msgid "Cloud not found" msgstr "Облако не найдено" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -481,10 +481,6 @@ msgid "" "Cheers!" msgstr "Приветствую,⏎\n⏎\nпросто даю знать, что %s поделился %s с вами.⏎\nПосмотреть: %s⏎\n⏎\nУдачи!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "веб-сервисы под вашим управлением" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Редактировать категрии" @@ -577,12 +573,12 @@ msgstr "Хост базы данных" msgid "Finish setup" msgstr "Завершить установку" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s доступно. Получить дополнительную информацию о порядке обновления." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Выйти" @@ -616,7 +612,7 @@ msgstr "Войти" msgid "Alternative Logins" msgstr "Альтернативные имена пользователя" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ru/files.po b/l10n/ru/files.po index a4ddcee2f3b..323741ed782 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -29,54 +29,54 @@ msgstr "Невозможно переместить %s - файл с таким msgid "Could not move %s" msgstr "Невозможно переместить %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Файл загружен успешно." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Файл превышает размер установленный upload_max_filesize в php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Загружаемый файл превосходит значение переменной MAX_FILE_SIZE, указанной в форме HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Файл загружен частично" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Отсутствует временная папка" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Недостаточно доступного места в хранилище" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Неправильный каталог." @@ -339,11 +339,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "файл" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "файлы" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index 13f86548584..87d54b1d21d 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -66,14 +66,15 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "Модуль OpenSSL для PHP не установлен." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Попросите администратора сервера установить модуль. Приложение шифрования было временно отключено." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index b89d75cf547..f2b22ee7659 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index cfd74c41677..462a3f541b6 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "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/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Пароль" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Отправить" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s открыл доступ к папке %s для Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s открыл доступ к файлу %s для Вас" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Скачать" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Загрузка" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Предпросмотр недоступен для" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index ea859fe28a1..08d8e647230 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 8383b7bab69..9bad11a1c82 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Приложения" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "веб-сервисы под вашим управлением" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 9154300144d..d7f8a447886 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/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: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: lord93 <lordakryl@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -169,15 +169,15 @@ msgstr "Ошибка создания пользователя" msgid "A valid password must be provided" msgstr "Укажите валидный пароль" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Русский " -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Предупреждение безопасности" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -186,36 +186,36 @@ msgid "" " webserver document root." msgstr "Ваш каталог с данными и файлы, вероятно, доступны из интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем настроить веб-сервер таким образом, чтобы каталоги данных больше не были доступны, или переместить их за пределы корневого каталога документов веб-сервера." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Предупреждение установки" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Веб-сервер до сих пор не настроен для возможности синхронизации файлов. Похоже что проблема в неисправности интерфейса WebDAV." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Пожалуйста, дважды просмотрите <a href='%s'>инструкции по установке</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Модуль 'fileinfo' отсутствует" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Локализация не работает" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -223,11 +223,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Этот сервер ownCloud не может установить язык системы на %s. Это означает, что могут быть проблемы с некоторыми символами в именах файлов. Мы настоятельно рекомендуем установить необходимые пакеты в вашей системе для поддержки %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Интернет-соединение не работает" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -237,102 +237,102 @@ msgid "" " of ownCloud." msgstr "Этот сервер ownCloud не имеет рабочего интернет-соединения. Это значит, что некоторые возможности отключены, например: подключение внешних носителей, уведомления об обновлениях, установка сторонних приложений." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Планировщик задач по расписанию" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Выполнять одно задание с каждой загруженной страницей" -#: templates/admin.php:111 +#: templates/admin.php:113 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 в службе webcron сервисе. Вызывает страницу cron.php в корне owncloud раз в минуту через http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Использовать системную службу cron. Вызов файла cron.php в папке owncloud через систему cronjob раз в минуту." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Общий доступ" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Включить API общего доступа" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Позволить приложениям использовать API общего доступа" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Разрешить ссылки" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Разрешить пользователям открывать в общий доступ элементы с публичной ссылкой" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Разрешить переоткрытие общего доступа" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Разрешить пользователя делать общий доступ любому" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Разрешить пользователям делать общий доступ только для пользователей их групп" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Безопасность" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Принудить к HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Принудить клиентов подключаться к ownCloud через шифрованное подключение." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Пожалуйста, подключитесь к этому экземпляру ownCloud через HTTPS для включения или отключения SSL принуждения." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Лог" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Уровень лога" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Больше" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Меньше" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Версия" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -390,72 +390,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Коммерческая поддержка" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Получить приложения для синхронизации ваших файлов" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Показать помощник настройки" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Вы использовали <strong>%s</strong> из доступных <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Пароль" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Ваш пароль изменён" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Невозможно сменить пароль" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Текущий пароль" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Новый пароль" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Сменить пароль" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Отображаемое имя" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Ваш адрес электронной почты" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Введите адрес электронной почты чтобы появилась возможность восстановления пароля" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Язык" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Помочь с переводом" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Используйте этот адрес для подключения файлового менеджера к этому хранилищу" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index eed80a07171..78ed57614b7 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: alfsoft <alfsoft@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index ff73ee55f07..6b4b7b56377 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "දෝෂයක්" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "මුර පදයකින් ආරක්ශාකරන්න" msgid "Password" msgstr "මුර පදය" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "කල් ඉකුත් විමේ දිනය දමන්න" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "කල් ඉකුත් විමේ දිනය" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "විද්යුත් තැපෑල මඟින් බෙදාගන්න: " -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "නොබෙදු" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "සංස්කරණය කළ හැක" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "ප්රවේශ පාලනය" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "සදන්න" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "යාවත්කාලීන කරන්න" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "මකන්න" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "ඇතුල් වීම තහනම්" msgid "Cloud not found" msgstr "සොයා ගත නොහැක" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "ප්රභේදයන් සංස්කරණය" @@ -572,12 +568,12 @@ msgstr "දත්තගබඩා සේවාදායකයා" msgid "Finish setup" msgstr "ස්ථාපනය කිරීම අවසන් කරන්න" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "නික්මීම" @@ -611,7 +607,7 @@ msgstr "ප්රවේශවන්න" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 14051b36caf..90fcbea348b 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "දෝෂයක් නොමැත. සාර්ථකව ගොනුව උඩුගත කෙරුණි" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "ගොනුවක් උඩුගත නොවුණි" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "තාවකාලික ෆොල්ඩරයක් අතුරුදහන්" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "තැටිගත කිරීම අසාර්ථකයි" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "ගොනුව" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "ගොනු" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index 8f90db4f53e..fee22ab5377 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index c6f71aaf0a6..c87a96ee4ec 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 3d936b54d87..48034ca4599 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "මුර පදය" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "යොමු කරන්න" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "බාන්න" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "උඩුගත කරන්න" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "පූර්වදර්ශනයක් නොමැත" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 49c40496bec..0e3075173e0 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index a44a42d367e..7a7fc630d33 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "යෙදුම්" msgid "Admin" msgstr "පරිපාලක" +#: defaults.php:33 +msgid "web services under your control" +msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP භාගත කිරීම් අක්රියයි" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 6c72ebae4e4..0b009bcacbf 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "ආරක්ෂක නිවේදනයක්" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "ඔබගේ දත්ත ඩිරෙක්ටරිය හා ගොනුවලට අන්තර්ජාලයෙන් පිවිසිය හැක. ownCloud සපයා ඇති .htaccess ගොනුව ක්රියාකරන්නේ නැත. අපි තරයේ කියා සිටිනුයේ නම්, මෙම දත්ත හා ගොනු එසේ පිවිසීමට නොහැකි වන ලෙස ඔබේ වෙබ් සේවාදායකයා වින්යාස කරන ලෙස හෝ එම ඩිරෙක්ටරිය වෙබ් මූලයෙන් පිටතට ගෙනයන ලෙසය." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "හුවමාරු කිරීම" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "යොමු සලසන්න" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "යළි යළිත් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "හුවමාරු කළ හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "ඕනෑම අයෙකු හා හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "තම කණ්ඩායමේ අයෙකු හා පමණක් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "ලඝුව" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "වැඩි" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "අඩු" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "මුර පදය" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "ඔබගේ මුර පදය වෙනස් කෙරුණි" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "මුර පදය වෙනස් කළ නොහැකි විය" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "වත්මන් මුරපදය" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "නව මුරපදය" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "මුරපදය වෙනස් කිරීම" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "විද්යුත් තැපෑල" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "ඔබගේ විද්යුත් තැපෑල" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "මුරපද ප්රතිස්ථාපනය සඳහා විද්යුත් තැපැල් විස්තර ලබා දෙන්න" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "භාෂාව" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "පරිවර්ථන සහය" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index 583da78eeae..caebff9f6d8 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 99ac86641df..0afee3edf45 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/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: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po index e5f301b16cb..f4a23c5980a 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index ef0f5ad7ce7..00454814546 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:17 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index a69a9c44f3c..d1f1b336f10 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 6eba880c3bb..a4ccefd2712 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Nešpecifikovaný typ objektu." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Chyba" @@ -247,7 +247,7 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -283,87 +283,87 @@ msgstr "Chrániť heslom" msgid "Password" msgstr "Heslo" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Odoslať odkaz emailom" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Odoslať" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Nastaviť dátum expirácie" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Dátum expirácie" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Zdieľať cez e-mail:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Používateľ nenájdený" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Zdieľanie už zdieľanej položky nie je povolené" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Zdieľané v {item} s {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "môže upraviť" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "prístupové práva" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "vytvoriť" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "aktualizovať" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "vymazať" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "zdieľať" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email odoslaný" @@ -466,7 +466,7 @@ msgstr "Prístup odmietnutý" msgid "Cloud not found" msgstr "Nenájdené" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "Ahoj,\n\nChcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu: %s\n\nVďaka" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "webové služby pod Vašou kontrolou" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Upraviť kategórie" @@ -573,12 +569,12 @@ msgstr "Server databázy" msgid "Finish setup" msgstr "Dokončiť inštaláciu" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s je dostupná. Získajte viac informácií k postupu aktualizáce." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Odhlásiť" @@ -612,7 +608,7 @@ msgstr "Prihlásiť sa" msgid "Alternative Logins" msgstr "Alternatívne prihlasovanie" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 54a3a5ff418..ebba8320d36 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Nie je možné presunúť %s - súbor s týmto menom už existuje" msgid "Could not move %s" msgstr "Nie je možné presunúť %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Žiaden súbor nebol odoslaný. Neznáma chyba" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Nenastala žiadna chyba, súbor bol úspešne nahraný" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Ukladaný súbor sa nahral len čiastočne" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Žiadny súbor nebol uložený" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Chýba dočasný priečinok" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nedostatok dostupného úložného priestoru" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Neplatný priečinok" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "súbor" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "súbory" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index b808c3fea54..f32ee0daedd 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index b880a16e686..45e1aa7aae6 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 98f959cd948..e27016d098d 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Heslo" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Odoslať" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s zdieľa s vami priečinok %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s zdieľa s vami súbor %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Sťahovanie" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Odoslať" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Žiaden náhľad k dispozícii pre" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index caab3739bab..3ac5c906ad6 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 7b944d948eb..81eb30ca16c 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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Aplikácie" msgid "Admin" msgstr "Administrátor" +#: defaults.php:33 +msgid "web services under your control" +msgstr "webové služby pod Vašou kontrolou" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Sťahovanie súborov ZIP je vypnuté." diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index c6a2c30c225..fd63dfb8ee2 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Chyba pri vytváraní používateľa" msgid "A valid password must be provided" msgstr "Musíte zadať platné heslo" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Slovensky" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Bezpečnostné varovanie" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." 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:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Nastavenia oznámení" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Prosím skontrolujte <a href='%s'>inštalačnú príručku</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Chýba modul 'fileinfo'" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Lokalizácia nefunguje" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Tento server ownCloud nemôže nastaviť národné prostredie systému na %s. To znamená, že by mohli byť problémy s niektorými znakmi v názvoch súborov. Veľmi odporúčame nainštalovať požadované balíky na podporu %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Pripojenie na internet nefunguje" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "Tento server ownCloud nemá funkčné pripojenie k internetu. To znamená, že niektoré z funkcií, ako je pripojenie externého úložiska, oznámenia o aktualizáciách či inštalácia aplikácií tretích strán nefungujú. Prístup k súborom zo vzdialených miest a odosielanie oznamovacích e-mailov tiež nemusí fungovať. Odporúčame pripojiť tento server k internetu, ak chcete využívať všetky vlastnosti ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Vykonať jednu úlohu s každým načítaní stránky" -#: templates/admin.php:111 +#: templates/admin.php:113 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 je registrovaná u služby webcron. Zavolá cron.php stránku v koreňovom priečinku owncloud raz za minútu cez protokol HTTP." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Používať systémovú službu cron. Zavolať cron.php v priečinku owncloud cez systémovú úlohu raz za minútu" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Zdieľanie" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Povoliť API zdieľania" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Povoliť aplikáciám používať API na zdieľanie" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Povoliť odkazy" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Povoliť používateľom zdieľať položky pre verejnosť cez odkazy" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Povoliť zdieľanie ďalej" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Povoliť používateľom ďalej zdieľať zdieľané položky" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Povoliť používateľom zdieľať s kýmkoľvek" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Povoliť používateľom zdieľať len s používateľmi v ich skupinách" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Zabezpečenie" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Vynútiť HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Vynúti pripojovanie klientov ownCloud cez šifrované pripojenie." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Pripojte sa k tejto inštancii ownCloud cez HTTPS pre povolenie alebo zakázanie vynútenia SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Záznam" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Viac" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Menej" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Verzia" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,72 +387,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Komerčná podpora" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Získať aplikácie na synchronizáciu Vašich súborov" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Znovu zobraziť sprievodcu prvým spustením" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Použili ste <strong>%s</strong> z <strong>%s</strong> dostupných " -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Heslo" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Heslo bolo zmenené" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Nie je možné zmeniť vaše heslo" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Aktuálne heslo" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Zmeniť heslo" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Zobrazované meno" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Vaša emailová adresa" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Vyplňte emailovú adresu pre aktivovanie obnovy hesla" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Pomôcť s prekladom" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použite túto adresu pre pripojenie vášho ownCloud k súborovému správcovi" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 80e97cf43e3..4c36e4b31f9 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: mhh <marian.hvolka@stuba.sk>\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 31354562a34..9c8b9cebc00 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: barbarak <barbarak@arnes.si>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "Vrsta predmeta ni podana." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Napaka" @@ -248,7 +248,7 @@ msgstr "V souporabi" msgid "Share" msgstr "Souporaba" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -284,87 +284,87 @@ msgstr "Zaščiti z geslom" msgid "Password" msgstr "Geslo" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Dovoli javne prenose na strežnik" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Posreduj povezavo po elektronski pošti" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Pošlji" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Nastavi datum preteka" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Datum preteka" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Souporaba preko elektronske pošte:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Ni najdenih uporabnikov" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Nadaljnja souporaba ni dovoljena" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "V souporabi v {item} z {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Prekliči souporabo" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "lahko ureja" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "nadzor dostopa" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "ustvari" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "posodobi" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "izbriši" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "določi souporabo" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Napaka med nastavljanjem datuma preteka" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Elektronska pošta je poslana" @@ -467,7 +467,7 @@ msgstr "Dostop je prepovedan" msgid "Cloud not found" msgstr "Oblaka ni mogoče najti" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "Pozdravljen/a,⏎\n⏎\nsporočam, da je %s delil %s s teboj.⏎\nPoglej na: %s⏎\n⏎\nLep pozdrav!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "spletne storitve pod vašim nadzorom" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Uredi kategorije" @@ -574,12 +570,12 @@ msgstr "Gostitelj podatkovne zbirke" msgid "Finish setup" msgstr "Končaj namestitev" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s je na voljo. Pridobite več podrobnosti za posodobitev." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Odjava" @@ -613,7 +609,7 @@ msgstr "Prijava" msgid "Alternative Logins" msgstr "Druge prijavne možnosti" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/sl/files.po b/l10n/sl/files.po index fc615793436..dae293b9fe7 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Ni mogoče premakniti %s - datoteka s tem imenom že obstaja" msgid "Could not move %s" msgstr "Ni mogoče premakniti %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Mapo, v katero boste prenašali dokumente, ni mogoče določiti" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Neveljaven žeton" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ni poslane datoteke. Neznana napaka." -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspešno naložena." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Poslana datoteka presega dovoljeno velikost, ki je določena z možnostjo upload_max_filesize v datoteki php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslana datoteka presega velikost, ki jo določa parameter največje dovoljene velikosti v obrazcu HTML." -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Poslan je le del datoteke." -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ni poslane datoteke" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Na voljo ni dovolj prostora" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Neveljavna mapa." @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "datoteka" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "datoteke" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 1bf17accc4d..0386afaca31 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 20:10+0000\n" -"Last-Translator: barbarak <barbarak@arnes.si>\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,14 +63,15 @@ msgid "" msgstr "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno zunaj sistema ownCloud (npr. v skupnem imeniku). Svoj zasebni ključ, ki vam bo omogočil dostop do šifriranih dokumentov, lahko posodobite v osebnih nastavitvah." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "PHP-modul OpenSSL ni nameščen." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Obvestite skrbnika strežnika, da namesti manjkajoč modul. Trenutno je šifriranje onemogočeno." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 30430a89fba..6b4c2468b98 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 676e39381b9..26031b34165 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Geslo" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Pošlji" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "Oseba %s je določila mapo %s za souporabo" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "Oseba %s je določila datoteko %s za souporabo" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Prejmi" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Pošlji" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Predogled ni na voljo za" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index ab48ee033f7..42d1ac062ce 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index c85150cb069..bd429344b02 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Programi" msgid "Admin" msgstr "Skrbništvo" +#: defaults.php:33 +msgid "web services under your control" +msgstr "spletne storitve pod vašim nadzorom" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Prejemanje datotek v paketu ZIP je onemogočeno." diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index b0abe2431ec..62a3d0445cb 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: barbarak <barbarak@arnes.si>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -167,15 +167,15 @@ msgstr "Napaka ustvarjanja uporabnika" msgid "A valid password must be provided" msgstr "Navedeno mora biti veljavno geslo" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Slovenščina" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Varnostno opozorilo" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -184,36 +184,36 @@ msgid "" " webserver document root." msgstr "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud, namreč ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da mapa podatkov ne bo javno dostopna, ali pa, da jo prestavite v podrejeno mapo korenske mape spletnega strežnika." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Opozorilo nastavitve" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Preverite <a href='%s'>navodila namestitve</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Manjka modul 'fileinfo'." -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Jezikovne prilagoditve ne delujejo." -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -221,11 +221,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Na strežniku ownCloud ni mogoče nastaviti jezikovnih določil na jezik %s. Najverjetneje so težave s posebnimi znaki v imenih datotek. Priporočljivo je namestiti zahtevane pakete za podporo jeziku %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Internetna povezava ne deluje." -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -235,102 +235,102 @@ msgid "" " of ownCloud." msgstr "Strežnik ownCloud je brez delujoče internetne povezave. To pomeni, da bodo nekatere možnosti onemogočene. Ne bo mogoče priklapljati zunanjih priklopnih točk, ne bo obvestil o posodobitvah ali namestitvah programske opreme, prav tako najverjetneje ne bo mogoče pošiljati obvestilnih sporočil preko elektronske pošte. Za uporabo vseh zmožnosti oblaka ownCloud, mora biti internetna povezava vzpostavljena in delujoča." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Periodično opravilo" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Izvedi eno nalogo z vsako naloženo stranjo." -#: templates/admin.php:111 +#: templates/admin.php:113 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." msgstr "Datoteka cron.php je vpisana pri storitvi webcron. Preko protokola HTTP je datoteka cron.php, ki se nahaja v korenski mapi ownCloud, klicana enkrat na minuto." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Uporaba sistemske storitve cron. Preko sistemskega posla cron je datoteka cron.php, ki se nahaja v mapi ownCloud, klicana enkrat na minuto." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Souporaba" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Omogoči API souporabe" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Dovoli programom uporabo vmesnika API souporabe" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Dovoli povezave" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Uporabnikom dovoli souporabo predmetov z javnimi povezavami" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Dovoli nadaljnjo souporabo" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Uporabnikom dovoli nadaljnjo souporabo predmetov" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Uporabnikom dovoli souporabo s komerkoli" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Varnost" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Zahtevaj uporabo HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Zahtevaj šifrirano povezovanje odjemalcev v oblak ownCloud" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Prijava mora biti vzpostavljena z uporabo protokola HTTPS za omogočanje šifriranja SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Raven beleženja" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Več" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Manj" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Različica" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -388,72 +388,72 @@ msgstr "Sledilnik hroščev" msgid "Commercial Support" msgstr "Podpora strankam" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Pridobi programe za usklajevanje datotek" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Zaženi čarovnika prvega zagona" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Uporabljenega je <strong>%s</strong> od razpoložljivih <strong>%s</strong> prostora." -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Geslo" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Geslo je spremenjeno" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Gesla ni mogoče spremeniti." -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Trenutno geslo" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Novo geslo" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Spremeni geslo" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Prikazano ime" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Elektronski naslov" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Osebni elektronski naslov" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Vpišite osebni elektronski naslov in s tem omogočite obnovitev gesla" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Jezik" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Sodelujte pri prevajanju" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Ta naslov uporabite za povezavo upravljalnika datotek z oblakom ownCloud." diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index f9c945214b7..8b34cb5057e 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: barbarak <barbarak@arnes.si>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 4c90f67aada..5d2483dd03b 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Nuk është specifikuar tipi i objektit." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Veprim i gabuar" @@ -247,7 +247,7 @@ msgstr "Ndarë" msgid "Share" msgstr "Nda" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" @@ -283,87 +283,87 @@ msgstr "Mbro me kod" msgid "Password" msgstr "Kodi" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Dërgo email me lidhjen" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Dërgo" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Cakto datën e përfundimit" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Data e përfundimit" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Nda me email:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Nuk u gjet asnjë person" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Rindarja nuk lejohet" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Ndarë në {item} me {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Hiq ndarjen" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "mund të ndryshosh" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "kontrollimi i hyrjeve" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "krijo" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "azhurno" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "elimino" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "nda" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Mbrojtur me kod" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email-i u dërgua" @@ -466,7 +466,7 @@ msgstr "Ndalohet hyrja" msgid "Cloud not found" msgstr "Cloud-i nuk u gjet" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "shërbime web nën kontrollin tënd" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Ndrysho kategoritë" @@ -573,12 +569,12 @@ msgstr "Pozicioni (host) i database-it" msgid "Finish setup" msgstr "Mbaro setup-in" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Dalje" @@ -612,7 +608,7 @@ msgstr "Hyrje" msgid "Alternative Logins" msgstr "Hyrje alternative" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 0a804b7f6ff..8adb9ef8798 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "%s nuk u spostua - Aty ekziston një skedar me të njëjtin emër" msgid "Could not move %s" msgstr "%s nuk u spostua" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Nuk u ngarkua asnjë skedar. Veprim i gabuar i panjohur" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Nuk pati veprime të gabuara, skedari u ngarkua me sukses" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Skedari i ngarkuar tejkalon udhëzimin upload_max_filesize tek php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Skedari i ngarkuar tejkalon udhëzimin MAX_FILE_SIZE të specifikuar në formularin HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Skedari i ngarkuar u ngarkua vetëm pjesërisht" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nuk u ngarkua asnjë skedar" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Një dosje e përkohshme nuk u gjet" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Ruajtja në disk dështoi" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Nuk ka mbetur hapësirë memorizimi e mjaftueshme" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Dosje e pavlefshme." diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index b306775e93e..1642b96a824 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index e1f5bb74701..a7427421038 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index c0c93efbc11..469d80e9429 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Kodi" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Parashtro" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ndau me ju dosjen %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ndau me ju skedarin %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Shkarko" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Ngarko" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Shikimi paraprak nuk është i mundur për" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index e989d88396a..c406557bb42 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 52f393a4b1d..e70b47718a2 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "App" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "shërbime web nën kontrollin tënd" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Shkarimi i skedarëve ZIP është i çaktivizuar." diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 2305cfa0868..7ceba3b3134 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Paralajmërim sigurie" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Ju lutemi kontrolloni mirë <a href='%s'>shoqëruesin e instalimit</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Merrni app-et për sinkronizimin e skedarëve tuaj" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Kodi" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Kodi i ri" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email-i" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 8a25014c027..0ff49c9523c 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index a07d2708fb2..1dc8723a5d8 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "Врста објекта није подешена." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Грешка" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "Дели" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -282,87 +282,87 @@ msgstr "Заштићено лозинком" msgid "Password" msgstr "Лозинка" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Пошаљи" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Постави датум истека" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Датум истека" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Подели поштом:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Особе нису пронађене." -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Поновно дељење није дозвољено" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Подељено унутар {item} са {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Укини дељење" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "може да мења" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "права приступа" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "направи" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "ажурирај" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "обриши" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "подели" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Порука је послата" @@ -465,7 +465,7 @@ msgstr "Забрањен приступ" msgid "Cloud not found" msgstr "Облак није нађен" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "веб сервиси под контролом" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Измени категорије" @@ -572,12 +568,12 @@ msgstr "Домаћин базе" msgid "Finish setup" msgstr "Заврши подешавање" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Одјава" @@ -611,7 +607,7 @@ msgstr "Пријава" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/sr/files.po b/l10n/sr/files.po index d825986ccab..0da9726e2f1 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Не могу да преместим %s – датотека с ови msgid "Could not move %s" msgstr "Не могу да преместим %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ниједна датотека није отпремљена услед непознате грешке" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Није дошло до грешке. Датотека је успешно отпремљена." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Не могу да пишем на диск" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Нема довољно простора" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "неисправна фасцикла." diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index c7e8000b8fb..081f03f53f6 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 09d76528e79..643f865502c 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index c9138d66771..d155f7a63e8 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "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/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Лозинка" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Пошаљи" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Преузми" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Отпреми" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 7af835ef67f..0731bbbbb73 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 4db91832cff..adafcd3f371 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Апликације" msgid "Admin" msgstr "Администратор" +#: defaults.php:33 +msgid "web services under your control" +msgstr "веб сервиси под контролом" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Преузимање ZIP-а је искључено." diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 32127fe3b00..974ab291839 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "Грешка при прављењу корисника" msgid "A valid password must be provided" msgstr "Морате унети исправну лозинку" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Сигурносно упозорење" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "Тренутно су ваши подаци и датотеке доступне са интернета. Датотека .htaccess коју је обезбедио пакет ownCloud не функционише. Саветујемо вам да подесите веб сервер тако да директоријум са подацима не буде изложен или да га преместите изван коренског директоријума веб сервера." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Упозорење о подешавању" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Погледајте <a href='%s'>водиче за инсталацију</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Недостаје модул „fileinfo“" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Локализација не ради" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Веза с интернетом не ради" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Изврши један задатак са сваком учитаном страницом" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Дељење" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Омогући API Share" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Дозвољава апликацијама да користе API Share" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Дозволи везе" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Дозволи корисницима да деле ставке с другима путем веза" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Дозволи поновно дељење" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Дозволи корисницима да поновно деле ставке с другима" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Дозволи корисницима да деле са било ким" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Дозволи корисницима да деле само са корисницима у њиховим групама" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Намеће клијентима да се повежу са ownCloud-ом путем шифроване везе." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Бележење" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Ниво бележења" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Више" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Мање" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Верзија" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "Праћење грешака" msgid "Commercial Support" msgstr "Комерцијална подршка" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Преузмите апликације ради синхронизовања датотека" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Поново прикажи чаробњак за прво покретање" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Искористили сте <strong>%s</strong> од дозвољених <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Лозинка је промењена" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Не могу да изменим вашу лозинку" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Тренутна лозинка" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Измени лозинку" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Име за приказ" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Ваша адреса е-поште" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Ун" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Језик" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr " Помозите у превођењу" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Користите ову адресу да се повежете са ownCloud-ом у управљачу датотекама" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index a24a893e6ea..ace503a3cfb 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 03b2a6c8475..7341271f6ea 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "Lozinka" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "Oblak nije nađen" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "Domaćin baze" msgid "Finish setup" msgstr "Završi podešavanje" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Odjava" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index f8824503c15..753c20bc829 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Nema greške, fajl je uspešno poslat" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index 49462d8588b..a85e29f4eb3 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index d22db99012d..ac2d6f336c6 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 7306393590a..08f8fc67b38 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "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/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Lozinka" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Pošalji" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Preuzmi" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Pošalji" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index aae6cfbf149..fa0d21a0b7e 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 7d08131325b..8ec3171ab31 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Programi" msgid "Admin" msgstr "Adninistracija" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index e3abd3582b7..2ac18a60f5d 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Ne mogu da izmenim vašu lozinku" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Izmeni lozinku" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-mail" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Jezik" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index d96e74ef8a5..ec87ceeffac 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 05:30+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -229,8 +229,8 @@ msgstr "Objekttypen är inte specificerad." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Fel" @@ -250,7 +250,7 @@ msgstr "Delad" msgid "Share" msgstr "Dela" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Fel vid delning" @@ -286,87 +286,87 @@ msgstr "Lösenordsskydda" msgid "Password" msgstr "Lösenord" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Tillåt publik uppladdning" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "E-posta länk till person" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Skicka" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Sätt utgångsdatum" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Utgångsdatum" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Dela via e-post:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Hittar inga användare" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Dela vidare är inte tillåtet" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Delad i {item} med {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Sluta dela" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "kan redigera" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "åtkomstkontroll" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "skapa" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "uppdatera" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "radera" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "dela" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "E-post skickat" @@ -469,7 +469,7 @@ msgstr "Åtkomst förbjuden" msgid "Cloud not found" msgstr "Hittade inget moln" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -480,10 +480,6 @@ msgid "" "Cheers!" msgstr "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\nVi hörs!" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "webbtjänster under din kontroll" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Editera kategorier" @@ -576,12 +572,12 @@ msgstr "Databasserver" msgid "Finish setup" msgstr "Avsluta installation" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s är tillgänglig. Få mer information om hur du går tillväga för att uppdatera." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Logga ut" @@ -615,7 +611,7 @@ msgstr "Logga in" msgid "Alternative Logins" msgstr "Alternativa inloggningar" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/sv/files.po b/l10n/sv/files.po index dc7252fcec3..224fefd9da3 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+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" @@ -30,54 +30,54 @@ msgstr "Kunde inte flytta %s - Det finns redan en fil med detta namn" msgid "Could not move %s" msgstr "Kan inte flytta %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "Kan inte sätta mapp för uppladdning." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "Ogiltig token" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Inga fel uppstod. Filen laddades upp utan problem." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Den uppladdade filen överskrider upload_max_filesize direktivet php.ini:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Ingen fil laddades upp" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "En temporär mapp saknas" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Felaktig mapp." @@ -332,19 +332,19 @@ msgstr "Aktuell skanning" #: templates/part.list.php:78 msgid "directory" -msgstr "" +msgstr "mapp" #: templates/part.list.php:80 msgid "directories" -msgstr "" +msgstr "mappar" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "fil" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "filer" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index 41e5335190c..e311ebaf59e 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 05:50+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,14 +65,15 @@ msgid "" msgstr "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer." #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "PHP-modulen för OpenSSL är inte installerad." +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "Be din systemadministratör att installera modulen. För tillfället är appen för kryptering inaktiverad." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 62d6da1d8e1..3b250dcef3e 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 9cd448addd2..dc4e1548ca2 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Lösenord" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Skicka" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delade mappen %s med dig" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s delade filen %s med dig" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Ladda ner" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Ladda upp" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Ingen förhandsgranskning tillgänglig för" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index c176a7d17e9..ea6222e9756 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 677772c071f..e4548adfa90 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Program" msgid "Admin" msgstr "Admin" +#: defaults.php:33 +msgid "web services under your control" +msgstr "webbtjänster under din kontroll" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Nerladdning av ZIP är avstängd." diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 7ea1f071d3e..4763ca04f5a 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/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: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -169,15 +169,15 @@ msgstr "Fel vid skapande av användare" msgid "A valid password must be provided" msgstr "Ett giltigt lösenord måste anges" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Säkerhetsvarning" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -186,36 +186,36 @@ msgid "" " webserver document root." msgstr "Din datakatalog och dina filer är förmodligen tillgängliga från Internet. Den .htaccess-fil som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du konfigurerar webbservern så att datakatalogen inte längre är tillgänglig eller att du flyttar datakatalogen utanför webbserverns dokument-root." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Installationsvarning" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Var god kontrollera <a href='%s'>installationsguiden</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Modulen \"fileinfo\" saknas" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Locale fungerar inte" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -223,11 +223,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Denna ownCloud server kan inte sätta system locale till %s. Det innebär att det kan vara problem med vissa tecken i filnamnet. Vi vill verkligen rekommendera att du installerar nödvändiga paket på ditt system för att stödja %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Internetförbindelsen fungerar inte" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -237,102 +237,102 @@ msgid "" " of ownCloud." msgstr "Den här ownCloudservern har ingen fungerande internetförbindelse. Det innebär att några funktioner som t.ex. att montera externa lagringsplatser, meddelanden om uppdateringar eller installation av tredjepartsappar inte fungerar. Det kan vara så att det inte går att få fjärråtkomst till filer och att e-post inte fungerar. Vi rekommenderar att du tillåter internetåtkomst för den här servern om du vill ha tillgång till alla funktioner hos ownCloud" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Exekvera en uppgift vid varje sidladdning" -#: templates/admin.php:111 +#: templates/admin.php:113 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 är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb varje minut." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Dela" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Aktivera delat API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Tillåt applikationer att använda delat API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Tillåt länkar" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Tillåt delning till allmänheten via publika länkar" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Tillåt vidaredelning" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Tillåt användare att dela vidare filer som delats med dem" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Tillåt delning med alla" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Tillåt bara delning med användare i egna grupper" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Säkerhet" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Kräv HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Tvingar klienter att ansluta till ownCloud via en krypterad förbindelse." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Vänligen anslut till denna instans av ownCloud via HTTPS för att aktivera/avaktivera SSL" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Logg" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Nivå på loggning" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Mer" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Mindre" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Version" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -390,72 +390,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Kommersiell support" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Skaffa apparna för att synkronisera dina filer" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Visa Första uppstarts-guiden igen" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Du har använt <strong>%s</strong> av tillgängliga <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lösenord" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Ditt lösenord har ändrats" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Kunde inte ändra ditt lösenord" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Nuvarande lösenord" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Nytt lösenord" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Ändra lösenord" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Visningsnamn" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "E-post" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Din e-postadress" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Fyll i en e-postadress för att aktivera återställning av lösenord" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Språk" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Hjälp att översätta" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Använd denna adress för att ansluta till ownCloud i din filhanterare" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 72cac7d0ec7..d87aec55156 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 74d9a9bab4a..834f706c36b 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/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: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:03+0000\n" +"POT-Creation-Date: 2013-07-06 02:02+0200\n" +"PO-Revision-Date: 2013-07-06 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:67 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po index 122916bf267..50c13bf25ed 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index 59497e6da2f..5e4f08ccb52 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:17 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index c767063fab0..cf3d110e8eb 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-30 02:06+0200\n" -"PO-Revision-Date: 2013-06-30 00:06+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -17,30 +17,34 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:359 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:372 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:383 +#: app.php:384 msgid "Settings" msgstr "" -#: app.php:395 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:408 +#: app.php:409 msgid "Apps" msgstr "" -#: app.php:416 +#: app.php:417 msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index e5536b5a340..f9b6a3d718b 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "பொருள் வகை குறிப்பிடப்படவ #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "வழு" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -282,87 +282,87 @@ msgstr "கடவுச்சொல்லை பாதுகாத்தல்" msgid "Password" msgstr "கடவுச்சொல்" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "காலாவதி தேதியை குறிப்பிடுக" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "காலவதியாகும் திகதி" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "மின்னஞ்சலினூடான பகிர்வு: " -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "நபர்கள் யாரும் இல்லை" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "மீள்பகிர்வதற்கு அனுமதி இல்லை " -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "{பயனாளர்} உடன் {உருப்படி} பகிரப்பட்டுள்ளது" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "தொகுக்க முடியும்" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "கட்டுப்பாடான அணுகல்" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "உருவவாக்கல்" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "இற்றைப்படுத்தல்" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "நீக்குக" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "பகிர்தல்" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "அணுக தடை" msgid "Cloud not found" msgstr "Cloud காணப்படவில்லை" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "வகைகளை தொகுக்க" @@ -572,12 +568,12 @@ msgstr "தரவுத்தள ஓம்புனர்" msgid "Finish setup" msgstr "அமைப்பை முடிக்க" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "விடுபதிகை செய்க" @@ -611,7 +607,7 @@ msgstr "புகுபதிகை" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 112d3eaebf1..6442a695e80 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "எந்த கோப்பும் பதிவேற்றப்படவில்லை" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "வட்டில் எழுத முடியவில்லை" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index 6b9ebd913b0..fc2389171d9 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 1151a5f08fa..4e55ffa7343 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 6abbc033618..6e8799f0811 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "சமர்ப்பிக்குக" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s கோப்புறையானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "பதிவேற்றுக" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 2186f6b5a11..7426f17c14f 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index b52813cbf25..3e23d34cfdf 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "செயலிகள்" msgid "Admin" msgstr "நிர்வாகம்" +#: defaults.php:33 +msgid "web services under your control" +msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" + #: files.php:210 msgid "ZIP download is turned off." msgstr "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது." diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 11c2b4bfda7..b7f9c633766 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "_மொழி_பெயர்_" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "பாதுகாப்பு எச்சரிக்கை" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "உங்களுடைய தரவு அடைவு மற்றும் உங்களுடைய கோப்புக்களை பெரும்பாலும் இணையத்தினூடாக அணுகலாம். ownCloud இனால் வழங்கப்படுகின்ற .htaccess கோப்பு வேலை செய்யவில்லை. தரவு அடைவை நீண்ட நேரத்திற்கு அணுகக்கூடியதாக உங்களுடைய வலைய சேவையகத்தை தகவமைக்குமாறு நாங்கள் உறுதியாக கூறுகிறோம் அல்லது தரவு அடைவை வலைய சேவையக மூல ஆவணத்திலிருந்து வெளியே அகற்றுக. " -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "மேலதிக" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "குறைவான" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "நீங்கள் <strong>%s</strong> இலுள்ள <strong>%s</strong>பயன்படுத்தியுள்ளீர்கள்" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "உங்களுடைய கடவுச்சொல் மாற்றப்பட்டுள்ளது" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "தற்போதைய கடவுச்சொல்" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "புதிய கடவுச்சொல்" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "கடவுச்சொல்லை மாற்றுக" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "மின்னஞ்சல்" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "உங்களுடைய மின்னஞ்சல் முகவரி" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "கடவுச்சொல் மீள் பெறுவதை இயலுமைப்படுத்துவதற்கு மின்னஞ்சல் முகவரியை இயலுமைப்படுத்துக" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "மொழி" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "மொழிபெயர்க்க உதவி" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index d5a28459689..f7f0edadd10 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index e4ad3d5a788..36bb6ecaff5 100644 --- a/l10n/te/core.po +++ b/l10n/te/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "పొరపాటు" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "సంకేతపదం" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "పంపించు" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "కాలం చెల్లు తేదీ" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "తొలగించు" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "నిష్క్రమించు" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/te/files.po b/l10n/te/files.po index beda348cf74..20c6bb17440 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index 0ed25236620..20a34b874a4 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index a280bae5d02..4f3f184d56e 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index a4761731901..1016563e1e9 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "సంకేతపదం" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:17 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index a843e544b16..7fd433f9776 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index ad61a898e8b..f9f76f668b6 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "" msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index a95c7b8ab71..e94f574838b 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "మరిన్ని" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "సంకేతపదం" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "కొత్త సంకేతపదం" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "ఈమెయిలు" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "మీ ఈమెయిలు చిరునామా" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "భాష" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index d347da49810..30a235daaba 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index dfeba7ec1e5..8e4459956ed 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-08 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" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 5ae3a7d4eec..d1db39f0c00 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-08 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" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 7eb3ea12ece..f15972881e3 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-08 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,13 +61,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index abcb7a48c67..d51b679e238 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-08 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 ed7492102d2..ac8cde2a9b0 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-08 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" @@ -18,35 +18,39 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 648420aa3e6..08975266d34 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-08 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 43d48308656..fe06fff122c 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-08 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 96f2c488db8..087a76e761e 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" +"POT-Creation-Date: 2013-07-08 02:03+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" @@ -41,6 +41,10 @@ msgstr "" msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 8786a16f4fc..ac00d156fca 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" +"POT-Creation-Date: 2013-07-08 02:03+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" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" "webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" "to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" "of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank" "\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 30edd47e83e..f5aae1c7787 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-08 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/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 6d229e2278f..a7d39d6e6b5 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" +"POT-Creation-Date: 2013-07-08 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/core.po b/l10n/th_TH/core.po index 8d05072c649..0852ded1a10 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "ชนิดของวัตถุยังไม่ได้รับ #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "ข้อผิดพลาด" @@ -246,7 +246,7 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -282,87 +282,87 @@ msgstr "ใส่รหัสผ่านไว้" msgid "Password" msgstr "รหัสผ่าน" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "ส่งลิงก์ให้ทางอีเมล" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "ส่ง" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "กำหนดวันที่หมดอายุ" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "วันที่หมดอายุ" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "แชร์ผ่านทางอีเมล" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "ไม่พบบุคคลที่ต้องการ" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "ได้แชร์ {item} ให้กับ {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "สามารถแก้ไข" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "ระดับควบคุมการเข้าใช้งาน" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "สร้าง" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "อัพเดท" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "ลบ" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "แชร์" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" @@ -465,7 +465,7 @@ msgstr "การเข้าถึงถูกหวงห้าม" msgid "Cloud not found" msgstr "ไม่พบ Cloud" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "แก้ไขหมวดหมู่" @@ -572,12 +568,12 @@ msgstr "Database host" msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "ออกจากระบบ" @@ -611,7 +607,7 @@ msgstr "เข้าสู่ระบบ" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index d523347575d..63c55624364 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "ไม่สามารถย้าย %s ได้ - ไฟล์ท msgid "Could not move %s" msgstr "ไม่สามารถย้าย %s ได้" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "ไม่พบข้อผิดพลาดใดๆ, ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "ไฟล์ที่อัพโหลดมีขนาดไฟล์ใหญ่เกินจำนวนที่กำหนดไว้ในคำสั่ง MAX_FILE_SIZE ที่ถูกระบุไว้ในรูปแบบของ HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "ไฟล์ถูกอัพโหลดได้เพียงบางส่วนเท่านั้น" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "ไม่มีไฟล์ที่ถูกอัพโหลด" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "โฟลเดอร์ชั่วคราวเกิดการสูญหาย" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "ไฟล์" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "ไฟล์" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index f35cb8aedb6..ad469023b19 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index b8568dc2c4b..8e8895e516d 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 440126a1ca2..d454d5b61c0 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "รหัสผ่าน" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "ส่ง" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "อัพโหลด" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 50caf538e83..c68dd6b0665 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 3321b332dc7..159ed6b8264 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "แอปฯ" msgid "Admin" msgstr "ผู้ดูแล" +#: defaults.php:33 +msgid "web services under your control" +msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" + #: files.php:210 msgid "ZIP download is turned off." msgstr "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index a8112d2e9b5..85af46813eb 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "ภาษาไทย" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "คำเตือนเกี่ยวกับความปลอดภัย" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ" -#: templates/admin.php:111 +#: templates/admin.php:113 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 ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "การแชร์ข้อมูล" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "อนุญาตให้ใช้งานลิงก์ได้" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "ระดับการเก็บบันทึก log" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "มาก" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "น้อย" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "บริการลูกค้าแบบเสียค่าใช้จ่าย" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "แสดงหน้าจอวิซาร์ดนำทางครั้งแรกอีกครั้ง" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "คุณได้ใช้งานไปแล้ว <strong>%s</strong> จากจำนวนที่สามารถใช้ได้ <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "รหัสผ่าน" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "รหัสผ่านของคุณถูกเปลี่ยนแล้ว" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "รหัสผ่านปัจจุบัน" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "รหัสผ่านใหม่" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "ชื่อที่ต้องการแสดง" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "อีเมล" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "ที่อยู่อีเมล์ของคุณ" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "กรอกที่อยู่อีเมล์ของคุณเพื่อเปิดให้มีการกู้คืนรหัสผ่านได้" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "ภาษา" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "ช่วยกันแปล" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ใช้ที่อยู่นี้เพื่อเชื่อมต่อกับ ownCloud ในโปรแกรมจัดการไฟล์ของคุณ" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index f200b8ac7c0..0e80ec77442 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 298c719f9cc..6693167c737 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Nesne türü belirtilmemiş." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Hata" @@ -247,7 +247,7 @@ msgstr "Paylaşılan" msgid "Share" msgstr "Paylaş" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Paylaşım sırasında hata " @@ -283,87 +283,87 @@ msgstr "Şifre korunması" msgid "Password" msgstr "Parola" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Kişiye e-posta linki" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Gönder" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Son kullanma tarihini ayarla" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Son kullanım tarihi" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Eposta ile paylaş" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Kişi bulunamadı" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Tekrar paylaşmaya izin verilmiyor" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr " {item} içinde {user} ile paylaşılanlarlar" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Paylaşılmayan" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "düzenleyebilir" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "erişim kontrolü" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "oluştur" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "güncelle" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "sil" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "paylaş" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Paralo korumalı" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Geçerlilik tarihi tanımlama hatası" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Eposta gönderildi" @@ -466,7 +466,7 @@ msgstr "Erişim yasaklı" msgid "Cloud not found" msgstr "Bulut bulunamadı" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Bilgileriniz güvenli ve şifreli" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategorileri düzenle" @@ -573,12 +569,12 @@ msgstr "Veritabanı sunucusu" msgid "Finish setup" msgstr "Kurulumu tamamla" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s mevcuttur. Güncelleştirme hakkında daha fazla bilgi alın." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Çıkış yap" @@ -612,7 +608,7 @@ msgstr "Giriş yap" msgid "Alternative Logins" msgstr "Alternatif Girişler" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 41bf38877c7..30144795041 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "%s taşınamadı. Bu isimde dosya zaten var." msgid "Could not move %s" msgstr "%s taşınamadı" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Dosya başarıyla yüklendi, hata oluşmadı" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı." -#: ajax/upload.php:65 +#: ajax/upload.php:72 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/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Dosya kısmen karşıya yüklenebildi" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Hiç dosya gönderilmedi" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Geçici dizin eksik" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Diske yazılamadı" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Geçersiz dizin." @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "dosya" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "dosyalar" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index 372ce4a563a..5948a3dedb3 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 11a0fc9bdac..177e47a38f3 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index aaee0985ce6..cf282c7aec4 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Parola" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Gönder" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "İndir" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Yükle" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Kullanılabilir önizleme yok" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index cf1eb26f88c..cbdb225b6de 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index ba359f803ac..7249f0f5ae6 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "Uygulamalar" msgid "Admin" msgstr "Yönetici" +#: defaults.php:33 +msgid "web services under your control" +msgstr "Bilgileriniz güvenli ve şifreli" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP indirmeleri kapatılmıştır." diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index bf677c35b34..72f72772a2c 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "Kullanıcı oluşturulurken hata" msgid "A valid password must be provided" msgstr "Geçerli bir parola mutlaka sağlanmalı" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Türkçe" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Güvenlik Uyarisi" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. Owncloud tarafından sağlanan .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Kurulum Uyarısı" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Lütfen <a href='%s'>kurulum kılavuzlarını</a> iki kez kontrol edin." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Modül 'fileinfo' kayıp" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Locale çalışmıyor." -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Bu ownCloud sunucusu sistem yerelini %s olarak değiştiremedi. Bu, dosya adlarındaki bazı karakterler ile sorun yaşanabileceği anlamına gelir. %s yerelini desteklemek için gerekli paketleri kurmanızı şiddetle öneririz." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "İnternet bağlantısı çalışmıyor" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "ownCloud sunucusunun internet bağlantısı yok. Bu nedenle harici depolama bağlantısı, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacaktır. Uzak dosyalara erişim ve e-posta ile bildirim gönderme çalışmayacak. Eğer ownCloud tüm özelliklerini kullanmak istiyorsanız, internet bağlantısı gerekmektedir." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Yüklenen her sayfa ile bir görev çalıştır" -#: templates/admin.php:111 +#: templates/admin.php:113 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 bir webcron hizmetinde kaydedilir. Owncloud kökündeki cron.php sayfasını http üzerinden dakikada bir çağır." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Sistemin cron hizmetini kullan. Bir sistem cronjob'ı ile owncloud klasöründeki cron.php dosyasını dakikada bir çağır." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Paylaşım" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Paylaşım API'sini etkinleştir." -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Uygulamaların paylaşım API'sini kullanmasına izin ver" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Bağlantıları izin ver." -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Kullanıcıların nesneleri paylaşımı için herkese açık bağlantılara izin ver" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Paylaşıma izin ver" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Kullanıcıların kendileri ile paylaşılan öğeleri yeniden paylaşmasına izin ver" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Kullanıcıların herşeyi paylaşmalarına izin ver" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Güvenlik" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "HTTPS bağlantısına zorla" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "İstemcileri ownCloud'a şifreli bir bağlantı ile bağlanmaya zorlar." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen bu ownCloud örneğine HTTPS ile bağlanın." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Kayıtlar" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Günlük seviyesi" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Daha fazla" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Az" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,72 +387,72 @@ msgstr "Hata Takip Sistemi" msgid "Commercial Support" msgstr "Ticari Destek" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Dosyalarınızı senkronize etmek için uygulamayı indirin" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "İlk Çalıştırma Sihirbazını yeniden göster" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Kullandığınız:<strong>%s</strong> seçilebilecekler: <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parola" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Şifreniz değiştirildi" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Parolanız değiştirilemiyor" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Mevcut parola" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Yeni parola" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Parola değiştir" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Ekran Adı" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Eposta" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Eposta adresiniz" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Dil" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Çevirilere yardım edin" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bu adresi kullanarak ownCloud 'unuza dosya yöneticinizde bağlanın" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index c2ef0c23a5a..3049f9443e6 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: ismail yenigül <ismail.yenigul@surgate.com>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index e4e97b8c6b5..67794a01213 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "خاتالىق" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "ھەمبەھىر" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "" @@ -282,87 +282,87 @@ msgstr "" msgid "Password" msgstr "ئىم" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "يوللا" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "ئۆچۈر" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "ھەمبەھىر" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "تەڭشەك تامام" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "تىزىمدىن چىق" @@ -611,7 +607,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 5eb59234d45..d2b2f1a56ed 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "%s يۆتكىيەلمەيدۇ" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "ۋاقىتلىق قىسقۇچ كەم." -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "دىسكىغا يازالمىدى" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "يېتەرلىك ساقلاش بوشلۇقى يوق" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/ug/files_encryption.po b/l10n/ug/files_encryption.po index a2ab931108a..896e7bb4786 100644 --- a/l10n/ug/files_encryption.po +++ b/l10n/ug/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index eef158d2a17..87c7b7d1a81 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Abduqadir Abliz <sahran.ug@gmail.com>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 070da9caa89..41fc0ff42ee 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -19,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "ئىم" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "تاپشۇر" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "چۈشۈر" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "يۈكلە" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index c8bd1c56356..906ab6909db 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: Abduqadir Abliz <sahran.ug@gmail.com>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 40bd2778374..a6332d88221 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "ئەپلەر" msgid "Admin" msgstr "" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 0d892f91130..bcfab4ea926 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "ھەمبەھىر" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "بىخەتەرلىك" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "خاتىرە" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "خاتىرە دەرىجىسى" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "تېخىمۇ كۆپ" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "ئاز" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "ئىم" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "ئىمىڭىز مۇۋەپپەقىيەتلىك ئۆزگەرتىلدى" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "ئىمنى ئۆزگەرتكىلى بولمايدۇ." -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "نۆۋەتتىكى ئىم" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "يېڭى ئىم" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "ئىم ئۆزگەرت" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "كۆرسىتىش ئىسمى" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "تورخەت" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "تورخەت ئادرېسىڭىز" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "ئىم ئەسلىگە كەلتۈرۈشتە ئىشلىتىدىغان تور خەت ئادرېسىنى تولدۇرۇڭ" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "تىل" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "تەرجىمىگە ياردەم" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 26695e12ba9..6b429c4679e 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 72f7b696696..a741200789a 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "Не визначено тип об'єкту." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Помилка" @@ -246,7 +246,7 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -282,87 +282,87 @@ msgstr "Захистити паролем" msgid "Password" msgstr "Пароль" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Ел. пошта належить Пану" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Надіслати" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Встановити термін дії" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Термін дії" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Опублікувати через Ел. пошту:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Жодної людини не знайдено" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Пере-публікація не дозволяється" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Опубліковано {item} для {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Закрити доступ" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "може редагувати" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "контроль доступу" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "створити" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "оновити" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "видалити" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "опублікувати" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Ел. пошта надіслана" @@ -465,7 +465,7 @@ msgstr "Доступ заборонено" msgid "Cloud not found" msgstr "Cloud не знайдено" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "підконтрольні Вам веб-сервіси" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Редагувати категорії" @@ -572,12 +568,12 @@ msgstr "Хост бази даних" msgid "Finish setup" msgstr "Завершити налаштування" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Вихід" @@ -611,7 +607,7 @@ msgstr "Вхід" msgid "Alternative Logins" msgstr "Альтернативні Логіни" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 8494ed2f8c1..c0378bb8b0a 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "Не вдалося перемістити %s - Файл з таким msgid "Could not move %s" msgstr "Не вдалося перемістити %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно вивантажено без помилок." -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "Розмір звантаження перевищує upload_max_filesize параметра в php.ini: " -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Розмір відвантаженого файлу перевищує директиву MAX_FILE_SIZE вказану в HTML формі" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Невдалося записати на диск" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Місця більше немає" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Невірний каталог." @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "файл" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "файли" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index 7347ae2b11d..4899683a178 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 6024e8c2a08..0f03046115f 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index 59252dd6b9f..e759f21e7cd 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "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/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Пароль" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Передати" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s опублікував каталог %s для Вас" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s опублікував файл %s для Вас" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Завантажити" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Вивантажити" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Попередній перегляд недоступний для" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 88f6e165aed..c251c0ce849 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 69b25f3236f..66872cf8049 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Додатки" msgid "Admin" msgstr "Адмін" +#: defaults.php:33 +msgid "web services under your control" +msgstr "підконтрольні Вам веб-сервіси" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP завантаження вимкнено." diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index e924848e6e8..79caf516a7d 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "Помилка при створенні користувача" msgid "A valid password must be provided" msgstr "Потрібно задати вірний пароль" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Попередження про небезпеку" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "Ваш каталог з даними та Ваші файли можливо доступні з Інтернету. Файл .htaccess, наданий з ownCloud, не працює. Ми наполегливо рекомендуємо Вам налаштувати свій веб-сервер таким чином, щоб каталог data більше не був доступний, або перемістити каталог data за межі кореневого каталогу документів веб-сервера." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "Попередження при Налаштуванні" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Будь ласка, перевірте <a href='%s'>інструкції по встановленню</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "Модуль 'fileinfo' відсутній" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "Локалізація не працює" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "Цей сервер ownCloud не може встановити мову системи %s. Це означає, що можуть бути проблеми з деякими символами в іменах файлів. Ми наполегливо рекомендуємо встановити необхідні пакети у вашій системі для підтримки %s." -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "Інтернет-з'єднання не працює" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "Цей сервер ownCloud не має під'єднання до Інтернету. Це означає, що деякі функції, такі як монтування зовнішніх накопичувачів, повідомлення про оновлення або встановлення допоміжних програм не працюють. Доступ до файлів віддалено та відправка повідомлень електронною поштою також може не працювати. Ми пропонуємо увімкнути під'єднання до Інтернету для даного сервера, якщо ви хочете мати всі можливості ownCloud." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Виконати одне завдання для кожної завантаженої сторінки " -#: templates/admin.php:111 +#: templates/admin.php:113 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 зареєстрований в службі webcron. Викликає cron.php сторінку в кореневому каталозі owncloud кожну хвилину по http." -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "Використовується системний cron сервіс. Виклик cron.php файла з owncloud теки за допомогою системного cronjob раз на хвилину." -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Спільний доступ" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Увімкнути API спільного доступу" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Дозволити програмам використовувати API спільного доступу" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Дозволити посилання" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Дозволити користувачам відкривати спільний доступ до елементів за допомогою посилань" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Дозволити перевідкривати спільний доступ" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Дозволити користувачам знову відкривати спільний доступ до елементів, які вже відкриті для доступу" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Дозволити користувачам відкривати спільний доступ для всіх" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "Безпека" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "Примусове застосування HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "Зобов'язати клієнтів під'єднуватись до ownCloud через шифроване з'єднання." -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "Будь ласка, під'єднайтесь до цього ownCloud за допомогою HTTPS, щоб увімкнути або вимкнути використання SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Протокол" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "Рівень протоколювання" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "Більше" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "Менше" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Версія" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "БагТрекер" msgid "Commercial Support" msgstr "Комерційна підтримка" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Отримати додатки для синхронізації ваших файлів" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Показувати Майстер Налаштувань знову" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Ви використали <strong>%s</strong> із доступних <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Пароль" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Ваш пароль змінено" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Не вдалося змінити Ваш пароль" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Поточний пароль" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Новий пароль" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Змінити пароль" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Показати Ім'я" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Ел.пошта" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Ваша адреса електронної пошти" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Введіть адресу електронної пошти для відновлення паролю" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Мова" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Допомогти з перекладом" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Використовуйте цю адресу для під'єднання до вашого ownCloud у вашому файловому менеджері" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index b74cf7e6530..024841df382 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index c2f6008f169..87681133651 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "ایرر" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" @@ -282,87 +282,87 @@ msgstr "پاسورڈ سے محفوظ کریں" msgid "Password" msgstr "پاسورڈ" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "تاریخ معیاد سیٹ کریں" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "تاریخ معیاد" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "کوئی لوگ نہیں ملے۔" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "دوبارہ شئیر کرنے کی اجازت نہیں" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "ایڈٹ کر سکے" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "اسیس کنٹرول" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "نیا بنائیں" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "اپ ڈیٹ" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "ختم کریں" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "شئیر کریں" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "" @@ -465,7 +465,7 @@ msgstr "پہنچ کی اجازت نہیں" msgid "Cloud not found" msgstr "نہیں مل سکا" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "آپ کے اختیار میں ویب سروسیز" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "زمرہ جات کی تدوین کریں" @@ -572,12 +568,12 @@ msgstr "ڈیٹابیس ہوسٹ" msgid "Finish setup" msgstr "سیٹ اپ ختم کریں" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "لاگ آؤٹ" @@ -611,7 +607,7 @@ msgstr "لاگ ان" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 488950beb9b..d735287c1fc 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index cd653be6bdb..b082d1236b9 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index 368c787699f..119e4cb853f 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-29 00:04+0000\n" +"POT-Creation-Date: 2013-07-05 02:13+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "پاسورڈ" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:14 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:17 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:25 templates/public.php:83 +#: templates/public.php:28 templates/public.php:86 msgid "Download" msgstr "" -#: templates/public.php:41 +#: templates/public.php:44 msgid "Upload" msgstr "" -#: templates/public.php:51 +#: templates/public.php:54 msgid "Cancel upload" msgstr "" -#: templates/public.php:80 +#: templates/public.php:83 msgid "No preview available for" msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index eed07a66dc7..480b556d7b3 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index f0fe17c8643..2588fae3026 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "ایپز" msgid "Admin" msgstr "ایڈمن" +#: defaults.php:33 +msgid "web services under your control" +msgstr "آپ کے اختیار میں ویب سروسیز" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index e6f1d5cc504..b4f16cd96d7 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "پاسورڈ" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "نیا پاسورڈ" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index e0d3982842e..1b7d1820140 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 5b682e5ff05..f3d4a9614aa 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -226,8 +226,8 @@ msgstr "Loại đối tượng không được chỉ định." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "Lỗi" @@ -247,7 +247,7 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -283,87 +283,87 @@ msgstr "Mật khẩu bảo vệ" msgid "Password" msgstr "Mật khẩu" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Liên kết email tới cá nhân" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Gởi" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Đặt ngày kết thúc" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Ngày kết thúc" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Chia sẻ thông qua email" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Không tìm thấy người nào" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Chia sẻ lại không được cho phép" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "Đã được chia sẽ trong {item} với {user}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "có thể chỉnh sửa" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "quản lý truy cập" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "tạo" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "cập nhật" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "xóa" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "chia sẻ" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email đã được gửi" @@ -466,7 +466,7 @@ msgstr "Truy cập bị cấm" msgid "Cloud not found" msgstr "Không tìm thấy Clound" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "dịch vụ web dưới sự kiểm soát của bạn" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Sửa chuyên mục" @@ -573,12 +569,12 @@ msgstr "Database host" msgid "Finish setup" msgstr "Cài đặt hoàn tất" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s còn trống. Xem thêm thông tin cách cập nhật." -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "Đăng xuất" @@ -612,7 +608,7 @@ msgstr "Đăng nhập" msgid "Alternative Logins" msgstr "Đăng nhập khác" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 23ea01f766e..8416346e437 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "Không thể di chuyển %s - Đã có tên tập tin này trên hệ th msgid "Could not move %s" msgstr "Không thể di chuyển %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "Không có tập tin nào được tải lên. Lỗi không xác định" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "Không có lỗi, các tập tin đã được tải lên thành công" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "Tập tin được tải lên vượt quá MAX_FILE_SIZE được quy định trong mẫu HTML" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "Các tập tin được tải lên chỉ tải lên được một phần" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "Chưa có file nào được tải lên" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "Không tìm thấy thư mục tạm" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "Không thể ghi " -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "Không đủ không gian lưu trữ" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "Thư mục không hợp lệ" @@ -338,11 +338,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "file" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "files" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index 39200c63426..d075fbbae3b 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index bb43f1a2a04..78e0eff5074 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: xtdv <truong.tx8@gmail.com>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 67064fb28e9..f0c034d883d 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "Mật khẩu" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "Xác nhận" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s đã chia sẻ thư mục %s với bạn" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s đã chia sẻ tập tin %s với bạn" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Tải về" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Tải lên" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "Không có xem trước cho" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index e43f1798e86..b30b6b51022 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index f3439878640..80da3e9905a 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "Ứng dụng" msgid "Admin" msgstr "Quản trị" +#: defaults.php:33 +msgid "web services under your control" +msgstr "dịch vụ web dưới sự kiểm soát của bạn" + #: files.php:210 msgid "ZIP download is turned off." msgstr "Tải về ZIP đã bị tắt." diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 38dbe3130e3..6a883af6f91 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__Ngôn ngữ___" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "Cảnh bảo bảo mật" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "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ừ mạng. Tập tin .htaccess do 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ủ web để thư mục dữ liệu không còn bị truy cập hoặc bạn nê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ủ." -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "Thực thi tác vụ mỗi khi trang được tải" -#: templates/admin.php:111 +#: templates/admin.php:113 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 đã đượ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:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "Chia sẻ" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "Bật chia sẻ API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "Cho phép các ứng dụng sử dụng chia sẻ API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "Cho phép liên kết" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "Cho phép người dùng chia sẻ công khai các mục bằng các liên kết" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "Cho phép chia sẻ lại" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "Cho phép người dùng chia sẻ lại những mục đã được chia sẻ" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "Cho phép người dùng chia sẻ với bất cứ ai" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "Chỉ cho phép người dùng chia sẻ với những người dùng trong nhóm của họ" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "Log" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "hơn" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "ít" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "Hệ ghi nhận lỗi" msgid "Commercial Support" msgstr "Hỗ trợ có phí" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "Nhận ứng dụng để đồng bộ file của bạn" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "Hiện lại việc chạy đồ thuật khởi đầu" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "Bạn đã sử dụng <strong>%s </ strong> có sẵn <strong> %s </ strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Mật khẩu" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "Mật khẩu của bạn đã được thay đổi." -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "Không thể đổi mật khẩu" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "Mật khẩu cũ" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "Mật khẩu mới" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "Đổi mật khẩu" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "Tên hiển thị" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "Email" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "Email của bạn" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "Nhập địa chỉ email của bạn để khôi phục lại mật khẩu" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "Ngôn ngữ" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "Hỗ trợ dịch thuật" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Sử dụng địa chỉ này để kết nối ownCloud của bạn trong trình quản lý file của bạn" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index 393ee73f613..118db2125ff 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 16c7b0a4477..7f243ff9d77 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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -227,8 +227,8 @@ msgstr "未指定对象类型。" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "出错" @@ -248,7 +248,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "分享出错" @@ -284,87 +284,87 @@ msgstr "密码保护" msgid "Password" msgstr "密码" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "面向个人的电子邮件链接" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "发送" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "设置失效日期" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "失效日期" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "通过电子邮件分享:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "查无此人" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "不允许重复分享" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "已经与 {user} 在 {item} 中分享" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "取消分享" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "可编辑" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "访问控制" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "创建" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "更新" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "删除" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "分享" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "密码保护" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "取消设置失效日期出错" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "设置失效日期出错" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "发送中……" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "电子邮件已发送" @@ -467,7 +467,7 @@ msgstr "禁止访问" msgid "Cloud not found" msgstr "云 没有被找到" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "您控制的网络服务" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "编辑分类" @@ -574,12 +570,12 @@ msgstr "数据库主机" msgid "Finish setup" msgstr "完成安装" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "注销" @@ -613,7 +609,7 @@ msgstr "登陆" msgid "Alternative Logins" msgstr "备选登录" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 152f04b85fa..728ea1926d3 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "没有上传文件。未知错误" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "文件上传成功" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件超过了 HTML 表格中指定的 MAX_FILE_SIZE 选项" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "文件部分上传" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "没有上传文件" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "缺失临时文件夹" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "写磁盘失败" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" @@ -337,11 +337,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "文件" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "文件" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index 104002722e9..ea02882e9b7 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 18f3f0e9422..55005c42746 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: hyy0591 <yangyu.huang@gmail.com>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index b1697142faa..eb64b8ae9db 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "密码" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "提交" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 与您分享了文件夹 %s" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s 与您分享了文件 %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "下载" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上传" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "没有预览可用于" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 12f5d9c90b4..9a0627bb617 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index dc5c3813746..6a2049583af 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "程序" msgid "Admin" msgstr "管理员" +#: defaults.php:33 +msgid "web services under your control" +msgstr "您控制的网络服务" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP 下载已关闭" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 3bbdcf2f701..ea94304d11d 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "新增用户时出现错误" msgid "A valid password must be provided" msgstr "请填写有效密码" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "Chinese" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "安全警告" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "您的数据文件夹和您的文件或许能够从互联网访问。ownCloud 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "配置注意" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "请双击<a href='%s'>安装向导</a>。" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "模块“fileinfo”丢失。" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP 模块“fileinfo”丢失。我们强烈建议打开此模块来获得 mine 类型检测的最佳结果。" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "区域设置未运作" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "ownCloud 服务器不能把系统区域设置到 %s。这意味着文件名可内可能含有某些引起问题的字符。我们强烈建议在您的系统上安装必要的包来支持“%s”。" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "互联网连接未运作" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "Cron" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "在每个页面载入时执行一项任务" -#: templates/admin.php:111 +#: templates/admin.php:113 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 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "分享" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "开启分享API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "允许应用使用分享API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "允许链接" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "允许用户通过链接共享内容" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "允许转帖" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "允许用户再次共享已共享的内容" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "允许用户向任何人分享" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "只允许用户向所在群组中的其他用户分享" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "安全" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "强制HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "强制客户端通过加密连接与ownCloud连接" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "日志" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "更多" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "更少" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "版本" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,72 +387,72 @@ msgstr "Bug追踪者" msgid "Commercial Support" msgstr "商业支持" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "获取应用并同步您的文件" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "再次显示首次运行向导" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "您已使用<strong>%s</strong>/<strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密码" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "您的密码以变更" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "不能改变你的密码" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "现在的密码" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "新密码" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "改变密码" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "显示名称" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "你的email地址" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "输入一个邮箱地址以激活密码恢复功能" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "语言" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "使用此地址来在您的文件管理器中连接您的ownCloud" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 3601a228b64..365966421c2 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 09fbf32f0b6..36a3008274a 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" -"Last-Translator: m13253 <m13253@hotmail.com>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -227,8 +227,8 @@ msgstr "未指定对象类型。" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "错误" @@ -248,7 +248,7 @@ msgstr "已共享" msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "共享时出错" @@ -284,87 +284,87 @@ msgstr "密码保护" msgid "Password" msgstr "密码" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "允许公开上传" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "发送链接到个人" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "发送" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "设置过期日期" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "过期日期" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "通过Email共享" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "未找到此人" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "不允许二次共享" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "在 {item} 与 {user} 共享。" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "取消共享" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "可以修改" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "访问控制" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "创建" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "更新" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "删除" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "共享" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "邮件已发送" @@ -467,7 +467,7 @@ msgstr "访问禁止" msgid "Cloud not found" msgstr "未找到云" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "您好,\n\n%s 向您分享了 %s。\n查看: %s" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "您控制的web服务" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "编辑分类" @@ -574,12 +570,12 @@ msgstr "数据库主机" msgid "Finish setup" msgstr "安装完成" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s 可用。获取更多关于如何升级的信息。" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "注销" @@ -613,7 +609,7 @@ msgstr "登录" msgid "Alternative Logins" msgstr "其他登录方式" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index f2bc922dc30..3910f726c15 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -30,54 +30,54 @@ msgstr "无法移动 %s - 同名文件已存在" msgid "Could not move %s" msgstr "无法移动 %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "无法设置上传文件夹。" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "无效密匙" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "没有文件被上传。未知错误" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "文件上传成功,没有错误发生" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上传文件大小已超过php.ini中upload_max_filesize所规定的值" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上传的文件长度超出了 HTML 表单中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "已上传文件只上传了部分(不完整)" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "没有文件被上传" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "写入磁盘失败" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "没有足够的存储空间" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "无效文件夹。" @@ -340,11 +340,11 @@ msgstr "" #: templates/part.list.php:89 msgid "file" -msgstr "" +msgstr "文件" #: templates/part.list.php:91 msgid "files" -msgstr "" +msgstr "文件" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index b1a0711b925..08588336e19 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 05:40+0000\n" -"Last-Translator: Mengz You <mengz.you@gmail.com>\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,14 +65,15 @@ msgid "" msgstr "您的私有密钥无效!也许是您在 ownCloud 系统外更改了密码 (比如,在您的公司目录)。您可以在个人设置里更新您的私钥密码来恢复访问你的加密文件。" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." -msgstr "PHP 模块 OpenSSL 未安装。" +msgid "Missing requirements." +msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." -msgstr "请请求您的服务器管理员安装该模块。现在加密应用被禁用。" +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 5dd21339dc0..9eb2b4df113 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index e13685265c5..c133035f63c 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "密码" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "提交" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s与您共享了%s文件夹" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s与您共享了%s文件" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "下载" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上传" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "没有预览" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 6db80b6b710..34aa9902a54 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index fc14be38559..b8e52e3e538 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "应用" msgid "Admin" msgstr "管理" +#: defaults.php:33 +msgid "web services under your control" +msgstr "您控制的web服务" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP 下载已经关闭" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 00cd6958095..ce2bb88368a 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: m13253 <m13253@hotmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -168,15 +168,15 @@ msgstr "创建用户出错" msgid "A valid password must be provided" msgstr "必须提供合法的密码" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "简体中文" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "安全警告" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -185,36 +185,36 @@ msgid "" " webserver document root." msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器根目录以外。" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "设置警告" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "请认真检查<a href='%s'>安装指南</a>." -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "模块'文件信息'丢失" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果." -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "本地化无法工作" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -222,11 +222,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "此ownCloud服务器无法设置系统本地化到%s. 这意味着可能文件名中有一些字符引起问题. 我们强烈建议在你系统上安装所需的软件包来支持%s" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "因特网连接无法工作" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -236,102 +236,102 @@ msgid "" " of ownCloud." msgstr "此ownCloud服务器上没有可用的因特网连接. 这意味着某些特性例如挂载外部存储器, 提醒更新或安装第三方应用无法工作. 从远程访问文件和发送提醒电子邮件可能也无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接." -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "计划任务" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "每个页面加载后执行一个任务" -#: templates/admin.php:111 +#: templates/admin.php:113 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已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "共享" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "启用共享API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "允许应用软件使用共享API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "允许链接" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "允许用户使用连接公开共享项目" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "允许再次共享" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "允许用户将共享给他们的项目再次共享" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "允许用户向任何人共享" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "允许用户只向同组用户共享" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "安全" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "强制使用 HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "强制客户端通过加密连接连接到 ownCloud。" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "请经由HTTPS连接到这个ownCloud实例来启用或禁用强制SSL." -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "日志" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "日志级别" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "更多" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "更少" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "版本" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -389,72 +389,72 @@ msgstr "问题跟踪器" msgid "Commercial Support" msgstr "商业支持" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "安装应用进行文件同步" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "再次显示首次运行向导" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "你已使用 <strong>%s</strong>,有效空间 <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密码" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "密码已修改" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "无法修改密码" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "当前密码" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "新密码" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "修改密码" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "显示名称" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "您的电子邮件" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "填写电子邮件地址以启用密码恢复功能" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "语言" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "用该地址来连接文件管理器中的 ownCloud" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 5fe02c6ab53..c414cdbb82e 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: modokwang <modokwang@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index d31f5a1d7c4..22016a84dd6 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -225,8 +225,8 @@ msgstr "" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "錯誤" @@ -246,7 +246,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -282,87 +282,87 @@ msgstr "密碼保護" msgid "Password" msgstr "密碼" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "傳送" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "設定分享期限" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "分享期限" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "以電郵分享" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "找不到" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "取消分享" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "新增" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "更新" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "刪除" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "分享" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "郵件已傳" @@ -465,7 +465,7 @@ msgstr "" msgid "Cloud not found" msgstr "未找到Cloud" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -476,10 +476,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" @@ -572,12 +568,12 @@ msgstr "" msgid "Finish setup" msgstr "" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "登出" @@ -611,7 +607,7 @@ msgstr "登入" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 27f801a9200..3279623961c 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -27,54 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index 3937e630ba2..7a7dd9fef9c 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -62,13 +62,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index f65eda32b5d..e108b3558b9 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index d260da06ce8..4a0f3b92046 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -18,35 +18,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "密碼" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "下載" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上傳" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index ed9bec990f6..36a2e044174 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 42bad4bd89e..615d840d9dc 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -41,6 +41,10 @@ msgstr "軟件" msgid "Admin" msgstr "管理" +#: defaults.php:33 +msgid "web services under your control" +msgstr "" + #: files.php:210 msgid "ZIP download is turned off." msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index cda36614b08..29454f541a1 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -165,15 +165,15 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -182,36 +182,36 @@ msgid "" " webserver document root." msgstr "" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -219,11 +219,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -233,102 +233,102 @@ msgid "" " of ownCloud." msgstr "" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:111 +#: templates/admin.php:113 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:121 +#: templates/admin.php:123 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:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -386,72 +386,72 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密碼" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "新密碼" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "電郵" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 75c0c122c28..b6c51486e84 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 498f52a12bc..97f93211ec0 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: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -227,8 +227,8 @@ msgstr "未指定物件類型。" #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:618 -#: js/share.js:630 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:620 +#: js/share.js:632 msgid "Error" msgstr "錯誤" @@ -248,7 +248,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:658 +#: js/share.js:125 js/share.js:660 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -284,87 +284,87 @@ msgstr "密碼保護" msgid "Password" msgstr "密碼" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "將連結 email 給別人" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "寄出" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "設置到期日" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "到期日" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "透過電子郵件分享:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "沒有找到任何人" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "不允許重新分享" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" msgstr "已和 {user} 分享 {item}" -#: js/share.js:325 +#: js/share.js:327 msgid "Unshare" msgstr "取消共享" -#: js/share.js:337 +#: js/share.js:339 msgid "can edit" msgstr "可編輯" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" msgstr "存取控制" -#: js/share.js:342 +#: js/share.js:344 msgid "create" msgstr "建立" -#: js/share.js:345 +#: js/share.js:347 msgid "update" msgstr "更新" -#: js/share.js:348 +#: js/share.js:350 msgid "delete" msgstr "刪除" -#: js/share.js:351 +#: js/share.js:353 msgid "share" msgstr "分享" -#: js/share.js:385 js/share.js:605 +#: js/share.js:387 js/share.js:607 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "解除過期日設定失敗" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "錯誤的到期日設定" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "正在傳送..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email 已寄出" @@ -467,7 +467,7 @@ msgstr "存取被拒" msgid "Cloud not found" msgstr "未發現雲端" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -478,10 +478,6 @@ msgid "" "Cheers!" msgstr "" -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "由您控制的網路服務" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "編輯分類" @@ -574,12 +570,12 @@ msgstr "資料庫主機" msgid "Finish setup" msgstr "完成設定" -#: templates/layout.user.php:40 +#: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s 已經釋出,瞭解更多資訊以進行更新。" -#: templates/layout.user.php:65 +#: templates/layout.user.php:68 msgid "Log out" msgstr "登出" @@ -613,7 +609,7 @@ msgstr "登入" msgid "Alternative Logins" msgstr "替代登入方法" -#: templates/mail.php:15 +#: templates/mail.php:16 #, php-format msgid "" "Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a " diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 66e1d7fe663..76e54f35869 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -28,54 +28,54 @@ msgstr "無法移動 %s - 同名的檔案已經存在" msgid "Could not move %s" msgstr "無法移動 %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:36 ajax/upload.php:48 msgid "Unable to set upload directory." msgstr "" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:62 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳。未知的錯誤。" -#: ajax/upload.php:62 +#: ajax/upload.php:69 msgid "There is no error, the file uploaded with success" msgstr "無錯誤,檔案上傳成功" -#: ajax/upload.php:63 +#: ajax/upload.php:70 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:" -#: ajax/upload.php:65 +#: ajax/upload.php:72 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" msgstr "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制" -#: ajax/upload.php:66 +#: ajax/upload.php:73 msgid "The uploaded file was only partially uploaded" msgstr "只有檔案的一部分被上傳" -#: ajax/upload.php:67 +#: ajax/upload.php:74 msgid "No file was uploaded" msgstr "沒有檔案被上傳" -#: ajax/upload.php:68 +#: ajax/upload.php:75 msgid "Missing a temporary folder" msgstr "找不到暫存資料夾" -#: ajax/upload.php:69 +#: ajax/upload.php:76 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" -#: ajax/upload.php:87 +#: ajax/upload.php:94 msgid "Not enough storage available" msgstr "儲存空間不足" -#: ajax/upload.php:119 +#: ajax/upload.php:126 msgid "Invalid directory." msgstr "無效的資料夾。" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 9d0e6b907aa..0ad4c062c9a 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-02 13:33+0000\n" +"POT-Creation-Date: 2013-07-05 02:12+0200\n" +"PO-Revision-Date: 2013-07-05 00:13+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -63,13 +63,14 @@ msgid "" msgstr "" #: hooks/hooks.php:44 -msgid "PHP module OpenSSL is not installed." +msgid "Missing requirements." msgstr "" #: hooks/hooks.php:45 msgid "" -"Please ask your server administrator to install the module. For now the " -"encryption app was disabled." +"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " +"PHP extension is enabled and configured properly. For now, the encryption " +"app has been disabled." msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 60cacfe1a0d..05ca90367d9 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: pellaeon <nfsmwlin@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 49c41d7d1a7..764dbc31fd9 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -19,35 +19,39 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 msgid "Password" msgstr "密碼" -#: templates/authenticate.php:6 +#: templates/authenticate.php:9 msgid "Submit" msgstr "送出" -#: templates/public.php:15 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 和您分享了資料夾 %s " -#: templates/public.php:18 +#: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" msgstr "%s 和您分享了檔案 %s" -#: templates/public.php:26 templates/public.php:84 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "下載" -#: templates/public.php:42 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上傳" -#: templates/public.php:52 +#: templates/public.php:58 msgid "Cancel upload" msgstr "取消上傳" -#: templates/public.php:81 +#: templates/public.php:87 msgid "No preview available for" msgstr "無法預覽" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 2c7cbb82393..f45895cf9a6 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:56+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 2a507ad39cd..4201d2f4fb0 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/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: 2013-07-04 09:31+0200\n" -"PO-Revision-Date: 2013-07-03 00:02+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 00:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -42,6 +42,10 @@ msgstr "應用程式" msgid "Admin" msgstr "管理" +#: defaults.php:33 +msgid "web services under your control" +msgstr "由您控制的網路服務" + #: files.php:210 msgid "ZIP download is turned off." msgstr "ZIP 下載已關閉。" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 6b6206316d2..2589e351260 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" +"POT-Creation-Date: 2013-07-08 02:03+0200\n" +"PO-Revision-Date: 2013-07-07 23:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -166,15 +166,15 @@ msgstr "創建用戶時出現錯誤" msgid "A valid password must be provided" msgstr "一定要提供一個有效的密碼" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "__語言_名稱__" -#: templates/admin.php:15 +#: templates/admin.php:17 msgid "Security Warning" msgstr "安全性警告" -#: templates/admin.php:18 +#: templates/admin.php:20 msgid "" "Your data directory and your files are probably accessible from the " "internet. The .htaccess file that ownCloud provides is not working. We " @@ -183,36 +183,36 @@ msgid "" " webserver document root." msgstr "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。" -#: templates/admin.php:29 +#: templates/admin.php:31 msgid "Setup Warning" msgstr "設定警告" -#: templates/admin.php:32 +#: templates/admin.php:34 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" -#: templates/admin.php:33 +#: templates/admin.php:35 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "請參考<a href='%s'>安裝指南</a>。" -#: templates/admin.php:44 +#: templates/admin.php:46 msgid "Module 'fileinfo' missing" msgstr "遺失 'fileinfo' 模組" -#: templates/admin.php:47 +#: templates/admin.php:49 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." msgstr "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。" -#: templates/admin.php:58 +#: templates/admin.php:60 msgid "Locale not working" msgstr "語系無法運作" -#: templates/admin.php:63 +#: templates/admin.php:65 #, php-format msgid "" "This ownCloud server can't set system locale to %s. This means that there " @@ -220,11 +220,11 @@ msgid "" " to install the required packages on your system to support %s." msgstr "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。" -#: templates/admin.php:75 +#: templates/admin.php:77 msgid "Internet connection not working" msgstr "去連線" -#: templates/admin.php:78 +#: templates/admin.php:80 msgid "" "This ownCloud server has no working internet connection. This means that " "some of the features like mounting of external storage, notifications about " @@ -234,102 +234,102 @@ msgid "" " of ownCloud." msgstr "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。" -#: templates/admin.php:92 +#: templates/admin.php:94 msgid "Cron" msgstr "定期執行" -#: templates/admin.php:101 +#: templates/admin.php:103 msgid "Execute one task with each page loaded" msgstr "當頁面載入時,執行" -#: templates/admin.php:111 +#: templates/admin.php:113 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 已經在 webcron 服務當中註冊,請每分鐘透過 HTTP 呼叫 ownCloud 根目錄當中的 cron.php 一次。" -#: templates/admin.php:121 +#: templates/admin.php:123 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." msgstr "使用系統的 cron 服務,每分鐘執行一次 owncloud 資料夾中的 cron.php 。" -#: templates/admin.php:128 +#: templates/admin.php:130 msgid "Sharing" msgstr "分享" -#: templates/admin.php:134 +#: templates/admin.php:136 msgid "Enable Share API" msgstr "啟用分享 API" -#: templates/admin.php:135 +#: templates/admin.php:137 msgid "Allow apps to use the Share API" msgstr "允許 apps 使用分享 API" -#: templates/admin.php:142 +#: templates/admin.php:144 msgid "Allow links" msgstr "允許連結" -#: templates/admin.php:143 +#: templates/admin.php:145 msgid "Allow users to share items to the public with links" msgstr "允許使用者透過公開的連結分享檔案" -#: templates/admin.php:150 +#: templates/admin.php:152 msgid "Allow resharing" msgstr "允許轉貼分享" -#: templates/admin.php:151 +#: templates/admin.php:153 msgid "Allow users to share items shared with them again" msgstr "允許使用者分享其他使用者分享給他的檔案" -#: templates/admin.php:158 +#: templates/admin.php:160 msgid "Allow users to share with anyone" msgstr "允許使用者與任何人分享檔案" -#: templates/admin.php:161 +#: templates/admin.php:163 msgid "Allow users to only share with users in their groups" msgstr "僅允許使用者在群組內分享" -#: templates/admin.php:168 +#: templates/admin.php:170 msgid "Security" msgstr "安全性" -#: templates/admin.php:181 +#: templates/admin.php:183 msgid "Enforce HTTPS" msgstr "強制啟用 HTTPS" -#: templates/admin.php:182 +#: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." msgstr "強制指定用戶端使用加密的連線連接到 ownCloud" -#: templates/admin.php:185 +#: templates/admin.php:187 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." msgstr "請使用 HTTPS 連線到 ownCloud,或是關閉強制使用 SSL 的選項。" -#: templates/admin.php:195 +#: templates/admin.php:197 msgid "Log" msgstr "紀錄" -#: templates/admin.php:196 +#: templates/admin.php:198 msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:227 +#: templates/admin.php:229 msgid "More" msgstr "更多" -#: templates/admin.php:228 +#: templates/admin.php:230 msgid "Less" msgstr "少" -#: templates/admin.php:234 templates/personal.php:115 +#: templates/admin.php:236 templates/personal.php:116 msgid "Version" msgstr "版本" -#: templates/admin.php:238 templates/personal.php:118 +#: templates/admin.php:240 templates/personal.php:119 msgid "" "Developed by the <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,72 +387,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "商用支援" -#: templates/personal.php:9 +#: templates/personal.php:10 msgid "Get the apps to sync your files" msgstr "下載應用程式來同步您的檔案" -#: templates/personal.php:20 +#: templates/personal.php:21 msgid "Show First Run Wizard again" msgstr "再次顯示首次使用精靈" -#: templates/personal.php:28 +#: templates/personal.php:29 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" msgstr "您已經使用了 <strong>%s</strong> ,目前可用空間為 <strong>%s</strong>" -#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密碼" -#: templates/personal.php:41 +#: templates/personal.php:42 msgid "Your password was changed" msgstr "你的密碼已更改" -#: templates/personal.php:42 +#: templates/personal.php:43 msgid "Unable to change your password" msgstr "無法變更您的密碼" -#: templates/personal.php:43 +#: templates/personal.php:44 msgid "Current password" msgstr "目前密碼" -#: templates/personal.php:45 +#: templates/personal.php:46 msgid "New password" msgstr "新密碼" -#: templates/personal.php:47 +#: templates/personal.php:48 msgid "Change password" msgstr "變更密碼" -#: templates/personal.php:59 templates/users.php:85 +#: templates/personal.php:60 templates/users.php:85 msgid "Display Name" msgstr "顯示名稱" -#: templates/personal.php:74 +#: templates/personal.php:75 msgid "Email" msgstr "信箱" -#: templates/personal.php:76 +#: templates/personal.php:77 msgid "Your email address" msgstr "您的電子郵件信箱" -#: templates/personal.php:77 +#: templates/personal.php:78 msgid "Fill in an email address to enable password recovery" msgstr "請填入電子郵件信箱以便回復密碼" -#: templates/personal.php:86 templates/personal.php:87 +#: templates/personal.php:87 templates/personal.php:88 msgid "Language" msgstr "語言" -#: templates/personal.php:99 +#: templates/personal.php:100 msgid "Help translate" msgstr "幫助翻譯" -#: templates/personal.php:105 +#: templates/personal.php:106 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:107 +#: templates/personal.php:108 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "在您的檔案管理員中使用這個地址來連線到 ownCloud" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 71df9ed2110..a5bb0172afa 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# chenanyeh <chnjsn1221@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-03 01:57+0200\n" -"PO-Revision-Date: 2013-07-02 14:05+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-08 02:02+0200\n" +"PO-Revision-Date: 2013-07-07 23:15+0000\n" +"Last-Translator: chenanyeh <chnjsn1221@gmail.com>\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" @@ -19,27 +20,27 @@ msgstr "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "清除映射失敗" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "刪除伺服器設定時失敗" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "設定有效且連線可建立" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "設定有效但連線無法建立。請檢查伺服器的設定與認證資料。" #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "設定無效。更多細節請參閱ownCloud的記錄檔。" #: js/settings.js:66 msgid "Deletion failed" @@ -47,19 +48,19 @@ msgstr "移除失敗" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "要使用最近一次的伺服器設定嗎?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "維持設定嗎?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "無法新增伺服器設定" #: js/settings.js:111 msgid "mappings cleared" -msgstr "" +msgstr "映射已清除" #: js/settings.js:112 msgid "Success" @@ -71,40 +72,40 @@ msgstr "錯誤" #: js/settings.js:141 msgid "Connection test succeeded" -msgstr "" +msgstr "連線測試成功" #: js/settings.js:146 msgid "Connection test failed" -msgstr "" +msgstr "連線測試失敗" #: js/settings.js:156 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "您真的確定要刪除現在的伺服器設定嗎?" #: js/settings.js:157 msgid "Confirm Deletion" -msgstr "" +msgstr "確認已刪除" #: templates/settings.php:9 msgid "" "<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "<b>警告:</b> 應用程式user_ldap和user_webdavauth互不相容。可能會造成無法預期的結果。請要求您的系統管理員將兩者其中之一停用。" #: templates/settings.php:12 msgid "" "<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>警告:</b>沒有安裝 PHP LDAP 模組,後端系統將無法運作。請要求您的系統管理員安裝模組。" #: templates/settings.php:16 msgid "Server configuration" -msgstr "" +msgstr "伺服器設定" #: templates/settings.php:32 msgid "Add Server Configuration" -msgstr "" +msgstr "新增伺服器設定" #: templates/settings.php:37 msgid "Host" @@ -113,7 +114,7 @@ msgstr "主機" #: templates/settings.php:39 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "若您不需要SSL加密傳輸則可忽略通訊協定。若非如此請從ldaps://開始" #: templates/settings.php:40 msgid "Base DN" @@ -121,11 +122,11 @@ msgstr "" #: templates/settings.php:41 msgid "One Base DN per line" -msgstr "" +msgstr "一行一個Base DN" #: templates/settings.php:42 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "您可以在進階標籤頁裡面指定使用者及群組的Base DN" #: templates/settings.php:44 msgid "User DN" @@ -136,7 +137,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:47 msgid "Password" @@ -144,59 +145,59 @@ msgstr "密碼" #: templates/settings.php:50 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "匿名連接時請將DN與密碼欄位留白" #: templates/settings.php:51 msgid "User Login Filter" -msgstr "" +msgstr "使用者登入過濾器" #: templates/settings.php:54 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." -msgstr "" +msgstr "試圖登入時會定義要套用的篩選器。登入過程中%%uid會取代使用者名稱。" #: templates/settings.php:55 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "請使用 %%uid placeholder,例如:\"uid=%%uid\"" #: templates/settings.php:56 msgid "User List Filter" -msgstr "" +msgstr "使用者名單篩選器" #: templates/settings.php:59 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "檢索使用者時定義要套用的篩選器" #: templates/settings.php:60 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "請勿使用任何placeholder,例如:\"objectClass=person\"。" #: templates/settings.php:61 msgid "Group Filter" -msgstr "" +msgstr "群組篩選器" #: templates/settings.php:64 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "檢索群組時,定義要套用的篩選器" #: templates/settings.php:65 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "請勿使用任何placeholder,例如:\"objectClass=posixGroup\"。" #: templates/settings.php:69 msgid "Connection Settings" -msgstr "" +msgstr "連線設定" #: templates/settings.php:71 msgid "Configuration Active" -msgstr "" +msgstr "設定為主動模式" #: templates/settings.php:71 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "沒有被勾選時,此設定會被略過。" #: templates/settings.php:72 msgid "Port" @@ -204,25 +205,25 @@ msgstr "連接阜" #: templates/settings.php:73 msgid "Backup (Replica) Host" -msgstr "" +msgstr "備用主機" #: templates/settings.php:73 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "請給定一個可選的備用主機。必須是LDAP/AD中央伺服器的複本。" #: templates/settings.php:74 msgid "Backup (Replica) Port" -msgstr "" +msgstr "備用(複本)連接阜" #: templates/settings.php:75 msgid "Disable Main Server" -msgstr "" +msgstr "停用主伺服器" #: templates/settings.php:75 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgstr "當開關打開時,ownCloud將只會連接複本伺服器。" #: templates/settings.php:76 msgid "Use TLS" @@ -234,7 +235,7 @@ msgstr "" #: templates/settings.php:77 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "不區分大小寫的LDAP伺服器(Windows)" #: templates/settings.php:78 msgid "Turn off SSL certificate validation." @@ -244,51 +245,51 @@ msgstr "關閉 SSL 憑證驗證" msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." -msgstr "" +msgstr "若連線只有在此選項開啟時運作,請匯入LDAP伺服器的SSL認證到您的ownCloud伺服器。" #: templates/settings.php:78 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "不推薦使用,僅供測試用途。" #: templates/settings.php:79 msgid "Cache Time-To-Live" -msgstr "" +msgstr "快取的存活時間" #: templates/settings.php:79 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "以秒為單位。更變後會清空快取。" #: templates/settings.php:81 msgid "Directory Settings" -msgstr "" +msgstr "目錄選項" #: templates/settings.php:83 msgid "User Display Name Field" -msgstr "" +msgstr "使用者名稱欄位" #: templates/settings.php:83 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "用於產生ownCloud名稱" #: templates/settings.php:84 msgid "Base User Tree" -msgstr "" +msgstr "Base使用者數" #: templates/settings.php:84 msgid "One User Base DN per line" -msgstr "" +msgstr "一行一個使用者Base DN" #: templates/settings.php:85 msgid "User Search Attributes" -msgstr "" +msgstr "使用者搜索屬性" #: templates/settings.php:85 templates/settings.php:88 msgid "Optional; one attribute per line" -msgstr "" +msgstr "可選的; 一行一項屬性" #: templates/settings.php:86 msgid "Group Display Name Field" -msgstr "" +msgstr "群組顯示名稱欄位" #: templates/settings.php:86 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." @@ -296,53 +297,53 @@ msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" -msgstr "" +msgstr "Base群組樹" #: templates/settings.php:87 msgid "One Group Base DN per line" -msgstr "" +msgstr "一行一個群組Base DN" #: templates/settings.php:88 msgid "Group Search Attributes" -msgstr "" +msgstr "群組搜索屬性" #: templates/settings.php:89 msgid "Group-Member association" -msgstr "" +msgstr "群組成員的關係" #: templates/settings.php:91 msgid "Special Attributes" -msgstr "" +msgstr "特殊屬性" #: templates/settings.php:93 msgid "Quota Field" -msgstr "" +msgstr "配額欄位" #: templates/settings.php:94 msgid "Quota Default" -msgstr "" +msgstr "預設配額" #: templates/settings.php:94 msgid "in bytes" -msgstr "" +msgstr "以位元組為單位" #: templates/settings.php:95 msgid "Email Field" -msgstr "" +msgstr "電郵欄位" #: templates/settings.php:96 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "使用者家目錄的命名規則" #: templates/settings.php:96 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "使用者名稱請留白(預設)。若不留白請指定一個LDAP/AD屬性。" #: templates/settings.php:101 msgid "Internal Username" -msgstr "" +msgstr "內部使用者名稱" #: templates/settings.php:102 msgid "" @@ -412,7 +413,7 @@ msgstr "" #: templates/settings.php:111 msgid "Test Configuration" -msgstr "" +msgstr "測試此設定" #: templates/settings.php:111 msgid "Help" diff --git a/lib/base.php b/lib/base.php index af54f439155..d1279a46337 100644 --- a/lib/base.php +++ b/lib/base.php @@ -173,11 +173,12 @@ class OC { public static function checkConfig() { if (file_exists(OC::$SERVERROOT . "/config/config.php") and !is_writable(OC::$SERVERROOT . "/config/config.php")) { + $defaults = new OC_Defaults(); $tmpl = new OC_Template('', 'error', 'guest'); $tmpl->assign('errors', array(1 => array( 'error' => "Can't write into config directory 'config'", - 'hint' => 'You can usually fix this by giving the webserver user write access' - .' to the config directory in owncloud' + 'hint' => 'This can usually be fixed by ' + .'<a href="' . $defaults->getDocBaseUrl() . '/server/5.0/admin_manual/installation/installation_source.html#set-the-directory-permissions" target="_blank">giving the webserver write access to the config directory</a>.' ))); $tmpl->printPage(); exit(); diff --git a/lib/config.php b/lib/config.php index afd74c56b40..c01cb4e152f 100644 --- a/lib/config.php +++ b/lib/config.php @@ -156,6 +156,7 @@ class Config { */ private function writeData() { // Create a php file ... + $defaults = new OC_Defaults; $content = "<?php\n"; if ($this->debugMode) { $content .= "define('DEBUG',true);\n"; @@ -167,10 +168,11 @@ class Config { // Write the file $result = @file_put_contents($this->configFilename, $content); if (!$result) { + $url = $defaults->getDocBaseUrl() . '/server/5.0/admin_manual/installation/installation_source.html#set-the-directory-permissions'; throw new HintException( "Can't write into config directory 'config'", - 'You can usually fix this by giving the webserver user write access' - .' to the config directory in ownCloud'); + 'This can usually be fixed by ' + .'<a href="' . $url . '" target="_blank">giving the webserver write access to the config directory</a>.'); } // Prevent others not to read the config @chmod($this->configFilename, 0640); diff --git a/lib/db.php b/lib/db.php index a93b9eccbdf..6fec60e53ce 100644 --- a/lib/db.php +++ b/lib/db.php @@ -681,7 +681,7 @@ class OC_DB { * @brief Insert a row if a matching row doesn't exists. * @param string $table. The table to insert into in the form '*PREFIX*tableName' * @param array $input. An array of fieldname/value pairs - * @returns The return value from PDOStatementWrapper->execute() + * @returns int number of updated rows */ public static function insertIfNotExist($table, $input) { self::connect(); @@ -715,7 +715,7 @@ class OC_DB { . implode('`,`', array_keys($input)) . '`) VALUES(' . str_repeat('?,', count($input)-1).'? ' . ')'; } else { - return true; + return 0; //no rows updated } } elseif( $type == 'pgsql' || $type == 'oci' || $type == 'mysql' || $type == 'mssql') { $query = 'INSERT INTO `' .$table . '` (`' @@ -736,9 +736,6 @@ class OC_DB { } catch(PDOException $e) { OC_Template::printExceptionErrorPage( $e ); } - if ($result === 0) { - return true; - } return $result; } @@ -1036,7 +1033,7 @@ class PDOStatementWrapper{ } /** - * make execute return the result instead of a bool + * make execute return the result or updated row count instead of a bool */ public function execute($input=array()) { if(OC_Config::getValue( "log_query", false)) { diff --git a/lib/l10n/af_ZA.php b/lib/l10n/af_ZA.php index 38e91288fbe..de32778026f 100644 --- a/lib/l10n/af_ZA.php +++ b/lib/l10n/af_ZA.php @@ -4,5 +4,6 @@ "Settings" => "Instellings", "Users" => "Gebruikers", "Apps" => "Toepassings", -"Admin" => "Admin" +"Admin" => "Admin", +"web services under your control" => "webdienste onder jou beheer" ); diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php index 35a86d0b9d3..107b27a1fc8 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -5,6 +5,7 @@ "Users" => "المستخدمين", "Apps" => "التطبيقات", "Admin" => "المدير", +"web services under your control" => "خدمات الشبكة تحت سيطرتك", "ZIP download is turned off." => "تحميل ملفات ZIP متوقف", "Files need to be downloaded one by one." => "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر", "Back to Files" => "العودة الى الملفات", diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index 4ca307e3c13..e23112c8302 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -5,6 +5,7 @@ "Users" => "Потребители", "Apps" => "Приложения", "Admin" => "Админ", +"web services under your control" => "уеб услуги под Ваш контрол", "ZIP download is turned off." => "Изтеглянето като ZIP е изключено.", "Files need to be downloaded one by one." => "Файловете трябва да се изтеглят един по един.", "Back to Files" => "Назад към файловете", diff --git a/lib/l10n/bn_BD.php b/lib/l10n/bn_BD.php index f7c8f57466d..ab1d9b94d0d 100644 --- a/lib/l10n/bn_BD.php +++ b/lib/l10n/bn_BD.php @@ -5,6 +5,7 @@ "Users" => "ব্যবহারকারী", "Apps" => "অ্যাপ", "Admin" => "প্রশাসন", +"web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়", "ZIP download is turned off." => "ZIP ডাউনলোড বন্ধ করা আছে।", "Files need to be downloaded one by one." => "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।", "Back to Files" => "ফাইলে ফিরে চল", diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index 0dd7c86b26c..93f7fa5f7bc 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -5,6 +5,7 @@ "Users" => "Usuaris", "Apps" => "Aplicacions", "Admin" => "Administració", +"web services under your control" => "controleu els vostres serveis web", "ZIP download is turned off." => "La baixada en ZIP està desactivada.", "Files need to be downloaded one by one." => "Els fitxers s'han de baixar d'un en un.", "Back to Files" => "Torna a Fitxers", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 7e5275f4b6c..917f383bb89 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -5,6 +5,7 @@ "Users" => "Uživatelé", "Apps" => "Aplikace", "Admin" => "Administrace", +"web services under your control" => "služby webu pod Vaší kontrolou", "ZIP download is turned off." => "Stahování ZIPu je vypnuto.", "Files need to be downloaded one by one." => "Soubory musí být stahovány jednotlivě.", "Back to Files" => "Zpět k souborům", diff --git a/lib/l10n/cy_GB.php b/lib/l10n/cy_GB.php index 37d49a77bdd..27140ba6dbb 100644 --- a/lib/l10n/cy_GB.php +++ b/lib/l10n/cy_GB.php @@ -5,6 +5,7 @@ "Users" => "Defnyddwyr", "Apps" => "Pecynnau", "Admin" => "Gweinyddu", +"web services under your control" => "gwasanaethau gwe a reolir gennych", "ZIP download is turned off." => "Mae llwytho ZIP wedi ei ddiffodd.", "Files need to be downloaded one by one." => "Mae angen llwytho ffeiliau i lawr fesul un.", "Back to Files" => "Nôl i Ffeiliau", diff --git a/lib/l10n/da.php b/lib/l10n/da.php index e5df63eef91..5f11453bcdd 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -5,6 +5,7 @@ "Users" => "Brugere", "Apps" => "Apps", "Admin" => "Admin", +"web services under your control" => "Webtjenester under din kontrol", "ZIP download is turned off." => "ZIP-download er slået fra.", "Files need to be downloaded one by one." => "Filer skal downloades en for en.", "Back to Files" => "Tilbage til Filer", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index bd7c4070243..4ef02402b9b 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -5,6 +5,7 @@ "Users" => "Benutzer", "Apps" => "Apps", "Admin" => "Administration", +"web services under your control" => "Web-Services unter Deiner Kontrolle", "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\"", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 651c63fb771..823d423abcd 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -5,6 +5,7 @@ "Users" => "Benutzer", "Apps" => "Apps", "Admin" => "Administrator", +"web services under your control" => "Web-Services unter Ihrer Kontrolle", "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\"", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 09dac78edf0..3e876aefdfe 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -5,6 +5,7 @@ "Users" => "Χρήστες", "Apps" => "Εφαρμογές", "Admin" => "Διαχειριστής", +"web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", "ZIP download is turned off." => "Η λήψη ZIP απενεργοποιήθηκε.", "Files need to be downloaded one by one." => "Τα αρχεία πρέπει να ληφθούν ένα-ένα.", "Back to Files" => "Πίσω στα Αρχεία", diff --git a/lib/l10n/en@pirate.php b/lib/l10n/en@pirate.php new file mode 100644 index 00000000000..02ff0331e05 --- /dev/null +++ b/lib/l10n/en@pirate.php @@ -0,0 +1,3 @@ +<?php $TRANSLATIONS = array( +"web services under your control" => "web services under your control" +); diff --git a/lib/l10n/eo.php b/lib/l10n/eo.php index b24748b0db1..fd45f30c69b 100644 --- a/lib/l10n/eo.php +++ b/lib/l10n/eo.php @@ -5,6 +5,7 @@ "Users" => "Uzantoj", "Apps" => "Aplikaĵoj", "Admin" => "Administranto", +"web services under your control" => "TTT-servoj regataj de vi", "ZIP download is turned off." => "ZIP-elŝuto estas malkapabligita.", "Files need to be downloaded one by one." => "Dosieroj devas elŝutiĝi unuope.", "Back to Files" => "Reen al la dosieroj", diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 83bc7b1ed8c..1f243a224e4 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -5,6 +5,7 @@ "Users" => "Usuarios", "Apps" => "Aplicaciones", "Admin" => "Administración", +"web services under your control" => "Servicios web bajo su control", "ZIP download is turned off." => "La descarga en ZIP está desactivada.", "Files need to be downloaded one by one." => "Los archivos deben ser descargados uno por uno.", "Back to Files" => "Volver a Archivos", diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index 121caf89be9..e66771f7e74 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -5,6 +5,7 @@ "Users" => "Usuarios", "Apps" => "Aplicaciones", "Admin" => "Administración", +"web services under your control" => "servicios web que controlás", "ZIP download is turned off." => "La descarga en ZIP está desactivada.", "Files need to be downloaded one by one." => "Los archivos deben ser descargados de a uno.", "Back to Files" => "Volver a archivos", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 3db0cda0c76..4da2c36d6ac 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -5,6 +5,7 @@ "Users" => "Kasutajad", "Apps" => "Rakendused", "Admin" => "Admin", +"web services under your control" => "veebitenused sinu kontrolli all", "ZIP download is turned off." => "ZIP-ina allalaadimine on välja lülitatud.", "Files need to be downloaded one by one." => "Failid tuleb alla laadida ükshaaval.", "Back to Files" => "Tagasi failide juurde", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index cfb09681ae7..028ad0a631e 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -5,6 +5,7 @@ "Users" => "Erabiltzaileak", "Apps" => "Aplikazioak", "Admin" => "Admin", +"web services under your control" => "web zerbitzuak zure kontrolpean", "ZIP download is turned off." => "ZIP deskarga ez dago gaituta.", "Files need to be downloaded one by one." => "Fitxategiak banan-banan deskargatu behar dira.", "Back to Files" => "Itzuli fitxategietara", diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index b0d423421df..a74188f6283 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -5,15 +5,34 @@ "Users" => "کاربران", "Apps" => " برنامه ها", "Admin" => "مدیر", +"web services under your control" => "سرویس های تحت وب در کنترل شما", "ZIP download is turned off." => "دانلود به صورت فشرده غیر فعال است", "Files need to be downloaded one by one." => "فایل ها باید به صورت یکی یکی دانلود شوند", "Back to Files" => "بازگشت به فایل ها", "Selected files too large to generate zip file." => "فایل های انتخاب شده بزرگتر از آن هستند که بتوان یک فایل فشرده تولید کرد", +"couldn't be determined" => "نمیتواند مشخص شود", "Application is not enabled" => "برنامه فعال نشده است", "Authentication error" => "خطا در اعتبار سنجی", +"Token expired. Please reload page." => "رمز منقضی شده است. لطفا دوباره صفحه را بارگذاری نمایید.", "Files" => "پروندهها", "Text" => "متن", "Images" => "تصاویر", +"%s enter the database username." => "%s نام کاربری پایگاه داده را وارد نمایید.", +"%s enter the database name." => "%s نام پایگاه داده را وارد نمایید.", +"%s you may not use dots in the database name" => "%s شما نباید از نقطه در نام پایگاه داده استفاده نمایید.", +"MS SQL username and/or password not valid: %s" => "نام کاربری و / یا رمزعبور MS SQL معتبر نیست: %s", +"You need to enter either an existing account or the administrator." => "شما نیاز به وارد کردن یک حساب کاربری موجود یا حساب مدیریتی دارید.", +"MySQL username and/or password not valid" => "نام کاربری و / یا رمزعبور MySQL معتبر نیست.", +"DB Error: \"%s\"" => "خطای پایگاه داده: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "کاربرMySQL '%s'@'localhost' درحال حاضر موجود است.", +"Drop this user from MySQL" => "این کاربر را از MySQL حذف نمایید.", +"MySQL user '%s'@'%%' already exists" => "کاربر'%s'@'%%' MySQL در حال حاضر موجود است.", +"Drop this user from MySQL." => "این کاربر را از MySQL حذف نمایید.", +"Oracle connection could not be established" => "ارتباط اراکل نمیتواند برقرار باشد.", +"Oracle username and/or password not valid" => "نام کاربری و / یا رمزعبور اراکل معتبر نیست.", +"PostgreSQL username and/or password not valid" => "PostgreSQL نام کاربری و / یا رمزعبور معتبر نیست.", +"Set an admin username." => "یک نام کاربری برای مدیر تنظیم نمایید.", +"Set an admin password." => "یک رمزعبور برای مدیر تنظیم نمایید.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است.", "Please double check the <a href='%s'>installation guides</a>." => "لطفاً دوباره <a href='%s'>راهنمای نصب</a>را بررسی کنید.", "seconds ago" => "ثانیهها پیش", diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 8726951f838..75576c3034d 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -5,6 +5,7 @@ "Users" => "Käyttäjät", "Apps" => "Sovellukset", "Admin" => "Ylläpitäjä", +"web services under your control" => "verkkopalvelut hallinnassasi", "ZIP download is turned off." => "ZIP-lataus on poistettu käytöstä.", "Files need to be downloaded one by one." => "Tiedostot on ladattava yksittäin.", "Back to Files" => "Takaisin tiedostoihin", diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 724c69420b9..9f30b602696 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -5,6 +5,7 @@ "Users" => "Utilisateurs", "Apps" => "Applications", "Admin" => "Administration", +"web services under your control" => "services web sous votre contrôle", "ZIP download is turned off." => "Téléchargement ZIP désactivé.", "Files need to be downloaded one by one." => "Les fichiers nécessitent d'être téléchargés un par un.", "Back to Files" => "Retour aux Fichiers", diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index f0d01e4a7df..351f18c7155 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -5,6 +5,7 @@ "Users" => "Usuarios", "Apps" => "Aplicativos", "Admin" => "Administración", +"web services under your control" => "servizos web baixo o seu control", "ZIP download is turned off." => "As descargas ZIP están desactivadas.", "Files need to be downloaded one by one." => "Os ficheiros necesitan seren descargados dun en un.", "Back to Files" => "Volver aos ficheiros", diff --git a/lib/l10n/he.php b/lib/l10n/he.php index 0069d77eee4..2e011e342a0 100644 --- a/lib/l10n/he.php +++ b/lib/l10n/he.php @@ -5,6 +5,7 @@ "Users" => "משתמשים", "Apps" => "יישומים", "Admin" => "מנהל", +"web services under your control" => "שירותי רשת תחת השליטה שלך", "ZIP download is turned off." => "הורדת ZIP כבויה", "Files need to be downloaded one by one." => "יש להוריד את הקבצים אחד אחרי השני.", "Back to Files" => "חזרה לקבצים", diff --git a/lib/l10n/hr.php b/lib/l10n/hr.php index 3ce75c99f0e..41c34d3108c 100644 --- a/lib/l10n/hr.php +++ b/lib/l10n/hr.php @@ -5,6 +5,7 @@ "Users" => "Korisnici", "Apps" => "Aplikacije", "Admin" => "Administrator", +"web services under your control" => "web usluge pod vašom kontrolom", "Authentication error" => "Greška kod autorizacije", "Files" => "Datoteke", "Text" => "Tekst", diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index beca4a12562..3aa04274fa3 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -5,6 +5,7 @@ "Users" => "Felhasználók", "Apps" => "Alkalmazások", "Admin" => "Adminsztráció", +"web services under your control" => "webszolgáltatások saját kézben", "ZIP download is turned off." => "A ZIP-letöltés nincs engedélyezve.", "Files need to be downloaded one by one." => "A fájlokat egyenként kell letölteni.", "Back to Files" => "Vissza a Fájlokhoz", diff --git a/lib/l10n/ia.php b/lib/l10n/ia.php index 573281553fc..e5f6e3ddf58 100644 --- a/lib/l10n/ia.php +++ b/lib/l10n/ia.php @@ -5,6 +5,7 @@ "Users" => "Usatores", "Apps" => "Applicationes", "Admin" => "Administration", +"web services under your control" => "servicios web sub tu controlo", "Files" => "Files", "Text" => "Texto" ); diff --git a/lib/l10n/id.php b/lib/l10n/id.php index 8f72f24ea61..c247651f0c9 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -5,6 +5,7 @@ "Users" => "Pengguna", "Apps" => "Aplikasi", "Admin" => "Admin", +"web services under your control" => "layanan web dalam kontrol Anda", "ZIP download is turned off." => "Pengunduhan ZIP dimatikan.", "Files need to be downloaded one by one." => "Berkas harus diunduh satu persatu.", "Back to Files" => "Kembali ke Daftar Berkas", diff --git a/lib/l10n/is.php b/lib/l10n/is.php index 05bb6883953..0f7a22fd13e 100644 --- a/lib/l10n/is.php +++ b/lib/l10n/is.php @@ -5,6 +5,7 @@ "Users" => "Notendur", "Apps" => "Forrit", "Admin" => "Stjórnun", +"web services under your control" => "vefþjónusta undir þinni stjórn", "ZIP download is turned off." => "Slökkt á ZIP niðurhali.", "Files need to be downloaded one by one." => "Skrárnar verður að sækja eina og eina", "Back to Files" => "Aftur í skrár", diff --git a/lib/l10n/it.php b/lib/l10n/it.php index 92a3d201d3a..74483315ca0 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -5,6 +5,7 @@ "Users" => "Utenti", "Apps" => "Applicazioni", "Admin" => "Admin", +"web services under your control" => "servizi web nelle tue mani", "ZIP download is turned off." => "Lo scaricamento in formato ZIP è stato disabilitato.", "Files need to be downloaded one by one." => "I file devono essere scaricati uno alla volta.", "Back to Files" => "Torna ai file", diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 804c0441da0..36d06d360b9 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -5,6 +5,7 @@ "Users" => "ユーザ", "Apps" => "アプリ", "Admin" => "管理", +"web services under your control" => "管理下のウェブサービス", "ZIP download is turned off." => "ZIPダウンロードは無効です。", "Files need to be downloaded one by one." => "ファイルは1つずつダウンロードする必要があります。", "Back to Files" => "ファイルに戻る", diff --git a/lib/l10n/ka_GE.php b/lib/l10n/ka_GE.php index d2bb3ea2b0d..c6e77da2dac 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -5,6 +5,7 @@ "Users" => "მომხმარებელი", "Apps" => "აპლიკაციები", "Admin" => "ადმინისტრატორი", +"web services under your control" => "web services under your control", "ZIP download is turned off." => "ZIP download–ი გათიშულია", "Files need to be downloaded one by one." => "ფაილები უნდა გადმოიტვირთოს სათითაოდ.", "Back to Files" => "უკან ფაილებში", diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index bfb99544a3b..31245ea96f2 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -5,6 +5,7 @@ "Users" => "사용자", "Apps" => "앱", "Admin" => "관리자", +"web services under your control" => "내가 관리하는 웹 서비스", "ZIP download is turned off." => "ZIP 다운로드가 비활성화되었습니다.", "Files need to be downloaded one by one." => "파일을 개별적으로 다운로드해야 합니다.", "Back to Files" => "파일로 돌아가기", diff --git a/lib/l10n/ku_IQ.php b/lib/l10n/ku_IQ.php index 20d0249f569..6d7461a1685 100644 --- a/lib/l10n/ku_IQ.php +++ b/lib/l10n/ku_IQ.php @@ -3,5 +3,6 @@ "Settings" => "دهستكاری", "Users" => "بهكارهێنهر", "Apps" => "بهرنامهكان", -"Admin" => "بهڕێوهبهری سهرهكی" +"Admin" => "بهڕێوهبهری سهرهكی", +"web services under your control" => "ڕاژهی وێب لهژێر چاودێریت دایه" ); diff --git a/lib/l10n/lb.php b/lib/l10n/lb.php index 889fc3a377d..867b0a37409 100644 --- a/lib/l10n/lb.php +++ b/lib/l10n/lb.php @@ -3,12 +3,17 @@ "Personal" => "Perséinlech", "Settings" => "Astellungen", "Users" => "Benotzer", -"Apps" => "Applicatiounen", +"Apps" => "Applikatiounen", "Admin" => "Admin", +"web services under your control" => "Web-Servicer ënnert denger Kontroll", "Authentication error" => "Authentifikatioun's Fehler", "Files" => "Dateien", "Text" => "SMS", +"seconds ago" => "Sekonnen hir", +"1 minute ago" => "1 Minutt hir", "1 hour ago" => "vrun 1 Stonn", +"today" => "haut", +"yesterday" => "gëschter", "last month" => "Läschte Mount", "last year" => "Läscht Joer", "years ago" => "Joren hier" diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index b8268ed4376..5e3a0482033 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -5,6 +5,7 @@ "Users" => "Vartotojai", "Apps" => "Programos", "Admin" => "Administravimas", +"web services under your control" => "jūsų valdomos web paslaugos", "ZIP download is turned off." => "ZIP atsisiuntimo galimybė yra išjungta.", "Files need to be downloaded one by one." => "Failai turi būti parsiunčiami vienas po kito.", "Back to Files" => "Atgal į Failus", diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index 3fade1ab201..662f4d5b245 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -5,6 +5,7 @@ "Users" => "Lietotāji", "Apps" => "Lietotnes", "Admin" => "Administratori", +"web services under your control" => "tīmekļa servisi tavā varā", "ZIP download is turned off." => "ZIP lejupielādēšana ir izslēgta.", "Files need to be downloaded one by one." => "Datnes var lejupielādēt tikai katru atsevišķi.", "Back to Files" => "Atpakaļ pie datnēm", diff --git a/lib/l10n/mk.php b/lib/l10n/mk.php index 34790c93745..30fa9ab73c1 100644 --- a/lib/l10n/mk.php +++ b/lib/l10n/mk.php @@ -5,6 +5,7 @@ "Users" => "Корисници", "Apps" => "Аппликации", "Admin" => "Админ", +"web services under your control" => "веб сервиси под Ваша контрола", "ZIP download is turned off." => "Преземање во ZIP е исклучено", "Files need to be downloaded one by one." => "Датотеките треба да се симнат една по една.", "Back to Files" => "Назад кон датотеки", diff --git a/lib/l10n/ms_MY.php b/lib/l10n/ms_MY.php index 6abbbe86e80..a2930597971 100644 --- a/lib/l10n/ms_MY.php +++ b/lib/l10n/ms_MY.php @@ -5,6 +5,7 @@ "Users" => "Pengguna", "Apps" => "Aplikasi", "Admin" => "Admin", +"web services under your control" => "Perkhidmatan web di bawah kawalan anda", "Authentication error" => "Ralat pengesahan", "Files" => "Fail-fail", "Text" => "Teks" diff --git a/lib/l10n/my_MM.php b/lib/l10n/my_MM.php index 5d1812fd742..f214a1ed794 100644 --- a/lib/l10n/my_MM.php +++ b/lib/l10n/my_MM.php @@ -3,6 +3,7 @@ "Users" => "သုံးစွဲသူ", "Apps" => "Apps", "Admin" => "အက်ဒမင်", +"web services under your control" => "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services", "ZIP download is turned off." => "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်", "Files need to be downloaded one by one." => "ဖိုင်များသည် တစ်ခုပြီး တစ်ခုဒေါင်းလုတ်ချရန်လိုအပ်သည်", "Back to Files" => "ဖိုင်သို့ပြန်သွားမည်", diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index 23146154c77..ab2d4f91920 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -5,6 +5,7 @@ "Users" => "Brukere", "Apps" => "Apper", "Admin" => "Admin", +"web services under your control" => "web tjenester du kontrollerer", "ZIP download is turned off." => "ZIP-nedlasting av avslått", "Files need to be downloaded one by one." => "Filene må lastes ned en om gangen", "Back to Files" => "Tilbake til filer", diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index e1c26273600..de80d1b5d56 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -5,6 +5,7 @@ "Users" => "Gebruikers", "Apps" => "Apps", "Admin" => "Beheerder", +"web services under your control" => "Webdiensten in eigen beheer", "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/nn_NO.php b/lib/l10n/nn_NO.php index 8241573f9ae..c1739398109 100644 --- a/lib/l10n/nn_NO.php +++ b/lib/l10n/nn_NO.php @@ -5,6 +5,7 @@ "Users" => "Brukarar", "Apps" => "Program", "Admin" => "Administrer", +"web services under your control" => "Vev tjenester under din kontroll", "Authentication error" => "Feil i autentisering", "Files" => "Filer", "Text" => "Tekst", diff --git a/lib/l10n/oc.php b/lib/l10n/oc.php index 85e2a27b431..a72da90790a 100644 --- a/lib/l10n/oc.php +++ b/lib/l10n/oc.php @@ -5,6 +5,7 @@ "Users" => "Usancièrs", "Apps" => "Apps", "Admin" => "Admin", +"web services under your control" => "Services web jos ton contraròtle", "ZIP download is turned off." => "Avalcargar los ZIP es inactiu.", "Files need to be downloaded one by one." => "Los fichièrs devan èsser avalcargats un per un.", "Back to Files" => "Torna cap als fichièrs", diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index 92600785f84..bbca1913b70 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -5,6 +5,7 @@ "Users" => "Użytkownicy", "Apps" => "Aplikacje", "Admin" => "Administrator", +"web services under your control" => "Kontrolowane serwisy", "ZIP download is turned off." => "Pobieranie ZIP jest wyłączone.", "Files need to be downloaded one by one." => "Pliki muszą zostać pobrane pojedynczo.", "Back to Files" => "Wróć do plików", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index 8b29f1510c6..029331fdec8 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -5,6 +5,7 @@ "Users" => "Usuários", "Apps" => "Aplicações", "Admin" => "Admin", +"web services under your control" => "serviços web sob seu controle", "ZIP download is turned off." => "Download ZIP está desligado.", "Files need to be downloaded one by one." => "Arquivos precisam ser baixados um de cada vez.", "Back to Files" => "Voltar para Arquivos", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 75824612ab0..7480026e920 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -5,6 +5,7 @@ "Users" => "Utilizadores", "Apps" => "Aplicações", "Admin" => "Admin", +"web services under your control" => "serviços web sob o seu controlo", "ZIP download is turned off." => "Descarregamento em ZIP está desligado.", "Files need to be downloaded one by one." => "Os ficheiros precisam de ser descarregados um por um.", "Back to Files" => "Voltar a Ficheiros", diff --git a/lib/l10n/ro.php b/lib/l10n/ro.php index 6661caf86e7..5a34e9571e5 100644 --- a/lib/l10n/ro.php +++ b/lib/l10n/ro.php @@ -5,6 +5,7 @@ "Users" => "Utilizatori", "Apps" => "Aplicații", "Admin" => "Admin", +"web services under your control" => "servicii web controlate de tine", "ZIP download is turned off." => "Descărcarea ZIP este dezactivată.", "Files need to be downloaded one by one." => "Fișierele trebuie descărcate unul câte unul.", "Back to Files" => "Înapoi la fișiere", @@ -16,6 +17,8 @@ "Files" => "Fișiere", "Text" => "Text", "Images" => "Imagini", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă.", +"Please double check the <a href='%s'>installation guides</a>." => "Vă rugăm să verificați <a href='%s'>ghiduri de instalare</ a>.", "seconds ago" => "secunde în urmă", "1 minute ago" => "1 minut în urmă", "%d minutes ago" => "%d minute în urmă", diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 1753c549801..052b0487c6c 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -5,6 +5,7 @@ "Users" => "Пользователи", "Apps" => "Приложения", "Admin" => "Admin", +"web services under your control" => "веб-сервисы под вашим управлением", "ZIP download is turned off." => "ZIP-скачивание отключено.", "Files need to be downloaded one by one." => "Файлы должны быть загружены по одному.", "Back to Files" => "Назад к файлам", diff --git a/lib/l10n/si_LK.php b/lib/l10n/si_LK.php index 4846fdcc066..49ded7026e0 100644 --- a/lib/l10n/si_LK.php +++ b/lib/l10n/si_LK.php @@ -5,6 +5,7 @@ "Users" => "පරිශීලකයන්", "Apps" => "යෙදුම්", "Admin" => "පරිපාලක", +"web services under your control" => "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්", "ZIP download is turned off." => "ZIP භාගත කිරීම් අක්රියයි", "Files need to be downloaded one by one." => "ගොනු එකින් එක භාගත යුතුයි", "Back to Files" => "ගොනු වෙතට නැවත යන්න", diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 064484cc53f..64ad1e540f3 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -5,6 +5,7 @@ "Users" => "Používatelia", "Apps" => "Aplikácie", "Admin" => "Administrátor", +"web services under your control" => "webové služby pod Vašou kontrolou", "ZIP download is turned off." => "Sťahovanie súborov ZIP je vypnuté.", "Files need to be downloaded one by one." => "Súbory musia byť nahrávané jeden za druhým.", "Back to Files" => "Späť na súbory", diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 5b96b612671..a5b4decd61a 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -5,6 +5,7 @@ "Users" => "Uporabniki", "Apps" => "Programi", "Admin" => "Skrbništvo", +"web services under your control" => "spletne storitve pod vašim nadzorom", "ZIP download is turned off." => "Prejemanje datotek v paketu ZIP je onemogočeno.", "Files need to be downloaded one by one." => "Datoteke je mogoče prejeti le posamično.", "Back to Files" => "Nazaj na datoteke", diff --git a/lib/l10n/sq.php b/lib/l10n/sq.php index 25b9f0c55c4..df5e2a31743 100644 --- a/lib/l10n/sq.php +++ b/lib/l10n/sq.php @@ -5,6 +5,7 @@ "Users" => "Përdoruesit", "Apps" => "App", "Admin" => "Admin", +"web services under your control" => "shërbime web nën kontrollin tënd", "ZIP download is turned off." => "Shkarimi i skedarëve ZIP është i çaktivizuar.", "Files need to be downloaded one by one." => "Skedarët duhet të shkarkohen një nga një.", "Back to Files" => "Kthehu tek skedarët", diff --git a/lib/l10n/sr.php b/lib/l10n/sr.php index 45b8e06200c..71d627e7890 100644 --- a/lib/l10n/sr.php +++ b/lib/l10n/sr.php @@ -5,6 +5,7 @@ "Users" => "Корисници", "Apps" => "Апликације", "Admin" => "Администратор", +"web services under your control" => "веб сервиси под контролом", "ZIP download is turned off." => "Преузимање ZIP-а је искључено.", "Files need to be downloaded one by one." => "Датотеке морате преузимати једну по једну.", "Back to Files" => "Назад на датотеке", diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 7b024c4b49f..56776e574aa 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -5,6 +5,7 @@ "Users" => "Användare", "Apps" => "Program", "Admin" => "Admin", +"web services under your control" => "webbtjänster under din kontroll", "ZIP download is turned off." => "Nerladdning av ZIP är avstängd.", "Files need to be downloaded one by one." => "Filer laddas ner en åt gången.", "Back to Files" => "Tillbaka till Filer", diff --git a/lib/l10n/ta_LK.php b/lib/l10n/ta_LK.php index c9bb578b40f..9193f6f1d2f 100644 --- a/lib/l10n/ta_LK.php +++ b/lib/l10n/ta_LK.php @@ -5,6 +5,7 @@ "Users" => "பயனாளர்", "Apps" => "செயலிகள்", "Admin" => "நிர்வாகம்", +"web services under your control" => "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது", "ZIP download is turned off." => "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது.", "Files need to be downloaded one by one." => "கோப்புகள்ஒன்றன் பின் ஒன்றாக பதிவிறக்கப்படவேண்டும்.", "Back to Files" => "கோப்புகளுக்கு செல்க", diff --git a/lib/l10n/th_TH.php b/lib/l10n/th_TH.php index 7cda4ab6ae6..4ec6ef55f4e 100644 --- a/lib/l10n/th_TH.php +++ b/lib/l10n/th_TH.php @@ -5,6 +5,7 @@ "Users" => "ผู้ใช้งาน", "Apps" => "แอปฯ", "Admin" => "ผู้ดูแล", +"web services under your control" => "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้", "ZIP download is turned off." => "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้", "Files need to be downloaded one by one." => "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น", "Back to Files" => "กลับไปที่ไฟล์", diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 057894540c8..6325ad9886a 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -5,6 +5,7 @@ "Users" => "Kullanıcılar", "Apps" => "Uygulamalar", "Admin" => "Yönetici", +"web services under your control" => "Bilgileriniz güvenli ve şifreli", "ZIP download is turned off." => "ZIP indirmeleri kapatılmıştır.", "Files need to be downloaded one by one." => "Dosyaların birer birer indirilmesi gerekmektedir.", "Back to Files" => "Dosyalara dön", diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index a50b5eb2648..7ff7829e1a2 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -5,6 +5,7 @@ "Users" => "Користувачі", "Apps" => "Додатки", "Admin" => "Адмін", +"web services under your control" => "підконтрольні Вам веб-сервіси", "ZIP download is turned off." => "ZIP завантаження вимкнено.", "Files need to be downloaded one by one." => "Файли повинні бути завантаженні послідовно.", "Back to Files" => "Повернутися до файлів", diff --git a/lib/l10n/ur_PK.php b/lib/l10n/ur_PK.php index 7e09d79bc68..21e711c6df5 100644 --- a/lib/l10n/ur_PK.php +++ b/lib/l10n/ur_PK.php @@ -4,5 +4,6 @@ "Settings" => "سیٹینگز", "Users" => "یوزرز", "Apps" => "ایپز", -"Admin" => "ایڈمن" +"Admin" => "ایڈمن", +"web services under your control" => "آپ کے اختیار میں ویب سروسیز" ); diff --git a/lib/l10n/vi.php b/lib/l10n/vi.php index 6a4b8ebac93..f2a7d669b8f 100644 --- a/lib/l10n/vi.php +++ b/lib/l10n/vi.php @@ -5,6 +5,7 @@ "Users" => "Người dùng", "Apps" => "Ứng dụng", "Admin" => "Quản trị", +"web services under your control" => "dịch vụ web dưới sự kiểm soát của bạn", "ZIP download is turned off." => "Tải về ZIP đã bị tắt.", "Files need to be downloaded one by one." => "Tập tin cần phải được tải về từng người một.", "Back to Files" => "Trở lại tập tin", diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php index 3ab35f2bafa..4780a69eb34 100644 --- a/lib/l10n/zh_CN.GB2312.php +++ b/lib/l10n/zh_CN.GB2312.php @@ -5,6 +5,7 @@ "Users" => "用户", "Apps" => "程序", "Admin" => "管理员", +"web services under your control" => "您控制的网络服务", "ZIP download is turned off." => "ZIP 下载已关闭", "Files need to be downloaded one by one." => "需要逐个下载文件。", "Back to Files" => "返回到文件", diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index 8bd87cbfe7f..7630f885c4a 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -5,6 +5,7 @@ "Users" => "用户", "Apps" => "应用", "Admin" => "管理", +"web services under your control" => "您控制的web服务", "ZIP download is turned off." => "ZIP 下载已经关闭", "Files need to be downloaded one by one." => "需要逐一下载文件", "Back to Files" => "回到文件", diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 43e37ad3ad4..afd196f7c82 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -5,6 +5,7 @@ "Users" => "使用者", "Apps" => "應用程式", "Admin" => "管理", +"web services under your control" => "由您控制的網路服務", "ZIP download is turned off." => "ZIP 下載已關閉。", "Files need to be downloaded one by one." => "檔案需要逐一下載。", "Back to Files" => "回到檔案列表", diff --git a/lib/public/share.php b/lib/public/share.php index de7025d7b15..7ae0ffe0bfd 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -292,6 +292,29 @@ class Share { } /** + * @brief resolves reshares down to the last real share + * @param $linkItem + * @return $fileOwner + */ + public static function resolveReShare($linkItem) + { + if (isset($linkItem['parent'])) { + $parent = $linkItem['parent']; + while (isset($parent)) { + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share` WHERE `id` = ?', 1); + $item = $query->execute(array($parent))->fetchRow(); + if (isset($item['parent'])) { + $parent = $item['parent']; + } else { + return $item; + } + } + } + return $linkItem; + } + + + /** * @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 @@ -312,7 +335,7 @@ class Share { * @return Return depends on format */ public static function getItemShared($itemType, $itemSource, $format = self::FORMAT_NONE, - $parameters = null, $includeCollections = false) { + $parameters = null, $includeCollections = false) { return self::getItems($itemType, $itemSource, null, null, \OC_User::getUser(), $format, $parameters, -1, $includeCollections); } diff --git a/lib/util.php b/lib/util.php index 4bc02daf36e..8f5f79b6b09 100755 --- a/lib/util.php +++ b/lib/util.php @@ -172,6 +172,8 @@ class OC_Util { public static function checkServer() { $errors=array(); + $defaults = new \OC_Defaults(); + $web_server_restart= false; //check for database drivers if(!(is_callable('sqlite_open') or class_exists('SQLite3')) @@ -184,14 +186,16 @@ class OC_Util { } //common hint for all file permissons error messages - $permissionsHint='Permissions can usually be fixed by giving the webserver write access' - .' to the ownCloud directory'; + $permissionsHint = 'Permissions can usually be fixed by ' + .'<a href="' . $defaults->getDocBaseUrl() . '/server/5.0/admin_manual/installation/installation_source.html#set-the-directory-permissions" target="_blank">giving the webserver write access to the root directory</a>.'; // Check if config folder is writable. if(!is_writable(OC::$SERVERROOT."/config/") or !is_readable(OC::$SERVERROOT."/config/")) { - $errors[]=array('error'=>"Can't write into config directory 'config'", - 'hint'=>'You can usually fix this by giving the webserver user write access' - .' to the config directory in owncloud'); + $errors[] = array( + 'error' => "Can't write into config directory", + 'hint' => 'This can usually be fixed by ' + .'<a href="' . $defaults->getDocBaseUrl() . '/server/5.0/admin_manual/installation/installation_source.html#set-the-directory-permissions" target="_blank">giving the webserver write access to the config directory</a>.' + ); } // Check if there is a writable install folder. @@ -199,9 +203,12 @@ class OC_Util { if( OC_App::getInstallPath() === null || !is_writable(OC_App::getInstallPath()) || !is_readable(OC_App::getInstallPath()) ) { - $errors[]=array('error'=>"Can't write into apps directory", - 'hint'=>'You can usually fix this by giving the webserver user write access' - .' to the apps directory in owncloud or disabling the appstore in the config file.'); + $errors[] = array( + 'error' => "Can't write into apps directory", + 'hint' => 'This can usually be fixed by ' + .'<a href="' . $defaults->getDocBaseUrl() . '/server/5.0/admin_manual/installation/installation_source.html#set-the-directory-permissions" target="_blank">giving the webserver write access to the apps directory</a> ' + .'or disabling the appstore in the config file.' + ); } } $CONFIG_DATADIRECTORY = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ); @@ -211,10 +218,11 @@ class OC_Util { if ($success) { $errors = array_merge($errors, self::checkDataDirectoryPermissions($CONFIG_DATADIRECTORY)); } else { - $errors[]=array('error'=>"Can't create data directory (".$CONFIG_DATADIRECTORY.")", - 'hint'=>"You can usually fix this by giving the webserver write access to the ownCloud directory '" - .OC::$SERVERROOT."' (in a terminal, use the command " - ."'chown -R www-data:www-data /path/to/your/owncloud/install/data' "); + $errors[] = array( + 'error' => "Can't create data directory (".$CONFIG_DATADIRECTORY.")", + 'hint' => 'This can usually be fixed by ' + .'<a href="' . $defaults->getDocBaseUrl() . '/server/5.0/admin_manual/installation/installation_source.html#set-the-directory-permissions" target="_blank">giving the webserver write access to the root directory</a>.' + ); } } else if(!is_writable($CONFIG_DATADIRECTORY) or !is_readable($CONFIG_DATADIRECTORY)) { $errors[]=array('error'=>'Data directory ('.$CONFIG_DATADIRECTORY.') not writable by ownCloud', diff --git a/settings/js/users.js b/settings/js/users.js index 7ed6c50d588..9fe593214f2 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -449,8 +449,10 @@ $(document).ready(function () { OC.dialogs.alert(result.data.message, t('settings', 'Error creating user')); } else { - var addedGroups = result.data.groups.split(', '); - UserList.availableGroups = $.unique($.merge(UserList.availableGroups, addedGroups)); + if (result.data.groups) { + var addedGroups = result.data.groups.split(', '); + UserList.availableGroups = $.unique($.merge(UserList.availableGroups, addedGroups)); + } if($('tr[data-uid="' + username + '"]').length === 0) { UserList.add(username, username, result.data.groups, null, 'default', true); } diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index e0090996f2a..8ac4895c93a 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "قادر به بارگذاری لیست از فروشگاه اپ نیستم", "Authentication error" => "خطا در اعتبار سنجی", +"Your display name has been changed." => "نام نمایش شما تغییر یافته است.", "Unable to change display name" => "امکان تغییر نام نمایشی شما وجود ندارد", "Group already exists" => "این گروه در حال حاضر موجود است", "Unable to add group" => "افزودن گروه امکان پذیر نیست", @@ -42,6 +43,7 @@ "Please double check the <a href='%s'>installation guides</a>." => "لطفاً دوباره <a href='%s'>راهنمای نصب</a>را بررسی کنید.", "Module 'fileinfo' missing" => "ماژول 'fileinfo' از کار افتاده", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید.", +"Locale not working" => "زبان محلی کار نمی کند.", "This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "این سرور ownCloud نمی تواند سیستم محلی را بر روی %s تنظیم کند.این به این معنی ست که ممکن است با کاراکترهای خاصی در نام فایل ها مشکل داشته باشد.ما اکیداً نصب کردن بسته های لازم را بر روی سیستم خودتان برای پشتیبانی %s توصیه می کنیم.", "Internet connection not working" => "اتصال اینترنت کار نمی کند", "This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "این سرور OwnCloud ارتباط اینترنتی ندارد.این بدین معناست که بعضی از خصوصیات نظیر خارج کردن منبع ذخیره ی خارجی، اطلاعات در مورد بروزرسانی ها یا نصب برنامه های نوع 3ام کار نمی کنند.دسترسی به فایل ها از راه دور و ارسال آگاه سازی ایمیل ها ممکن است همچنان کار نکنند.اگرشما همه ی خصوصیات OwnCloud می خواهید ما پیشنهاد می کنیم تا ارتباط اینترنتی مربوط به این سرور را فعال کنید.", @@ -58,7 +60,9 @@ "Security" => "امنیت", "Enforce HTTPS" => "وادار کردن HTTPS", "Enforces the clients to connect to ownCloud via an encrypted connection." => "وادار کردن مشتریان برای ارتباط با ownCloud از طریق رمزگذاری ارتباط", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "از طریق HTTPS به این نسخه از ownCloud متصل شوید تا بتوانید SSL را فعال یا غیر فعال نمایید.", "Log" => "کارنامه", +"Log level" => "سطح ورود", "More" => "بیشتر", "Less" => "کمتر", "Version" => "نسخه", @@ -93,6 +97,8 @@ "Use this address to connect to your ownCloud in your file manager" => "از این نشانی برای اتصال به ownCloud خودتان در بخش مدیریت فایل خودتان استفاده کنید", "Login Name" => "نام کاربری", "Create" => "ایجاد کردن", +"Admin Recovery Password" => "مدیریت بازیابی رمز عبور", +"Enter the recovery password in order to recover the users files during password change" => "در حین تغییر رمز عبور به منظور بازیابی فایل های کاربران، رمز عبور بازیابی را وارد کنید", "Default Storage" => "ذخیره سازی پیش فرض", "Unlimited" => "نامحدود", "Other" => "دیگر", diff --git a/settings/l10n/hi.php b/settings/l10n/hi.php index a9b508bcb28..eb3fcc251f4 100644 --- a/settings/l10n/hi.php +++ b/settings/l10n/hi.php @@ -1,4 +1,6 @@ <?php $TRANSLATIONS = array( +"Error" => "त्रुटि", +"Update" => "अद्यतन", "Password" => "पासवर्ड", "New password" => "नया पासवर्ड", "Username" => "प्रयोक्ता का नाम" diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 48f18070f3f..021561cf6ad 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( -"Unable to load list from App Store" => "Imposibil de încărcat lista din App Store", +"Unable to load list from App Store" => "Imposibil de actualizat lista din App Store.", "Authentication error" => "Eroare la autentificare", +"Your display name has been changed." => "Numele afişat a fost schimbat.", +"Unable to change display name" => "Imposibil de schimbat numele afişat.", "Group already exists" => "Grupul există deja", "Unable to add group" => "Nu s-a putut adăuga grupul", "Could not enable app. " => "Nu s-a putut activa aplicația.", @@ -13,18 +15,38 @@ "Admins can't remove themself from the admin group" => "Administratorii nu se pot șterge singuri din grupul admin", "Unable to add user to group %s" => "Nu s-a putut adăuga utilizatorul la grupul %s", "Unable to remove user from group %s" => "Nu s-a putut elimina utilizatorul din grupul %s", +"Couldn't update app." => "Aplicaţia nu s-a putut actualiza.", +"Update to {appversion}" => "Actualizat la {versiuneaaplicaţiei}", "Disable" => "Dezactivați", "Enable" => "Activare", +"Please wait...." => "Aşteptaţi vă rog....", "Error" => "Eroare", +"Updating...." => "Actualizare în curs....", +"Error while updating app" => "Eroare în timpul actualizării aplicaţiei", +"Updated" => "Actualizat", "Saving..." => "Se salvează...", "deleted" => "șters", "undo" => "Anulează ultima acțiune", +"Unable to remove user" => "Imposibil de eliminat utilizatorul", "Groups" => "Grupuri", "Group Admin" => "Grupul Admin ", "Delete" => "Șterge", +"add group" => "adăugaţi grupul", +"A valid username must be provided" => "Trebuie să furnizaţi un nume de utilizator valid", +"Error creating user" => "Eroare la crearea utilizatorului", +"A valid password must be provided" => "Trebuie să furnizaţi o parolă validă", "__language_name__" => "_language_name_", "Security Warning" => "Avertisment de securitate", "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." => "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web.", +"Setup Warning" => "Atenţie la implementare", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă.", +"Please double check the <a href='%s'>installation guides</a>." => "Vă rugăm să verificați <a href='%s'>ghiduri de instalare</ a>.", +"Module 'fileinfo' missing" => "Modulul \"Fileinfo\" lipsește", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type.", +"Locale not working" => "Localizarea nu funcționează", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Acest server ownCloud nu poate seta sistemul de localizare pentru% s. Acest lucru înseamnă că ar putea exista probleme cu anumite caractere în numele de fișiere. Vă recomandăm să instalați pachetele necesare pe sistemul dumneavoastră pentru a sprijini% s.", +"Internet connection not working" => "Conexiunea la internet nu funcționează", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Acest server ownCloud nu are nici o conexiune la internet activă. Acest lucru înseamnă că anumite caracteristici, cum ar fi montarea mediilor de stocare externe, notificări despre actualizări sau instalarea de aplicatii tereţe nu funcționează. Accesarea fișierelor de la distanță și trimiterea de e-mailuri de notificare s-ar putea, de asemenea, să nu funcționeze. Vă sugerăm să permiteţi conectarea la Internet pentru acest server, dacă doriți să aveți toate caracteristicile de oferite de ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Execută o sarcină la fiecare pagină încărcată", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php este înregistrat în serviciul webcron. Accesează pagina cron.php din root-ul owncloud odată pe minut prin http.", @@ -38,6 +60,7 @@ "Allow users to share items shared with them again" => "Permite utilizatorilor să repartajeze fișiere partajate cu ei", "Allow users to share with anyone" => "Permite utilizatorilor să partajeze cu oricine", "Allow users to only share with users in their groups" => "Permite utilizatorilor să partajeze doar cu utilizatori din același grup", +"Security" => "Securitate", "Log" => "Jurnal de activitate", "Log level" => "Nivel jurnal", "More" => "Mai mult", diff --git a/settings/templates/personal.php b/settings/templates/personal.php index d4396407525..147ad834a9c 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -105,7 +105,7 @@ if($_['passwordChangeSupported']) { <fieldset class="personalblock"> <legend><strong><?php p($l->t('WebDAV'));?></strong></legend> <code><?php print_unescaped(OC_Helper::linkToRemote('webdav')); ?></code><br /> - <em><?php p($l->t('Use this address to connect to your ownCloud in your file manager'));?></em> + <em><?php print_unescaped($l->t('Use this address to <a href="%s/server/5.0/user_manual/files/files.html" target="_blank">access your Files via WebDAV</a>', array($defaults->getDocBaseUrl())));?></em> </fieldset> <?php foreach($_['forms'] as $form) { diff --git a/tests/lib/db.php b/tests/lib/db.php index 0ba7d5d4b06..69e3542f926 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -40,7 +40,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { $this->assertFalse((bool)$row); //PDO returns false, MDB2 returns null $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); $result = $query->execute(array('fullname test', 'uri_1')); - $this->assertEquals('1', $result); + $this->assertEquals(1, $result); $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_1')); $this->assertTrue((bool)$result); @@ -57,7 +57,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { public function testNOW() { $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (NOW(),?)'); $result = $query->execute(array('uri_2')); - $this->assertEquals('1', $result); + $this->assertEquals(1, $result); $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_2')); $this->assertTrue((bool)$result); @@ -66,7 +66,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { public function testUNIX_TIMESTAMP() { $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (UNIX_TIMESTAMP(),?)'); $result = $query->execute(array('uri_3')); - $this->assertEquals('1', $result); + $this->assertEquals(1, $result); $query = OC_DB::prepare('SELECT `fullname`,`uri` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array('uri_3')); $this->assertTrue((bool)$result); @@ -74,11 +74,11 @@ class Test_DB extends PHPUnit_Framework_TestCase { public function testinsertIfNotExist() { $categoryentries = array( - array('user' => 'test', 'type' => 'contact', 'category' => 'Family'), - array('user' => 'test', 'type' => 'contact', 'category' => 'Friends'), - array('user' => 'test', 'type' => 'contact', 'category' => 'Coworkers'), - array('user' => 'test', 'type' => 'contact', 'category' => 'Coworkers'), - array('user' => 'test', 'type' => 'contact', 'category' => 'School'), + array('user' => 'test', 'type' => 'contact', 'category' => 'Family', 'expectedResult' => 1), + array('user' => 'test', 'type' => 'contact', 'category' => 'Friends', 'expectedResult' => 1), + array('user' => 'test', 'type' => 'contact', 'category' => 'Coworkers', 'expectedResult' => 1), + array('user' => 'test', 'type' => 'contact', 'category' => 'Coworkers', 'expectedResult' => 0), + array('user' => 'test', 'type' => 'contact', 'category' => 'School', 'expectedResult' => 1), ); foreach($categoryentries as $entry) { @@ -88,13 +88,13 @@ class Test_DB extends PHPUnit_Framework_TestCase { 'type' => $entry['type'], 'category' => $entry['category'], )); - $this->assertTrue((bool)$result); + $this->assertEquals($entry['expectedResult'], $result); } $query = OC_DB::prepare('SELECT * FROM `*PREFIX*'.$this->table3.'`'); $result = $query->execute(); $this->assertTrue((bool)$result); - $this->assertEquals('4', $result->numRows()); + $this->assertEquals(4, $result->numRows()); } public function testinsertIfNotExistDontOverwrite() { @@ -105,14 +105,14 @@ class Test_DB extends PHPUnit_Framework_TestCase { // Normal test to have same known data inserted. $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`, `uri`, `carddata`) VALUES (?, ?, ?)'); $result = $query->execute(array($fullname, $uri, $carddata)); - $this->assertEquals('1', $result); + $this->assertEquals(1, $result); $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array($uri)); $this->assertTrue((bool)$result); $row = $result->fetchRow(); $this->assertArrayHasKey('carddata', $row); $this->assertEquals($carddata, $row['carddata']); - $this->assertEquals('1', $result->numRows()); + $this->assertEquals(1, $result->numRows()); // Try to insert a new row $result = OC_DB::insertIfNotExist('*PREFIX*'.$this->table2, @@ -120,7 +120,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { 'fullname' => $fullname, 'uri' => $uri, )); - $this->assertTrue((bool)$result); + $this->assertEquals(0, $result); $query = OC_DB::prepare('SELECT `fullname`, `uri`, `carddata` FROM `*PREFIX*'.$this->table2.'` WHERE `uri` = ?'); $result = $query->execute(array($uri)); @@ -130,7 +130,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { // Test that previously inserted data isn't overwritten $this->assertEquals($carddata, $row['carddata']); // And that a new row hasn't been inserted. - $this->assertEquals('1', $result->numRows()); + $this->assertEquals(1, $result->numRows()); } } diff --git a/tests/lib/files/cache/scanner.php b/tests/lib/files/cache/scanner.php index 042bf8991f6..263ceadccc7 100644 --- a/tests/lib/files/cache/scanner.php +++ b/tests/lib/files/cache/scanner.php @@ -132,6 +132,7 @@ class Scanner extends \PHPUnit_Framework_TestCase { $this->scanner->scan(''); $oldData = $this->cache->get(''); $this->storage->unlink('folder/bar.txt'); + $this->cache->put('folder', array('mtime' => $this->storage->filemtime('folder'))); $this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_SHALLOW, \OC\Files\Cache\Scanner::REUSE_SIZE); $newData = $this->cache->get(''); $this->assertNotEquals($oldData['etag'], $newData['etag']); |