diff options
949 files changed, 15062 insertions, 14306 deletions
diff --git a/3rdparty b/3rdparty -Subproject e312294ef62873df2b8c02e774f9dfe1b7fbc38 +Subproject 25e8568d41a9b9a6d1662ccf33058822a890e7f diff --git a/README b/README deleted file mode 100644 index 5f5d190cb01..00000000000 --- a/README +++ /dev/null @@ -1,20 +0,0 @@ -ownCloud gives you freedom and control over your own data. -A personal cloud which runs on your own server. - -http://ownCloud.org - -Installation instructions: http://doc.owncloud.org/server/5.0/developer_manual/app/gettingstarted.html -Contribution Guidelines: http://owncloud.org/dev/contribute/ - -Source code: https://github.com/owncloud -Mailing list: https://mail.kde.org/mailman/listinfo/owncloud -IRC channel: https://webchat.freenode.net/?channels=owncloud -Diaspora: https://joindiaspora.com/u/owncloud -Identi.ca: https://identi.ca/owncloud - -Important notice on translations: -Please submit translations via Transifex: -https://www.transifex.com/projects/p/owncloud/ - -For more detailed information about translations: -http://owncloud.org/dev/translation/ diff --git a/README.md b/README.md new file mode 100644 index 00000000000..ca7b04a925a --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ +# ownCloud + +[ownCloud](http://ownCloud.org) gives you freedom and control over your own data. +A personal cloud which runs on your own server. + +### Build Status on [Jenkins CI](https://ci.owncloud.org/) +Git master: [![Build Status](https://ci.owncloud.org/buildStatus/icon?job=ownCloud-Server%28master%29)](https://ci.owncloud.org/job/ownCloud-Server%28master%29/) + +### Installation instructions +http://doc.owncloud.org/server/5.0/developer_manual/app/gettingstarted.html + +### Contribution Guidelines +http://owncloud.org/dev/contribute/ + +### Get in touch +* [Forum](http://forum.owncloud.org) +* [Mailing list](https://mail.kde.org/mailman/listinfo/owncloud) +* [IRC channel](https://webchat.freenode.net/?channels=owncloud) +* [Twitter](https://twitter.com/ownClouders) + +### Important notice on translations +Please submit translations via Transifex: +https://www.transifex.com/projects/p/owncloud/ + +For more detailed information about translations: +http://owncloud.org/dev/translation/ 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/js/filelist.js b/apps/files/js/filelist.js index cf3ce2e5089..c847e2eff8b 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -171,6 +171,8 @@ var FileList={ } }else if(type=='dir' && $('tr[data-file]').length>0){ $('tr[data-file]').first().before(element); + } else if(type=='file' && $('tr[data-file]').length>0) { + $('tr[data-file]').last().before(element); }else{ $('#fileList').append(element); } diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index f72bc14f51b..51d450b4f68 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", @@ -67,11 +68,14 @@ "You don’t have write permissions here." => "No teniu permisos d'escriptura aquí.", "Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!", "Download" => "Baixa", +"Size (MB)" => "Mida (MB)", "Unshare" => "Deixa de compartir", "Upload too large" => "La pujada és massa gran", "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/de.php b/apps/files/l10n/de.php index 98214d6a1b2..435c821400d 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits", "Could not move %s" => "Konnte %s nicht verschieben", +"Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", +"Invalid Token" => "Ungültiges Merkmal", "No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler", "There is no error, the file uploaded with success" => "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini", @@ -47,6 +49,7 @@ "{count} folders" => "{count} Ordner", "1 file" => "1 Datei", "{count} files" => "{count} Dateien", +"%s could not be renamed" => "%s konnte nicht umbenannt werden", "Upload" => "Hochladen", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", @@ -65,11 +68,14 @@ "You don’t have write permissions here." => "Du hast hier keine Schreib-Berechtigung.", "Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!", "Download" => "Herunterladen", +"Size (MB)" => "Größe (MB)", "Unshare" => "Freigabe aufheben", "Upload too large" => "Der Upload ist zu groß", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", "Current scanning" => "Scanne", +"directory" => "Verzeichnis", +"directories" => "Verzeichnisse", "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 f9c347b45da..d21fd92324f 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -1,5 +1,5 @@ <?php $TRANSLATIONS = array( -"Could not move %s - File with this name already exists" => "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits", +"Could not move %s - File with this name already exists" => "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits.", "Could not move %s" => "Konnte %s nicht verschieben", "Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", "Invalid Token" => "Ungültiges Merkmal", @@ -68,6 +68,7 @@ "You don’t have write permissions here." => "Sie haben hier keine Schreib-Berechtigungen.", "Nothing in here. Upload something!" => "Alles leer. Laden Sie etwas hoch!", "Download" => "Herunterladen", +"Size (MB)" => "Größe (MB)", "Unshare" => "Freigabe aufheben", "Upload too large" => "Der Upload ist zu groß", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 08c52e3b01f..7291dbbf156 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -70,6 +70,8 @@ "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/es.php b/apps/files/l10n/es.php index 78740d51507..2d5ac06ff97 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -68,6 +68,7 @@ "You don’t have write permissions here." => "No tiene permisos de escritura aquí.", "Nothing in here. Upload something!" => "No hay nada aquí. ¡Suba algo!", "Download" => "Descargar", +"Size (MB)" => "Tamaño (MB)", "Unshare" => "Dejar de compartir", "Upload too large" => "Subida demasido grande", "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.", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index d5ae7ae53d2..10bde4c3856 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "No se pudo mover %s - Un archivo con este nombre ya existe", "Could not move %s" => "No se pudo mover %s ", +"Unable to set upload directory." => "No fue posible crear el directorio de subida.", +"Invalid Token" => "Token Inválido", "No file was uploaded. Unknown error" => "El archivo no fue subido. Error desconocido", "There is no error, the file uploaded with success" => "No hay errores, el archivo fue subido con éxito", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "El archivo que intentás subir excede el tamaño definido por upload_max_filesize en el php.ini:", @@ -47,6 +49,7 @@ "{count} folders" => "{count} directorios", "1 file" => "1 archivo", "{count} files" => "{count} archivos", +"%s could not be renamed" => "%s no se pudo renombrar", "Upload" => "Subir", "File handling" => "Tratamiento de archivos", "Maximum upload size" => "Tamaño máximo de subida", @@ -65,11 +68,14 @@ "You don’t have write permissions here." => "No tenés permisos de escritura acá.", "Nothing in here. Upload something!" => "No hay nada. ¡Subí contenido!", "Download" => "Descargar", +"Size (MB)" => "Tamaño (MB)", "Unshare" => "Dejar de compartir", "Upload too large" => "El tamaño del archivo que querés subir es demasiado grande", "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", +"directory" => "directorio", +"directories" => "directorios", "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 6d94a8105ea..8ba928be94d 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", @@ -65,11 +68,14 @@ "You don’t have write permissions here." => "Siin puudvad sul kirjutamisõigused.", "Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!", "Download" => "Lae alla", +"Size (MB)" => "Suurus (MB)", "Unshare" => "Lõpeta jagamine", "Upload too large" => "Üleslaadimine on liiga suur", "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/fa.php b/apps/files/l10n/fa.php index 94ac167837a..8a6089f635b 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" => "حداکثر اندازه بارگزاری", @@ -64,11 +68,14 @@ "You don’t have write permissions here." => "شما اجازه ی نوشتن در اینجا را ندارید", "Nothing in here. Upload something!" => "اینجا هیچ چیز نیست.", "Download" => "دانلود", +"Size (MB)" => "اندازه(مگابایت)", "Unshare" => "لغو اشتراک", "Upload too large" => "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)", "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 22e448c01db..c57c0ea898e 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -60,11 +60,14 @@ "You don’t have write permissions here." => "Tunnuksellasi ei ole kirjoitusoikeuksia tänne.", "Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!", "Download" => "Lataa", +"Size (MB)" => "Koko (Mt)", "Unshare" => "Peru jakaminen", "Upload too large" => "Lähetettävä tiedosto on liian suuri", "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", +"directory" => "kansio", +"directories" => "kansiota", "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 646373d4aae..dc1a33ac65c 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -68,11 +68,14 @@ "You don’t have write permissions here." => "Vous n'avez pas le droit d'écriture ici.", "Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", "Download" => "Télécharger", +"Size (MB)" => "Taille (Mo)", "Unshare" => "Ne plus partager", "Upload too large" => "Téléversement trop volumineux", "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", +"directory" => "dossier", +"directories" => "dossiers", "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 106f6d6ff0a..4a1c7720caf 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", @@ -65,11 +68,14 @@ "You don’t have write permissions here." => "Non ten permisos para escribir aquí.", "Nothing in here. Upload something!" => "Aquí non hai nada. Envíe algo.", "Download" => "Descargar", +"Size (MB)" => "Tamaño (MB)", "Unshare" => "Deixar de compartir", "Upload too large" => "Envío demasiado grande", "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/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/hu_HU.php b/apps/files/l10n/hu_HU.php index f0e5b1befc5..21a519ea42b 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a névvel", "Could not move %s" => "Nem sikerült %s áthelyezése", +"Unable to set upload directory." => "Nem található a mappa, ahova feltölteni szeretne.", +"Invalid Token" => "Hibás mappacím", "No file was uploaded. Unknown error" => "Nem történt feltöltés. Ismeretlen hiba", "There is no error, the file uploaded with success" => "A fájlt sikerült feltölteni", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "A feltöltött fájl mérete meghaladja a php.ini állományban megadott upload_max_filesize paraméter értékét.", @@ -47,6 +49,7 @@ "{count} folders" => "{count} mappa", "1 file" => "1 fájl", "{count} files" => "{count} fájl", +"%s could not be renamed" => "%s átnevezése nem sikerült", "Upload" => "Feltöltés", "File handling" => "Fájlkezelés", "Maximum upload size" => "Maximális feltölthető fájlméret", @@ -65,11 +68,14 @@ "You don’t have write permissions here." => "Itt nincs írásjoga.", "Nothing in here. Upload something!" => "Itt nincs semmi. Töltsön fel valamit!", "Download" => "Letöltés", +"Size (MB)" => "Méret (MB)", "Unshare" => "A megosztás visszavonása", "Upload too large" => "A feltöltés túl nagy", "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", +"directory" => "mappa", +"directories" => "mappa", "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/it.php b/apps/files/l10n/it.php index 28b33795aeb..8ea6bb48aba 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -68,6 +68,7 @@ "You don’t have write permissions here." => "Qui non hai i permessi di scrittura.", "Nothing in here. Upload something!" => "Non c'è niente qui. Carica qualcosa!", "Download" => "Scarica", +"Size (MB)" => "Dimensione (MB)", "Unshare" => "Rimuovi condivisione", "Upload too large" => "Caricamento troppo grande", "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.", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index d91d5092834..cb5480199e2 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -68,11 +68,14 @@ "You don’t have write permissions here." => "あなたには書き込み権限がありません。", "Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。", "Download" => "ダウンロード", +"Size (MB)" => "サイズ(MB)", "Unshare" => "共有解除", "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" => "スキャン中", +"directory" => "ディレクトリ", +"directories" => "ディレクトリ", "file" => "ファイル", "files" => "ファイル", "Upgrading filesystem cache..." => "ファイルシステムキャッシュを更新中..." diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 769dfe33ffe..e6d0ed41049 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -1,6 +1,7 @@ <?php $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Kan ikke flytte %s - En fil med samme navn finnes allerede", "Could not move %s" => "Kunne ikke flytte %s", +"Unable to set upload directory." => "Kunne ikke sette opplastingskatalog.", "No file was uploaded. Unknown error" => "Ingen filer ble lastet opp. Ukjent feil.", "There is no error, the file uploaded with success" => "Pust ut, ingen feil. Filen ble lastet opp problemfritt", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Filstørrelsen overskrider maksgrensedirektivet upload_max_filesize i php.ini-konfigurasjonen.", @@ -65,11 +66,14 @@ "You don’t have write permissions here." => "Du har ikke skrivetilgang her.", "Nothing in here. Upload something!" => "Ingenting her. Last opp noe!", "Download" => "Last ned", +"Size (MB)" => "Størrelse (MB)", "Unshare" => "Avslutt deling", "Upload too large" => "Filen er for stor", "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", +"directory" => "katalog", +"directories" => "kataloger", "file" => "fil", "files" => "filer", "Upgrading filesystem cache..." => "Oppgraderer filsystemets mellomlager..." diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 3ad679f8764..a1e06483b68 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -68,6 +68,7 @@ "You don’t have write permissions here." => "Você não possui permissão de escrita aqui.", "Nothing in here. Upload something!" => "Nada aqui.Carrege alguma coisa!", "Download" => "Baixar", +"Size (MB)" => "Tamanho (MB)", "Unshare" => "Descompartilhar", "Upload too large" => "Upload muito grande", "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.", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 4273de9c478..8656edfc16b 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome", "Could not move %s" => "Não foi possível move o ficheiro %s", +"Unable to set upload directory." => "Não foi possível criar o diretório de upload", +"Invalid Token" => "Token inválido", "No file was uploaded. Unknown error" => "Nenhum ficheiro foi carregado. Erro desconhecido", "There is no error, the file uploaded with success" => "Não ocorreram erros, o ficheiro foi submetido com sucesso", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize", @@ -47,6 +49,7 @@ "{count} folders" => "{count} pastas", "1 file" => "1 ficheiro", "{count} files" => "{count} ficheiros", +"%s could not be renamed" => "%s não pode ser renomeada", "Upload" => "Carregar", "File handling" => "Manuseamento de ficheiros", "Maximum upload size" => "Tamanho máximo de envio", @@ -65,11 +68,14 @@ "You don’t have write permissions here." => "Não tem permissões de escrita aqui.", "Nothing in here. Upload something!" => "Vazio. Envie alguma coisa!", "Download" => "Transferir", +"Size (MB)" => "Tamanho (MB)", "Unshare" => "Deixar de partilhar", "Upload too large" => "Upload muito grande", "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", +"directory" => "diretório", +"directories" => "diretórios", "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 b12f9d10599..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,6 +73,8 @@ "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 2db90413f21..225de32d62e 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.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: " => "Файл превышает размер установленный upload_max_filesize в php.ini:", @@ -30,7 +32,7 @@ "cancel" => "отмена", "replaced {new_name} with {old_name}" => "заменено {new_name} на {old_name}", "undo" => "отмена", -"perform delete operation" => "выполняется операция удаления", +"perform delete operation" => "выполнить операцию удаления", "1 file uploading" => "загружается 1 файл", "files uploading" => "файлы загружаются", "'.' is an invalid file name." => "'.' - неправильное имя файла.", @@ -47,6 +49,7 @@ "{count} folders" => "{count} папок", "1 file" => "1 файл", "{count} files" => "{count} файлов", +"%s could not be renamed" => "%s не может быть переименован", "Upload" => "Загрузка", "File handling" => "Управление файлами", "Maximum upload size" => "Максимальный размер загружаемого файла", @@ -65,11 +68,14 @@ "You don’t have write permissions here." => "У вас нет разрешений на запись здесь.", "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", "Download" => "Скачать", +"Size (MB)" => "Размер (Мб)", "Unshare" => "Закрыть общий доступ", "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" => "Текущее сканирование", +"directory" => "директория", +"directories" => "директории", "file" => "файл", "files" => "файлы", "Upgrading filesystem cache..." => "Обновление кэша файловой системы..." diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index b8382c7b0b4..ac71f30e907 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Nie je možné presunúť %s - súbor s týmto menom už existuje", "Could not move %s" => "Nie je možné presunúť %s", +"Unable to set upload directory." => "Nemožno nastaviť priečinok pre nahrané súbory.", +"Invalid Token" => "Neplatný token", "No file was uploaded. Unknown error" => "Žiaden súbor nebol odoslaný. Neznáma chyba", "There is no error, the file uploaded with success" => "Nenastala žiadna chyba, súbor bol úspešne nahraný", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Nahraný súbor predčil konfiguračnú direktívu upload_max_filesize v súbore php.ini:", @@ -10,13 +12,13 @@ "Missing a temporary folder" => "Chýba dočasný priečinok", "Failed to write to disk" => "Zápis na disk sa nepodaril", "Not enough storage available" => "Nedostatok dostupného úložného priestoru", -"Invalid directory." => "Neplatný priečinok", +"Invalid directory." => "Neplatný priečinok.", "Files" => "Súbory", "Unable to upload your file as it is a directory or has 0 bytes" => "Nedá sa odoslať Váš súbor, pretože je to priečinok, alebo je jeho veľkosť 0 bajtov", "Not enough space available" => "Nie je k dispozícii dostatok miesta", -"Upload cancelled." => "Odosielanie zrušené", +"Upload cancelled." => "Odosielanie zrušené.", "File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.", -"URL cannot be empty." => "URL nemôže byť prázdne", +"URL cannot be empty." => "URL nemôže byť prázdne.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Neplatný názov priečinka. Názov \"Shared\" je rezervovaný pre ownCloud", "Error" => "Chyba", "Share" => "Zdieľať", @@ -47,6 +49,7 @@ "{count} folders" => "{count} priečinkov", "1 file" => "1 súbor", "{count} files" => "{count} súborov", +"%s could not be renamed" => "%s nemohol byť premenovaný", "Upload" => "Odoslať", "File handling" => "Nastavenie správania sa k súborom", "Maximum upload size" => "Maximálna veľkosť odosielaného súboru", @@ -70,6 +73,8 @@ "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é", +"directory" => "priečinok", +"directories" => "priečinky", "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 4516be15086..bb01e5475d5 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -1,5 +1,5 @@ <?php $TRANSLATIONS = array( -"Could not move %s - File with this name already exists" => "Ni mogoče premakniti %s - datoteka s tem imenom že obstaja", +"Could not move %s - File with this name already exists" => "%s ni mogoče premakniti - datoteka s tem imenom že obstaja", "Could not move %s" => "Ni mogoče premakniti %s", "Unable to set upload directory." => "Mapo, v katero boste prenašali dokumente, ni mogoče določiti", "Invalid Token" => "Neveljaven žeton", @@ -49,6 +49,7 @@ "{count} folders" => "{count} map", "1 file" => "1 datoteka", "{count} files" => "{count} datotek", +"%s could not be renamed" => "%s ni bilo mogoče preimenovati", "Upload" => "Pošlji", "File handling" => "Upravljanje z datotekami", "Maximum upload size" => "Največja velikost za pošiljanja", @@ -72,6 +73,8 @@ "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", +"directory" => "direktorij", +"directories" => "direktoriji", "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 70f3121a20c..132a014e61f 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -68,6 +68,7 @@ "You don’t have write permissions here." => "Du saknar skrivbehörighet här.", "Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!", "Download" => "Ladda ner", +"Size (MB)" => "Storlek (MB)", "Unshare" => "Sluta dela", "Upload too large" => "För stor uppladdning", "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.", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 4108516cda1..a515b8ac1bf 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -1,18 +1,28 @@ <?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" => "非法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指定的upload_max_filesize", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了 HTML 表格中指定的 MAX_FILE_SIZE 选项", "The uploaded file was only partially uploaded" => "文件部分上传", "No file was uploaded" => "没有上传文件", "Missing a temporary folder" => "缺失临时文件夹", "Failed to write to disk" => "写磁盘失败", +"Not enough storage available" => "容量不足", +"Invalid directory." => "无效文件夹", "Files" => "文件", "Unable to upload your file as it is a directory or has 0 bytes" => "不能上传您的文件,由于它是文件夹或者为空文件", +"Not enough space available" => "容量不足", "Upload cancelled." => "上传取消了", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。", "URL cannot be empty." => "网址不能为空。", +"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "无效文件夹名。“Shared”已经被系统保留。", "Error" => "出错", "Share" => "分享", +"Delete permanently" => "永久删除", "Delete" => "删除", "Rename" => "重命名", "Pending" => "等待中", @@ -22,8 +32,16 @@ "cancel" => "取消", "replaced {new_name} with {old_name}" => "已用 {old_name} 替换 {new_name}", "undo" => "撤销", +"perform delete operation" => "执行删除", "1 file uploading" => "1 个文件正在上传", "files uploading" => "个文件正在上传", +"'.' is an invalid file name." => "'.' 文件名不正确", +"File name cannot be empty." => "文件名不能为空", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "文件名内不能包含以下符号:\\ / < > : \" | ?和 *", +"Your storage is full, files can not be updated or synced anymore!" => "容量已满,不能再同步/上传文件了!", +"Your storage is almost full ({usedSpacePercent}%)" => "你的空间快用满了 ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "正在下载,可能会花点时间,跟文件大小有关", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "不正确文件夹名。Shared是保留名,不能使用。", "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", @@ -31,6 +49,7 @@ "{count} folders" => "{count} 个文件夹", "1 file" => "1 个文件", "{count} files" => "{count} 个文件", +"%s could not be renamed" => "不能重命名 %s", "Upload" => "上传", "File handling" => "文件处理中", "Maximum upload size" => "最大上传大小", @@ -44,14 +63,20 @@ "Text file" => "文本文档", "Folder" => "文件夹", "From link" => "来自链接", +"Deleted files" => "已删除的文件", "Cancel upload" => "取消上传", +"You don’t have write permissions here." => "您没有写入权限。", "Nothing in here. Upload something!" => "这里没有东西.上传点什么!", "Download" => "下载", +"Size (MB)" => "大小 (MB)", "Unshare" => "取消分享", "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" => "正在扫描", +"directory" => "文件夹", +"directories" => "文件夹", "file" => "文件", -"files" => "文件" +"files" => "文件", +"Upgrading filesystem cache..." => "升级系统缓存..." ); diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 59a332f628f..6801b311ae4 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.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" => "無效的 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 當中 upload_max_filesize 參數的設定:", @@ -47,6 +49,7 @@ "{count} folders" => "{count} 個資料夾", "1 file" => "1 個檔案", "{count} files" => "{count} 個檔案", +"%s could not be renamed" => "無法重新命名 %s", "Upload" => "上傳", "File handling" => "檔案處理", "Maximum upload size" => "最大上傳檔案大小", @@ -65,10 +68,15 @@ "You don’t have write permissions here." => "您在這裡沒有編輯權。", "Nothing in here. Upload something!" => "這裡什麼也沒有,上傳一些東西吧!", "Download" => "下載", +"Size (MB)" => "大小 (MB)", "Unshare" => "取消共享", "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" => "目前掃描", +"directory" => "目錄", +"directories" => "目錄", +"file" => "檔案", +"files" => "檔案", "Upgrading filesystem cache..." => "正在升級檔案系統快取..." ); diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index b9119f2cb62..7d679bc4bf6 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -77,7 +77,7 @@ <?php endif; ?> </span> </th> - <th id="headerSize"><?php p($l->t( 'Size' )); ?></th> + <th id="headerSize"><?php p($l->t('Size (MB)')); ?></th> <th id="headerDate"> <span id="modified"><?php p($l->t( 'Modified' )); ?></span> <?php if ($_['permissions'] & OCP\PERMISSION_DELETE): ?> diff --git a/apps/files/templates/part.breadcrumb.php b/apps/files/templates/part.breadcrumb.php index 9886b42e424..9db27eb9b29 100644 --- a/apps/files/templates/part.breadcrumb.php +++ b/apps/files/templates/part.breadcrumb.php @@ -7,8 +7,7 @@ <?php endif;?> <?php for($i=0; $i<count($_["breadcrumb"]); $i++): $crumb = $_["breadcrumb"][$i]; - $dir = str_replace('+', '%20', urlencode($crumb["dir"])); - $dir = str_replace('%2F', '/', $dir); ?> + $dir = \OCP\Util::encodePath($crumb["dir"]); ?> <div class="crumb <?php if($i == count($_["breadcrumb"])-1) p('last');?> svg" data-dir='<?php p($dir);?>'> <a href="<?php p($_['baseURL'].$dir); ?>"><?php p($crumb["name"]); ?></a> diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index 502ddd329b1..97a9026860b 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -17,10 +17,8 @@ $totalsize = 0; ?> // the older the file, the brighter the shade of grey; days*14 $relative_date_color = round((time()-$file['mtime'])/60/60/24*14); if($relative_date_color>160) $relative_date_color = 160; - $name = rawurlencode($file['name']); - $name = str_replace('%2F', '/', $name); - $directory = rawurlencode($file['directory']); - $directory = str_replace('%2F', '/', $directory); ?> + $name = \OCP\Util::encodePath($file['name']); + $directory = \OCP\Util::encodePath($file['directory']); ?> <tr data-id="<?php p($file['fileid']); ?>" data-file="<?php p($name);?>" data-type="<?php ($file['type'] == 'dir')?p('dir'):p('file')?>" diff --git a/apps/files_encryption/appinfo/info.xml b/apps/files_encryption/appinfo/info.xml index 1e97b1b2217..46f1375c987 100644 --- a/apps/files_encryption/appinfo/info.xml +++ b/apps/files_encryption/appinfo/info.xml @@ -2,7 +2,7 @@ <info> <id>files_encryption</id> <name>Encryption</name> - <description>WARNING: This is a preview release of the new ownCloud 5 encryption system. Testing and feedback is very welcome but don't use this in production yet. After the app was enabled you need to re-login to initialize your encryption keys</description> + <description>The new ownCloud 5 files encryption system. After the app was enabled you need to re-login to initialize your encryption keys.</description> <licence>AGPL</licence> <author>Sam Tuke, Bjoern Schiessle, Florin Peter</author> <require>4</require> 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 3c0b39bab62..d9d3d7b4fa5 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -7,6 +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.", +"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/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index a402b96a51b..981e629ccfe 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -8,10 +8,13 @@ "Private key password successfully updated." => "Heslo soukromého klíče úspěšně aktualizováno.", "Could not update the private key password. Maybe the old password was not correct." => "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně.", "Saving..." => "Ukládám...", +"personal settings" => "osobní nastavení", "Encryption" => "Šifrování", "Enabled" => "Povoleno", "Disabled" => "Zakázáno", "Change Password" => "Změnit heslo", +"Old log-in password" => "Staré přihlašovací heslo", +"Current log-in password" => "Aktuální přihlašovací heslo", "Enable password recovery:" => "Povolit obnovu hesla:", "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Povolení vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo", "File recovery settings updated" => "Možnosti obnovy souborů aktualizovány", diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php index ed9b8d6c16e..d8265906db5 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -6,13 +6,31 @@ "Password successfully changed." => "Dein Passwort wurde geändert.", "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort falsch.", "Private key password successfully updated." => "Passwort des privaten Schlüssels 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. Eventuell war das alte Passwort falsch.", +"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." => "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen.", +"Missing requirements." => "Fehlende Vorraussetzungen", +"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 ist und die OpenSSL-PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung wurde vorerst deaktiviert.", "Saving..." => "Speichern...", +"Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Eventuell wurde Ihr Passwort von außerhalb geändert.", +"You can unlock your private key in your " => "Du kannst den privaten Schlüssel ändern und zwar in deinem", "personal settings" => "Private Einstellungen", "Encryption" => "Verschlüsselung", +"Enable recovery key (allow to recover users files in case of password loss):" => "Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstellen von Dateien, falls das Passwort vergessen wurde):", +"Recovery key password" => "Wiederherstellungsschlüssel-Passwort", "Enabled" => "Aktiviert", "Disabled" => "Deaktiviert", +"Change recovery key password:" => "Wiederherstellungsschlüssel-Passwort ändern:", +"Old Recovery key password" => "Altes Wiederherstellungsschlüssel-Passwort", +"New Recovery key password" => "Neues Wiederherstellungsschlüssel-Passwort", "Change Password" => "Passwort ändern", +"Your private key password no longer match your log-in password:" => "Ihr Passwort für ihren privaten Schlüssel stimmt nicht mehr mit ihrem Loginpasswort überein.", +"Set your old private key password to your current log-in password." => "Setzen Sie ihr altes Passwort für ihren privaten Schlüssel auf ihr aktuelles Login-Passwort", +" If you don't remember your old password you can ask your administrator to recover your files." => "Wenn Sie Ihr altes Passwort vergessen haben, können Sie den Administrator bitten, Ihre Daten wiederherzustellen.", "Old log-in password" => "Altes login Passwort", "Current log-in password" => "Aktuelles Passwort", -"File recovery settings updated" => "Einstellungen zur Wiederherstellung von Dateien wurden aktualisiert" +"Update Private Key Password" => "Passwort für den privaten Schlüssel aktualisieren", +"Enable password recovery:" => "Passwortwiederherstellung aktivvieren:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Wenn Sie diese Option aktivieren, können Sie Ihre verschlüsselten Dateien wiederherstellen, falls Sie Ihr Passwort vergessen", +"File recovery settings updated" => "Einstellungen zur Wiederherstellung von Dateien wurden aktualisiert", +"Could not update file recovery" => "Dateiwiederherstellung konnte nicht aktualisiert werden" ); diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 5e4dcb5b1f2..79bde7e2626 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -7,8 +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.", +"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).", @@ -25,7 +29,7 @@ "Old log-in password" => "Altes Login-Passwort", "Current log-in password" => "Momentanes Login-Passwort", "Update Private Key Password" => "Das Passwort des privaten Schlüssels aktualisieren", -"Enable password recovery:" => "Passwort-Wiederherstellung aktivieren:", +"Enable password recovery:" => "Die Passwort-Wiederherstellung aktivieren:", "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben.", "File recovery settings updated" => "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.", "Could not update file recovery" => "Die Dateiwiederherstellung konnte nicht aktualisiert werden." diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 42a79e4fd22..0b49edbd2af 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -7,7 +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.", -"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 la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.", +"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", @@ -18,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 b6f3fed8a6a..63c7fb7aa4f 100644 --- a/apps/files_encryption/l10n/es_AR.php +++ b/apps/files_encryption/l10n/es_AR.php @@ -7,6 +7,9 @@ "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.", +"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." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde fuera del sistema de ownCloud (por ej. desde tu cuenta de sistema). Podés actualizar tu clave privada en tus opciones personales, para recuperar el acceso a sus archivos.", +"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, asegurate 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 encriptación fue 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/fa.php b/apps/files_encryption/l10n/fa.php index af2e36b2a83..8967ca1eed8 100644 --- a/apps/files_encryption/l10n/fa.php +++ b/apps/files_encryption/l10n/fa.php @@ -1,4 +1,36 @@ <?php $TRANSLATIONS = array( +"Recovery key successfully enabled" => "کلید بازیابی با موفقیت فعال شده است.", +"Could not enable recovery key. Please check your recovery key password!" => "کلید بازیابی نمی تواند فعال شود. لطفا رمزعبور کلید بازیابی خود را بررسی نمایید!", +"Recovery key successfully disabled" => "کلید بازیابی با موفقیت غیر فعال شده است.", +"Could not disable recovery key. Please check your recovery key password!" => "کلید بازیابی را نمی تواند غیرفعال نماید. لطفا رمزعبور کلید بازیابی خود را بررسی کنید!", +"Password successfully changed." => "رمزعبور با موفقیت تغییر یافت.", +"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." => "رمزعبور کلید خصوصی را نمی تواند به روز کند. شاید رمزعبور قدیمی صحیح نمی باشد.", +"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 تغییر یافته است( به عنوان مثال پوشه سازمان شما ). شما میتوانید رمزعبور کلید خصوصی خود را در تنظیمات شخصیتان به روز کنید تا بتوانید به فایل های رمزگذاری شده خود را دسترسی داشته باشید.", +"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..." => "در حال ذخیره سازی...", -"Encryption" => "رمزگذاری" +"Your private key is not valid! Maybe the your password was changed from outside." => "کلید خصوصی شما معتبر نیست! شاید رمزعبوراز بیرون تغییر یافته است.", +"You can unlock your private key in your " => "شما میتوانید کلید خصوصی خود را باز نمایید.", +"personal settings" => "تنظیمات شخصی", +"Encryption" => "رمزگذاری", +"Enable recovery key (allow to recover users files in case of password loss):" => "فعال کردن کلید بازیابی(اجازه بازیابی فایل های کاربران در صورت از دست دادن رمزعبور):", +"Recovery key password" => "رمزعبور کلید بازیابی", +"Enabled" => "فعال شده", +"Disabled" => "غیرفعال شده", +"Change recovery key password:" => "تغییر رمزعبور کلید بازیابی:", +"Old Recovery key password" => "رمزعبور قدیمی کلید بازیابی ", +"New Recovery key password" => "رمزعبور جدید کلید بازیابی", +"Change Password" => "تغییر رمزعبور", +"Your private key password no longer match your log-in password:" => "رمزعبور کلید خصوصی شما با رمزعبور شما یکسان نیست :", +"Set your old private key password to your current log-in password." => "رمزعبور قدیمی کلید خصوصی خود را با رمزعبور فعلی تنظیم نمایید.", +" If you don't remember your old password you can ask your administrator to recover your files." => "اگر رمزعبور قدیمی را فراموش کرده اید میتوانید از مدیر خود برای بازیابی فایل هایتان درخواست نمایید.", +"Old log-in password" => "رمزعبور قدیمی", +"Current log-in password" => "رمزعبور فعلی", +"Update Private Key Password" => "به روز رسانی رمزعبور کلید خصوصی", +"Enable password recovery:" => "فعال سازی بازیابی رمزعبور:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "فعال کردن این گزینه به شما اجازه خواهد داد در صورت از دست دادن رمزعبور به فایل های رمزگذاری شده خود دسترسی داشته باشید.", +"File recovery settings updated" => "تنظیمات بازیابی فایل به روز شده است.", +"Could not update file recovery" => "به روز رسانی بازیابی فایل را نمی تواند انجام دهد." ); diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 44f65436722..174932d6e8a 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -8,6 +8,8 @@ "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.", +"Missing requirements." => "Système minimum requis non respecté.", +"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." => "Veuillez vous assurer qu'une version de PHP 5.3.3 ou plus récente est installée et que l'extension OpenSSL de PHP est activée et configurée correctement. En attendant, l'application de cryptage a été désactivée.", "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 7469aba4954..db6f57bb36d 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -8,6 +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", +"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 5b43d6321ff..8d15d1ced36 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -8,6 +8,8 @@ "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.", +"Missing requirements." => "Requisiti mancanti.", +"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." => "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è 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 5f2d3656e28..a1fcbd5c544 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -8,6 +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システムの外部(例えば、企業ディレクトリ)から変更された恐れがあります。個人設定で秘密鍵のパスワードを更新して、暗号化されたファイルを回復出来ます。", +"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/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index cb6a881ae0e..1563243c993 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -8,6 +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.", +"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 19a8287ada7..5bb803de2d0 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -7,6 +7,9 @@ "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." => "Невозможно обновить пароль от секретного ключа. Возможно, старый пароль указан неверно.", +"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 (например, корпоративный каталог). Вы можете обновить секретный ключ в личных настройках на странице восстановления доступа к зашифрованным файлам. ", +"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/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_external/l10n/es_AR.php b/apps/files_external/l10n/es_AR.php index a8446152725..c1b3ac63886 100644 --- a/apps/files_external/l10n/es_AR.php +++ b/apps/files_external/l10n/es_AR.php @@ -4,9 +4,9 @@ "Grant access" => "Permitir acceso", "Please provide a valid Dropbox app key and secret." => "Por favor, proporcioná un secreto y una contraseña válida para la aplicación Dropbox.", "Error configuring Google Drive storage" => "Error al configurar 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 de PHP no está activado ni instalado. Montar servicios ownCloud, WebDAV y/o GoogleDrive no será posible. Pedile al administrador del sistema que lo instale.", +"<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 está instalado. Montar archivos CIFS/SMB no es posible. Por favor, pedile al administrador de tu 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 está instalado. Montar archivos FTP no es posible. Por favor, pedile al administrador de tu 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 de PHP no está activo ni instalado. Montar servicios ownCloud, WebDAV y/o GoogleDrive no será posible. Pedile al administrador del sistema que lo instale.", "External Storage" => "Almacenamiento externo", "Folder name" => "Nombre de la carpeta", "External storage" => "Almacenamiento externo", diff --git a/apps/files_external/l10n/fa.php b/apps/files_external/l10n/fa.php index 1921ba9f2ae..036a34c0992 100644 --- a/apps/files_external/l10n/fa.php +++ b/apps/files_external/l10n/fa.php @@ -1,13 +1,26 @@ <?php $TRANSLATIONS = array( +"Access granted" => "مجوز دسترسی صادر شد", +"Error configuring Dropbox storage" => "خطا به هنگام تنظیم فضای دراپ باکس", +"Grant access" => " مجوز اعطا دسترسی", +"Please provide a valid Dropbox app key and secret." => "لطفا یک کلید و کد امنیتی صحیح دراپ باکس وارد کنید.", +"Error configuring Google Drive storage" => "خطا به هنگام تنظیم فضای 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." => "خطا: \"smbclient\" نصب نشده است. نصب و راه اندازی سهام CIFS/SMB امکان پذیر نمیباشد. لطفا از مدیریت سازمان خود برای راه اندازی آن درخواست نمایید.", +"<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." => "خطا: پشتیبانی FTP در PHP فعال نمی باشد یا نصب نشده است. نصب و راه اندازی از سهم های FTP امکان پذیر نمی باشد. لطفا از مدیر سیستم خود برای راه اندازی آن درخواست\nکنید.", +"<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." => "خطا: پشتیبانی Curl فعال نمی باشد یا نصب نشده است. نصب و راه اندازی ownCloud / WebDAV یا GoogleDrive امکان پذیر نیست. لطفا از مدیر سیستم خود برای نصب آن درخواست کنید.", "External Storage" => "حافظه خارجی", +"Folder name" => "نام پوشه", +"External storage" => "حافظه خارجی", "Configuration" => "پیکربندی", "Options" => "تنظیمات", "Applicable" => "قابل اجرا", +"Add storage" => "اضافه کردن حافظه", "None set" => "تنظیم نشده", "All Users" => "تمام کاربران", "Groups" => "گروه ها", "Users" => "کاربران", "Delete" => "حذف", "Enable User External Storage" => "فعال سازی حافظه خارجی کاربر", -"Allow users to mount their own external storage" => "اجازه به کاربران برای متصل کردن منابع ذخیره ی خارجی خودشان" +"Allow users to mount their own external storage" => "اجازه به کاربران برای متصل کردن منابع ذخیره ی خارجی خودشان", +"SSL root certificates" => "گواهی های اصلی SSL ", +"Import Root Certificate" => "وارد کردن گواهی اصلی" ); 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/ca.php b/apps/files_sharing/l10n/ca.php index f29cf3163a0..9d2ab5031c1 100644 --- a/apps/files_sharing/l10n/ca.php +++ b/apps/files_sharing/l10n/ca.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "la contrasenya és incorrecta. Intenteu-ho de nou.", "Password" => "Contrasenya", "Submit" => "Envia", "%s shared the folder %s with you" => "%s ha compartit la carpeta %s amb vós", diff --git a/apps/files_sharing/l10n/de.php b/apps/files_sharing/l10n/de.php index 0854152907d..ad2d171aa9f 100644 --- a/apps/files_sharing/l10n/de.php +++ b/apps/files_sharing/l10n/de.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut.", "Password" => "Passwort", "Submit" => "Absenden", "%s shared the folder %s with you" => "%s hat den Ordner %s mit Dir geteilt", 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/es_AR.php b/apps/files_sharing/l10n/es_AR.php index defbaa7ff92..90bfe704d22 100644 --- a/apps/files_sharing/l10n/es_AR.php +++ b/apps/files_sharing/l10n/es_AR.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "La contraseña no es correcta. Probá de nuevo.", "Password" => "Contraseña", "Submit" => "Enviar", "%s shared the folder %s with you" => "%s compartió la carpeta %s con vos", 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/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index 03931bf2986..370cbd98744 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Väärä salasana. Yritä uudelleen.", "Password" => "Salasana", "Submit" => "Lähetä", "%s shared the folder %s with you" => "%s jakoi kansion %s kanssasi", diff --git a/apps/files_sharing/l10n/fr.php b/apps/files_sharing/l10n/fr.php index 145880b7e59..32aa6e0065a 100644 --- a/apps/files_sharing/l10n/fr.php +++ b/apps/files_sharing/l10n/fr.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Le mot de passe est incorrect. Veuillez réessayer.", "Password" => "Mot de passe", "Submit" => "Envoyer", "%s shared the folder %s with you" => "%s a partagé le répertoire %s avec vous", 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/hu_HU.php b/apps/files_sharing/l10n/hu_HU.php index 0b964379bb9..15ff6ff3c2b 100644 --- a/apps/files_sharing/l10n/hu_HU.php +++ b/apps/files_sharing/l10n/hu_HU.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "A megadott jelszó nem megfelelő. Próbálja újra!", "Password" => "Jelszó", "Submit" => "Elküld", "%s shared the folder %s with you" => "%s megosztotta Önnel ezt a mappát: %s", diff --git a/apps/files_sharing/l10n/it.php b/apps/files_sharing/l10n/it.php index 66d6af7fd14..cf25c53ca38 100644 --- a/apps/files_sharing/l10n/it.php +++ b/apps/files_sharing/l10n/it.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "La password è errata. Prova ancora.", "Password" => "Password", "Submit" => "Invia", "%s shared the folder %s with you" => "%s ha condiviso la cartella %s con te", 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/lb.php b/apps/files_sharing/l10n/lb.php index 9968bf7a851..a604affee64 100644 --- a/apps/files_sharing/l10n/lb.php +++ b/apps/files_sharing/l10n/lb.php @@ -1,7 +1,11 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Den Passwuert ass incorrect. Probeier ed nach eng keier.", "Password" => "Passwuert", "Submit" => "Fortschécken", +"%s shared the folder %s with you" => "%s huet den Dossier %s mad der gedeelt", +"%s shared the file %s with you" => "%s deelt den Fichier %s mad dir", "Download" => "Download", "Upload" => "Eroplueden", -"Cancel upload" => "Upload ofbriechen" +"Cancel upload" => "Upload ofbriechen", +"No preview available for" => "Keeng Preview do fir" ); diff --git a/apps/files_sharing/l10n/nb_NO.php b/apps/files_sharing/l10n/nb_NO.php index 9c736f97d78..65eadd3ccae 100644 --- a/apps/files_sharing/l10n/nb_NO.php +++ b/apps/files_sharing/l10n/nb_NO.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Passordet er feil. Prøv på nytt.", "Password" => "Passord", "Submit" => "Send inn", "%s shared the folder %s with you" => "%s delte mappen %s med deg", 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/l10n/ru.php b/apps/files_sharing/l10n/ru.php index a157866702c..77332c183f6 100644 --- a/apps/files_sharing/l10n/ru.php +++ b/apps/files_sharing/l10n/ru.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/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/index.php b/apps/files_trashbin/index.php index a32b7414ac6..6f1c364737e 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -101,12 +101,15 @@ $breadcrumbNav->assign('home', OCP\Util::linkTo('files', 'index.php')); $list = new OCP\Template('files_trashbin', 'part.list', ''); $list->assign('files', $files); -$list->assign('baseURL', OCP\Util::linkTo('files_trashbin', 'index.php'). '?dir='.$dir); -$list->assign('downloadURL', OCP\Util::linkTo('files_trashbin', 'download.php') . '?file='.$dir); + +$encodedDir = \OCP\Util::encodePath($dir); +$list->assign('baseURL', OCP\Util::linkTo('files_trashbin', 'index.php'). '?dir='.$encodedDir); +$list->assign('downloadURL', OCP\Util::linkTo('files_trashbin', 'download.php') . '?file='.$encodedDir); $list->assign('disableSharing', true); $list->assign('dirlisting', $dirlisting); -$tmpl->assign('dirlisting', $dirlisting); $list->assign('disableDownloadActions', true); + +$tmpl->assign('dirlisting', $dirlisting); $tmpl->assign('breadcrumb', $breadcrumbNav->fetchPage()); $tmpl->assign('fileList', $list->fetchPage()); $tmpl->assign('files', $files); 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/l10n/zh_CN.GB2312.php b/apps/files_trashbin/l10n/zh_CN.GB2312.php index 4dda1e0433c..1ab193517f8 100644 --- a/apps/files_trashbin/l10n/zh_CN.GB2312.php +++ b/apps/files_trashbin/l10n/zh_CN.GB2312.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( "Error" => "出错", +"Delete permanently" => "永久删除", "Name" => "名称", "1 folder" => "1 个文件夹", "{count} folders" => "{count} 个文件夹", 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_trashbin/templates/part.breadcrumb.php b/apps/files_trashbin/templates/part.breadcrumb.php index 2801e04e9ad..85bb16ffa2d 100644 --- a/apps/files_trashbin/templates/part.breadcrumb.php +++ b/apps/files_trashbin/templates/part.breadcrumb.php @@ -11,8 +11,7 @@ <?php endif;?> <?php for($i=0; $i<count($_["breadcrumb"]); $i++): $crumb = $_["breadcrumb"][$i]; - $dir = str_replace('+', '%20', urlencode($crumb["dir"])); - $dir = str_replace('%2F', '/', $dir); ?> + $dir = \OCP\Util::encodePath($crumb["dir"]); ?> <div class="crumb <?php if($i == count($_["breadcrumb"])-1) p('last');?> svg" data-dir='<?php p($dir);?>'> <a href="<?php p($_['baseURL'].$dir); ?>"><?php p($crumb["name"]); ?></a> diff --git a/apps/files_trashbin/templates/part.list.php b/apps/files_trashbin/templates/part.list.php index 92a38bd2635..94a8eec9515 100644 --- a/apps/files_trashbin/templates/part.list.php +++ b/apps/files_trashbin/templates/part.list.php @@ -4,10 +4,8 @@ // the older the file, the brighter the shade of grey; days*14 $relative_date_color = round((time()-$file['date'])/60/60/24*14); if($relative_date_color>200) $relative_date_color = 200; - $name = str_replace('+', '%20', urlencode($file['name'])); - $name = str_replace('%2F', '/', $name); - $directory = str_replace('+', '%20', urlencode($file['directory'])); - $directory = str_replace('%2F', '/', $directory); ?> + $name = \OCP\Util::encodePath($file['name']); + $directory = \OCP\Util::encodePath($file['directory']); ?> <tr data-filename="<?php p($file['name']);?>" data-type="<?php ($file['type'] == 'dir')?p('dir'):p('file')?>" data-mime="<?php p($file['mimetype'])?>" diff --git a/apps/files_versions/l10n/fa.php b/apps/files_versions/l10n/fa.php index 4ec6aa1bbb4..98af636f590 100644 --- a/apps/files_versions/l10n/fa.php +++ b/apps/files_versions/l10n/fa.php @@ -1,8 +1,11 @@ <?php $TRANSLATIONS = array( "Could not revert: %s" => "بازگردانی امکان ناپذیر است: %s", "success" => "موفقیت", +"File %s was reverted to version %s" => "فایل %s به نسخه %s بازگردانده شده است.", "failure" => "شکست", +"File %s could not be reverted to version %s" => "فایل %s نمی تواند به نسخه %s بازگردانده شود.", "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/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 2f8262475b4..c083a000c37 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -113,6 +113,18 @@ class Storage { mkdir($versionsFolderName.'/'.$info['dirname'], 0750, true); } + $versionsSize = self::getVersionsSize($uid); + if ( $versionsSize === false || $versionsSize < 0 ) { + $versionsSize = self::calculateSize($uid); + } + + // assumption: we need filesize($filename) for the new version + + // some more free space for the modified file which might be + // 1.5 times as large as the current version -> 2.5 + $neededSpace = $files_view->filesize($filename) * 2.5; + + $versionsSize = self::expire($filename, $versionsSize, $neededSpace); + // disable proxy to prevent multiple fopen calls $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; @@ -123,19 +135,9 @@ class Storage { // reset proxy state \OC_FileProxy::$enabled = $proxyStatus; - $versionsSize = self::getVersionsSize($uid); - if ( $versionsSize === false || $versionsSize < 0 ) { - $versionsSize = self::calculateSize($uid); - } - $versionsSize += $users_view->filesize('files'.$filename); - // expire old revisions if necessary - $newSize = self::expire($filename, $versionsSize); - - if ( $newSize != $versionsSize ) { - self::setVersionsSize($uid, $newSize); - } + self::setVersionsSize($uid, $versionsSize); } } @@ -175,12 +177,14 @@ class Storage { if ($files_view->file_exists($newpath)) { return self::store($new_path); } - + + self::expire($newpath); + $abs_newpath = $versions_view->getLocalFile($newpath); if ( $files_view->is_dir($oldpath) && $versions_view->is_dir($oldpath) ) { $versions_view->rename($oldpath, $newpath); - } else if ( ($versions = Storage::getVersions($uid, $oldpath)) ) { + } else if ( ($versions = Storage::getVersions($uid, $oldpath)) ) { $info=pathinfo($abs_newpath); if(!file_exists($info['dirname'])) mkdir($info['dirname'], 0750, true); foreach ($versions as $v) { @@ -391,10 +395,10 @@ class Storage { /** * @brief Erase a file's versions which exceed the set quota */ - private static function expire($filename, $versionsSize = null) { + private static function expire($filename, $versionsSize = null, $offset = 0) { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { list($uid, $filename) = self::getUidAndFilename($filename); - $versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions'); + $versionsFileview = new \OC\Files\View('/'.$uid.'/files_versions'); // get available disk space for user $softQuota = true; @@ -424,87 +428,52 @@ class Storage { $rootInfo = $files_view->getFileInfo('/'); $free = $quota-$rootInfo['size']; // remaining free space for user if ( $free > 0 ) { - $availableSpace = ($free * self::DEFAULTMAXSIZE / 100) - $versionsSize; // how much space can be used for versions + $availableSpace = ($free * self::DEFAULTMAXSIZE / 100) - ($versionsSize + $offset); // how much space can be used for versions } else { - $availableSpace = $free-$versionsSize; + $availableSpace = $free - $versionsSize - $offset; } } else { - $availableSpace = $quota; + $availableSpace = $quota - $offset; } - // after every 1000s run reduce the number of all versions not only for the current file + // with the probability of 0.1% we reduce the number of all versions not only for the current file $random = rand(0, 1000); if ($random == 0) { - $result = Storage::getAllVersions($uid); - $versions_by_file = $result['by_file']; - $all_versions = $result['all']; + $allFiles = true; } else { - $all_versions = Storage::getVersions($uid, $filename); - $versions_by_file[$filename] = $all_versions; + $allFiles = false; } - $time = time(); + $allVersions = Storage::getVersions($uid, $filename); + $versionsByFile[$filename] = $allVersions; - // it is possible to expire versions from more than one file - // iterate through all given files - foreach ($versions_by_file as $filename => $versions) { - $versions = array_reverse($versions); // newest version first + $sizeOfDeletedVersions = self::delOldVersions($versionsByFile, $allVersions, $versionsFileview); + $availableSpace = $availableSpace + $sizeOfDeletedVersions; + $versionsSize = $versionsSize - $sizeOfDeletedVersions; - $interval = 1; - $step = Storage::$max_versions_per_interval[$interval]['step']; - if (Storage::$max_versions_per_interval[$interval]['intervalEndsAfter'] == -1) { - $nextInterval = -1; - } else { - $nextInterval = $time - Storage::$max_versions_per_interval[$interval]['intervalEndsAfter']; - } + // if still not enough free space we rearrange the versions from all files + if ($availableSpace <= 0 || $allFiles) { + $result = Storage::getAllVersions($uid); + $versionsByFile = $result['by_file']; + $allVersions = $result['all']; - $firstVersion = reset($versions); - $firstKey = key($versions); - $prevTimestamp = $firstVersion['version']; - $nextVersion = $firstVersion['version'] - $step; - $remaining_versions[$firstKey] = $firstVersion; - unset($versions[$firstKey]); - - foreach ($versions as $key => $version) { - $newInterval = true; - while ( $newInterval ) { - if ( $nextInterval == -1 || $version['version'] >= $nextInterval ) { - if ( $version['version'] > $nextVersion ) { - //distance between two version too small, delete version - $versions_fileview->unlink($version['path'].'.v'.$version['version']); - $availableSpace += $version['size']; - $versionsSize -= $version['size']; - unset($all_versions[$key]); // update array with all versions - } else { - $nextVersion = $version['version'] - $step; - } - $newInterval = false; // version checked so we can move to the next one - } else { // time to move on to the next interval - $interval++; - $step = Storage::$max_versions_per_interval[$interval]['step']; - $nextVersion = $prevTimestamp - $step; - if ( Storage::$max_versions_per_interval[$interval]['intervalEndsAfter'] == -1 ) { - $nextInterval = -1; - } else { - $nextInterval = $time - Storage::$max_versions_per_interval[$interval]['intervalEndsAfter']; - } - $newInterval = true; // we changed the interval -> check same version with new interval - } - } - $prevTimestamp = $version['version']; - } + $sizeOfDeletedVersions = self::delOldVersions($versionsByFile, $allVersions, $versionsFileview); + $availableSpace = $availableSpace + $sizeOfDeletedVersions; + $versionsSize = $versionsSize - $sizeOfDeletedVersions; } // Check if enough space is available after versions are rearranged. // If not we delete the oldest versions until we meet the size limit for versions, // but always keep the two latest versions - $numOfVersions = count($all_versions) -2 ; + $numOfVersions = count($allVersions) -2 ; $i = 0; while ($availableSpace < 0 && $i < $numOfVersions) { - $versions_fileview->unlink($all_versions[$i]['path'].'.v'.$all_versions[$i]['version']); - $versionsSize -= $all_versions[$i]['size']; - $availableSpace += $all_versions[$i]['size']; + $version = current($allVersions); + $versionsFileview->unlink($version['path'].'.v'.$version['version']); + $versionsSize -= $version['size']; + $availableSpace += $version['size']; + next($allVersions); $i++; } @@ -513,4 +482,67 @@ class Storage { return false; } + + /** + * @brief delete old version from a given list of versions + * + * @param array $versionsByFile list of versions ordered by files + * @param array $allVversions all versions accross multiple files + * @param $versionsFileview OC\Files\View on data/user/files_versions + * @return size of releted versions + */ + private static function delOldVersions($versionsByFile, &$allVersions, $versionsFileview) { + + $time = time(); + $size = 0; + + // delete old versions for every given file + foreach ($versionsByFile as $versions) { + $versions = array_reverse($versions); // newest version first + + $interval = 1; + $step = Storage::$max_versions_per_interval[$interval]['step']; + if (Storage::$max_versions_per_interval[$interval]['intervalEndsAfter'] == -1) { + $nextInterval = -1; + } else { + $nextInterval = $time - Storage::$max_versions_per_interval[$interval]['intervalEndsAfter']; + } + + $firstVersion = reset($versions); + $firstKey = key($versions); + $prevTimestamp = $firstVersion['version']; + $nextVersion = $firstVersion['version'] - $step; + unset($versions[$firstKey]); + + foreach ($versions as $key => $version) { + $newInterval = true; + while ($newInterval) { + if ($nextInterval == -1 || $version['version'] >= $nextInterval) { + if ($version['version'] > $nextVersion) { + //distance between two version too small, delete version + $versionsFileview->unlink($version['path'] . '.v' . $version['version']); + $size += $version['size']; + unset($allVersions[$key]); // update array with all versions + } else { + $nextVersion = $version['version'] - $step; + } + $newInterval = false; // version checked so we can move to the next one + } else { // time to move on to the next interval + $interval++; + $step = Storage::$max_versions_per_interval[$interval]['step']; + $nextVersion = $prevTimestamp - $step; + if (Storage::$max_versions_per_interval[$interval]['intervalEndsAfter'] == -1) { + $nextInterval = -1; + } else { + $nextInterval = $time - Storage::$max_versions_per_interval[$interval]['intervalEndsAfter']; + } + $newInterval = true; // we changed the interval -> check same version with new interval + } + } + $prevTimestamp = $version['version']; + } + } + return $size; + } + } diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index f0010818421..bf25806d38c 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/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üfe die Servereinstellungen und 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" => "Erfolgreich", "Error" => "Fehler", "Connection test succeeded" => "Verbindungstest erfolgreich", @@ -72,6 +74,16 @@ "Email Field" => "E-Mail Feld", "User Home Folder Naming Rule" => "Benennungsregel für das Home-Verzeichnis des Benutzers", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall trage ein LDAP/AD-Attribut ein.", +"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 aus der UUID erstellt. Dies stellt sicher, daß der Name einmalig ist und keine Zeichen umgewandelt werden müssen. Für den internen Benutzernamen sind nur die folgenden Zeichen zulässig: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden durch ihr ASCII-Äquivalent ersetzt oder ausgelassen. Bei Kollisionen wird eine Nummer hinzugefügt/erhöht. Der interne Benutzername wird verwendet, um einen Benutzer intern zu identifizieren. Er ist auch der Standardname für das Benutzerverzeichnis in ownCloud und Teil von Remote-URLs, unter anderem für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten geändert werden. Um ein ähnliches Verhalten wie in ownCloud 5 zu erreichen, geben Sie das Benutzer-Anzeige-Namen-Attribut in das folgende Feld ein. Änderungen betreffen nur neu angelegte LDAP-Benutzer.", +"Internal Username Attribute:" => "Attribut für interne Benutzernamen:", +"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 das UUID-Attribut automatisch. Das UUID-Attribut wird benutzt, um LDAP-Benutzer und Gruppen eindeutig zu identifizieren. Außerdem wird der interne Benutzername basierend auf der UUID erstellt, wenn nicht anders angegeben. Sie können dieses Verhalten ändern und ein Attribut Ihrer Wahl angeben. Sie müssen sichergehen, dass das Attribut Ihrer Wahl auf Benutzer und Gruppen anwendbar und einzigartig ist. Für das Standardverhalten lassen Sie das Feld leer. Änderungen betreffen nur neu angelegte LDAP-Benutzer und Gruppen.", +"UUID Attribute:" => "UUID-Attribut:", +"Username-LDAP User Mapping" => "LDAP-Benutzernamenzuordnung", +"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." => "OwnCloud nutzt die Benutzernamen, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung vom OwnCloud-Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch OwnCloud gefunden. Der interne OwnCloud-Name, wird in der gesamten OwnCloud verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste in der OwnCloud. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Lösche niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung.", +"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/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 8aa64477e41..a876119f364 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,14 @@ "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", +"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." => "OwnCloud nutzt die Benutzernamen, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung vom OwnCloud-Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch OwnCloud gefunden. Der interne OwnCloud-Name, wird in der gesamten OwnCloud verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste in der OwnCloud. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung.", +"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/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index 308fd34760a..aca8c8e7709 100644 --- a/apps/user_ldap/l10n/pt_PT.php +++ b/apps/user_ldap/l10n/pt_PT.php @@ -75,10 +75,13 @@ "User Home Folder Naming Rule" => "Regra da pasta inicial do utilizador", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Deixe vazio para nome de utilizador (padrão). De outro modo, especifique um atributo LDAP/AD.", "Internal Username" => "Nome de utilizador interno", +"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." => "Por padrão o nome de utilizador interno vai ser criado através do atributo UUID. Desta forma é assegurado que o nome é único e os caracteres nao necessitam de serem convertidos. O nome interno tem a restrição de que apenas estes caracteres são permitidos: [ a-zA-Z0-9_.@- ]. Outros caracteres são substituidos pela sua correspondência ASCII ou simplesmente omitidos. Mesmo assim, quando for detetado uma colisão irá ser acrescentado um número. O nome interno é usado para identificar o utilizador internamente. É também o nome utilizado para a pasta inicial no ownCloud. É também parte de URLs remotos, como por exemplo os serviços *DAV. Com esta definição, o comportamento padrão é pode ser sobreposto. Para obter o mesmo comportamento antes do ownCloud 5 introduza o atributo do nome no campo seguinte. Deixe vazio para obter o comportamento padrão. As alterações apenas serão feitas para novos utilizadores LDAP.", "Internal Username Attribute:" => "Atributo do nome de utilizador interno", "Override UUID detection" => "Passar a detecção do UUID", +"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." => "Por defeito, o ownCloud deteta automaticamente o atributo UUID. Este atributo é usado para identificar inequivocamente grupos e utilizadores LDAP. Igualmente, o nome de utilizador interno é criado com base no UUID, se o contrário não for especificado. Pode sobrepor esta definição colocando um atributo à sua escolha. Tenha em atenção que esse atributo deve ser válido tanto para grupos como para utilizadores, e que é único. Deixe em branco para optar pelo comportamento por defeito. Estas alteração apenas terão efeito em novos utilizadores e grupos mapeados (adicionados).", "UUID Attribute:" => "Atributo UUID:", "Username-LDAP User Mapping" => "Mapeamento do utilizador LDAP", +"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." => "O ownCloud usa nomes de utilizadores para guardar e atribuir (meta) dados. Para identificar com precisão os utilizadores, cada utilizador de LDAP tem um nome de utilizador interno. Isto requer um mapeamento entre o utilizador LDAP e o utilizador ownCloud. Adicionalmente, o DN é colocado em cache para reduzir a interação com LDAP, porém não é usado para identificação. Se o DN muda, essas alterações serão vistas pelo ownCloud. O nome interno do ownCloud é usado em todo o lado, no ownCloud. Limpar os mapeamentos deixará vestígios em todo o lado. A limpeza dos mapeamentos não é sensível à configuração, pois afeta todas as configurações de LDAP! Nunca limpe os mapeamentos num ambiente de produção, apenas o faça numa fase de testes ou experimental.", "Clear Username-LDAP User Mapping" => "Limpar mapeamento do utilizador-LDAP", "Clear Groupname-LDAP Group Mapping" => "Limpar o mapeamento do nome de grupo LDAP", "Test Configuration" => "Testar a configuração", 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_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index 31150a5bec5..36c8e648b1a 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -210,6 +210,22 @@ class Connection { } /** + * Special handling for reading Base Configuration + * + * @param $base the internal name of the config key + * @param $value the value stored for the base + */ + private function readBase($base, $value) { + if(empty($value)) { + $value = ''; + } else { + $value = preg_split('/\r\n|\r|\n/', $value); + } + + $this->config[$base] = $value; + } + + /** * Caches the general LDAP configuration. */ private function readConfiguration($force = false) { @@ -224,14 +240,9 @@ class Connection { $this->config['ldapAgentName'] = $this->$v('ldap_dn'); $this->config['ldapAgentPassword'] = base64_decode($this->$v('ldap_agent_password')); - $rawLdapBase = $this->$v('ldap_base'); - $this->config['ldapBase'] - = preg_split('/\r\n|\r|\n/', $rawLdapBase); - $this->config['ldapBaseUsers'] - = preg_split('/\r\n|\r|\n/', ($this->$v('ldap_base_users'))); - $this->config['ldapBaseGroups'] - = preg_split('/\r\n|\r|\n/', $this->$v('ldap_base_groups')); - unset($rawLdapBase); + $this->readBase('ldapBase', $this->$v('ldap_base')); + $this->readBase('ldapBaseUsers', $this->$v('ldap_base_users')); + $this->readBase('ldapBaseGroups', $this->$v('ldap_base_groups')); $this->config['ldapTLS'] = $this->$v('ldap_tls'); $this->config['ldapNoCase'] = $this->$v('ldap_nocase'); $this->config['turnOffCertCheck'] diff --git a/apps/user_webdavauth/l10n/de.php b/apps/user_webdavauth/l10n/de.php index e2db395b1c6..a6d61a497f7 100644 --- a/apps/user_webdavauth/l10n/de.php +++ b/apps/user_webdavauth/l10n/de.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( "WebDAV Authentication" => "WebDAV Authentifikation", +"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 sendet die Benutzerdaten an diese URL. Dieses Plugin prüft die Antwort und wird die Statuscodes 401 und 403 als ungültige Daten und alle anderen Antworten als gültige Daten interpretieren." ); 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/apps/user_webdavauth/l10n/ru.php b/apps/user_webdavauth/l10n/ru.php index d5f554c8025..20acc6e59a9 100644 --- a/apps/user_webdavauth/l10n/ru.php +++ b/apps/user_webdavauth/l10n/ru.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( "WebDAV Authentication" => "Идентификация WebDAV", +"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 отправит учётные данные пользователя на этот адрес. Затем плагин проверит ответ, в случае HTTP ответа 401 или 403 данные будут считаться неверными, при любых других ответах - верными." ); diff --git a/autotest.sh b/autotest.sh index 59f0240d99b..141b4333f97 100755 --- a/autotest.sh +++ b/autotest.sh @@ -143,11 +143,10 @@ EOF # if [ -z "$1" ] then - execute_tests "sqlite" + execute_tests 'sqlite' execute_tests 'mysql' execute_tests 'pgsql' - # we will add oci as soon as it's stable - #execute_tests 'oci' + execute_tests 'oci' else execute_tests $1 $2 $3 fi diff --git a/build/build.xml b/build/build.xml index 3df77ad024e..0f9d3605da1 100644 --- a/build/build.xml +++ b/build/build.xml @@ -69,8 +69,6 @@ jQuery,$$,OC,$,oc_webroot,oc_appswebroots,oc_current_user,t,Files,FileList,FileA <arg value="--log-csv" /> <arg value="${basedir}/build/logs/phploc.csv" /> <arg path="${basedir}" /> - <arg value="--exclude" /> - <arg value="${basedir}/3rdparty/" /> </exec> </target> @@ -172,8 +170,6 @@ jQuery,$$,OC,$,oc_webroot,oc_appswebroots,oc_current_user,t,Files,FileList,FileA <arg path="${basedir}" /> <arg value="--output" /> <arg path="${basedir}/build/code-browser" /> - <arg value="--exclude" /> - <arg value="${basedir}/3rdparty/" /> </exec> </target> </project> diff --git a/config/config.sample.php b/config/config.sample.php index dfa29f329c4..4d1950d60ee 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -129,17 +129,17 @@ $CONFIG = array( /* Are we connected to the internet or are we running in a closed network? */ "has_internet_connection" => true, - /* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */ +/* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */ "log_type" => "owncloud", -/* File for the owncloud logger to log to, (default is ownloud.log in the data dir */ +/* File for the owncloud logger to log to, (default is ownloud.log in the data dir) */ "logfile" => "", /* Loglevel to start logging at. 0=DEBUG, 1=INFO, 2=WARN, 3=ERROR (default is WARN) */ "loglevel" => "", -/* Append All database query and parameters to the log file. - (whatch out, this option can increase the size of your log file)*/ +/* Append all database queries and parameters to the log file. + (watch out, this option can increase the size of your log file)*/ "log_query" => false, /* Lifetime of the remember login cookie, default is 15 days */ @@ -167,8 +167,8 @@ $CONFIG = array( /* Set an array of path for your apps directories key 'path' is for the fs path and the key 'url' is for the http path to your - applications paths. 'writable' indicate if the user can install apps in this folder. - You must have at least 1 app folder writable or you must set the parameter : appstoreenabled to false + applications paths. 'writable' indicates whether the user can install apps in this folder. + You must have at least 1 app folder writable or you must set the parameter 'appstoreenabled' to false */ array( 'path'=> '/var/www/owncloud/apps', diff --git a/core/ajax/update.php b/core/ajax/update.php index db00da02239..43ed75b07f1 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -4,113 +4,34 @@ $RUNTIME_NOAPPS = true; require_once '../../lib/base.php'; if (OC::checkUpgrade(false)) { - \OC_DB::enableCaching(false); - OC_Config::setValue('maintenance', true); - $installedVersion = OC_Config::getValue('version', '0.0.0'); - $currentVersion = implode('.', OC_Util::getVersion()); - OC_Log::write('core', 'starting upgrade from ' . $installedVersion . ' to ' . $currentVersion, OC_Log::WARN); - $updateEventSource = new OC_EventSource(); - $watcher = new UpdateWatcher($updateEventSource); - OC_Hook::connect('update', 'success', $watcher, 'success'); - OC_Hook::connect('update', 'error', $watcher, 'error'); - OC_Hook::connect('update', 'failure', $watcher, 'failure'); - $watcher->success('Turned on maintenance mode'); - try { - $result = OC_DB::updateDbFromStructure(OC::$SERVERROOT.'/db_structure.xml'); - $watcher->success('Updated database'); - - // do a file cache upgrade for users with files - // this can take loooooooooooooooooooooooong - __doFileCacheUpgrade($watcher); - } catch (Exception $exception) { - $watcher->failure($exception->getMessage()); - } - OC_Config::setValue('version', implode('.', OC_Util::getVersion())); - OC_App::checkAppsRequirements(); - // load all apps to also upgrade enabled apps - OC_App::loadApps(); - OC_Config::setValue('maintenance', false); - $watcher->success('Turned off maintenance mode'); - $watcher->done(); -} - -/** - * The FileCache Upgrade routine - * - * @param UpdateWatcher $watcher - */ -function __doFileCacheUpgrade($watcher) { - try { - $query = \OC_DB::prepare(' - SELECT DISTINCT `user` - FROM `*PREFIX*fscache` - '); - $result = $query->execute(); - } catch (\Exception $e) { - return; - } - $users = $result->fetchAll(); - if(count($users) == 0) { - return; - } - $step = 100 / count($users); - $percentCompleted = 0; - $lastPercentCompletedOutput = 0; - $startInfoShown = false; - foreach($users as $userRow) { - $user = $userRow['user']; - \OC\Files\Filesystem::initMountPoints($user); - \OC\Files\Cache\Upgrade::doSilentUpgrade($user); - if(!$startInfoShown) { - //We show it only now, because otherwise Info about upgraded apps - //will appear between this and progress info - $watcher->success('Updating filecache, this may take really long...'); - $startInfoShown = true; - } - $percentCompleted += $step; - $out = floor($percentCompleted); - if($out != $lastPercentCompletedOutput) { - $watcher->success('... '. $out.'% done ...'); - $lastPercentCompletedOutput = $out; - } - } - $watcher->success('Updated filecache'); -} - -class UpdateWatcher { - /** - * @var \OC_EventSource $eventSource; - */ - private $eventSource; - - public function __construct($eventSource) { - $this->eventSource = $eventSource; - } - - public function success($message) { - OC_Util::obEnd(); - $this->eventSource->send('success', $message); - ob_start(); - } - - public function error($message) { - OC_Util::obEnd(); - $this->eventSource->send('error', $message); - ob_start(); - } - - public function failure($message) { - OC_Util::obEnd(); - $this->eventSource->send('failure', $message); - $this->eventSource->close(); + $eventSource = new OC_EventSource(); + $updater = new \OC\Updater(\OC_Log::$object); + $updater->listen('\OC\Updater', 'maintenanceStart', function () use ($eventSource) { + $eventSource->send('success', 'Turned on maintenance mode'); + }); + $updater->listen('\OC\Updater', 'maintenanceEnd', function () use ($eventSource) { + $eventSource->send('success', 'Turned off maintenance mode'); + }); + $updater->listen('\OC\Updater', 'dbUpgrade', function () use ($eventSource) { + $eventSource->send('success', 'Updated database'); + }); + $updater->listen('\OC\Updater', 'filecacheStart', function () use ($eventSource) { + $eventSource->send('success', 'Updating filecache, this may take really long...'); + }); + $updater->listen('\OC\Updater', 'filecacheDone', function () use ($eventSource) { + $eventSource->send('success', 'Updated filecache'); + }); + $updater->listen('\OC\Updater', 'filecacheProgress', function ($out) use ($eventSource) { + $eventSource->send('success', '... ' . $out . '% done ...'); + }); + $updater->listen('\OC\Updater', 'failure', function ($message) use ($eventSource) { + $eventSource->send('failure', $message); + $eventSource->close(); OC_Config::setValue('maintenance', false); - die(); - } + }); - public function done() { - OC_Util::obEnd(); - $this->eventSource->send('done', ''); - $this->eventSource->close(); - } + $updater->upgrade(); -}
\ No newline at end of file + $eventSource->send('done', ''); + $eventSource->close(); +} diff --git a/core/css/jquery.ocdialog.css b/core/css/jquery.ocdialog.css index c300b031afd..aa72eaf8474 100644 --- a/core/css/jquery.ocdialog.css +++ b/core/css/jquery.ocdialog.css @@ -35,7 +35,7 @@ position:absolute; top:7px; right:7px; height:20px; width:20px; - background:url('../img/actions/delete.svg') no-repeat center; + background:url('../img/actions/close.svg') no-repeat center; } .oc-dialog-dim { diff --git a/core/css/styles.css b/core/css/styles.css index 40a17a42876..ca2d082eb32 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; } @@ -431,7 +437,7 @@ span.ui-icon {float: left; margin: 3px 7px 30px 0;} .popup { background-color:white; border-radius:10px 10px 10px 10px; box-shadow:0 0 20px #888; color:#333; padding:10px; position:fixed !important; z-index:200; } .popup.topright { top:7em; right:1em; } .popup.bottomleft { bottom:1em; left:33em; } -.popup .close { position:absolute; top:0.2em; right:0.2em; height:20px; width:20px; background:url('../img/actions/delete.svg') no-repeat center; } +.popup .close { position:absolute; top:0.2em; right:0.2em; height:20px; width:20px; background:url('../img/actions/close.svg') no-repeat center; } .popup h2 { font-weight:bold; font-size:1.2em; } .arrow { border-bottom:10px solid white; border-left:10px solid transparent; border-right:10px solid transparent; display:block; height:0; position:absolute; width:0; z-index:201; } .arrow.left { left:-13px; bottom:1.2em; -webkit-transform:rotate(270deg); -moz-transform:rotate(270deg); -o-transform:rotate(270deg); -ms-transform:rotate(270deg); transform:rotate(270deg); } @@ -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/eventsource.js b/core/js/eventsource.js index ce8c8387c8e..536b180bc8f 100644 --- a/core/js/eventsource.js +++ b/core/js/eventsource.js @@ -110,7 +110,11 @@ OC.EventSource.prototype={ this.listeners[type].push(callback); }else{ this.source.addEventListener(type,function(e){ - callback(JSON.parse(e.data)); + if (typeof e.data != 'undefined') { + callback(JSON.parse(e.data)); + } else { + callback(''); + } },false); } }else{ diff --git a/core/js/js.js b/core/js/js.js index 3904787c4e5..5158b66d73a 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -226,8 +226,12 @@ var OC={ var path=OC.filePath(app,'css',style+'.css'); if(OC.addStyle.loaded.indexOf(path)===-1){ OC.addStyle.loaded.push(path); - style=$('<link rel="stylesheet" type="text/css" href="'+path+'"/>'); - $('head').append(style); + if (document.createStyleSheet) { + document.createStyleSheet(path); + } else { + style=$('<link rel="stylesheet" type="text/css" href="'+path+'"/>'); + $('head').append(style); + } } }, basename: function(path) { 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/js/update.js b/core/js/update.js index 8ab02bbf935..2c28e72f7cd 100644 --- a/core/js/update.js +++ b/core/js/update.js @@ -5,6 +5,9 @@ $(document).ready(function () { }); updateEventSource.listen('error', function(message) { $('<span>').addClass('error').append(message).append('<br />').appendTo($('.update')); + message = 'Please reload the page.'; + $('<span>').addClass('error').append(message).append('<br />').appendTo($('.update')); + updateEventSource.close(); }); updateEventSource.listen('failure', function(message) { $('<span>').addClass('error').append(message).append('<br />').appendTo($('.update')); @@ -20,4 +23,4 @@ $(document).ready(function () { window.location.href = OC.webroot; }, 3000); }); -});
\ No newline at end of file +}); 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..a8e1f811534 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -62,6 +62,7 @@ "Share with link" => "Über einen Link freigegeben", "Password protect" => "Passwortschutz", "Password" => "Passwort", +"Allow Public Upload" => "Öffentliches Hochladen erlauben", "Email link to person" => "Link per E-Mail verschicken", "Send" => "Senden", "Set expiration date" => "Setze ein Ablaufdatum", @@ -105,7 +106,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..4188522b0c7 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -62,7 +62,7 @@ "Share with link" => "Über einen Link teilen", "Password protect" => "Passwortschutz", "Password" => "Passwort", -"Allow Public Upload" => "Erlaube öffentliches hochladen", +"Allow Public Upload" => "Öffentliches Hochladen erlauben", "Email link to person" => "Link per E-Mail verschicken", "Send" => "Senden", "Set expiration date" => "Ein Ablaufdatum setzen", @@ -91,7 +91,7 @@ "Request failed!<br>Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!<br>Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?", "You will receive a link to reset your password via Email." => "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen.", "Username" => "Benutzername", -"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?" => "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keinen Weg geben, um Ihre Daten wieder zu bekommen, nachdem Ihr Passwort zurückgesetzt wurde. Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?", +"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?" => "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keine Möglichkeit geben, um Ihre Daten wiederzubekommen, nachdem Ihr Passwort zurückgesetzt wurde. Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?", "Yes, I really want to reset my password now" => "Ja, ich möchte jetzt mein Passwort wirklich zurücksetzen.", "Request reset" => "Zurücksetzung anfordern", "Your password was reset" => "Ihr Passwort wurde zurückgesetzt.", @@ -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..83123b76ea2 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -62,6 +62,7 @@ "Share with link" => "Compartir con enlace", "Password protect" => "Proteger con contraseña ", "Password" => "Contraseña", +"Allow Public Upload" => "Permitir Subida Pública", "Email link to person" => "Enviar el enlace por e-mail.", "Send" => "Mandar", "Set expiration date" => "Asignar fecha de vencimiento", @@ -105,7 +106,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..07d4893d6ad 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -62,6 +62,7 @@ "Share with link" => "Link megadásával osztom meg", "Password protect" => "Jelszóval is védem", "Password" => "Jelszó", +"Allow Public Upload" => "Feltöltést is engedélyezek", "Email link to person" => "Email címre küldjük el", "Send" => "Küldjük el", "Set expiration date" => "Legyen lejárati idő", @@ -90,6 +91,7 @@ "Request failed!<br>Did you make sure your email/username was right?" => "A kérést nem sikerült teljesíteni! <br>Biztos, hogy jó emailcímet/felhasználónevet adott meg?", "You will receive a link to reset your password via Email." => "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról.", "Username" => "Felhasználónév", +"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?" => "Az Ön állományai titkosítva vannak. Ha nem engedélyezte korábban az adatok visszanyeréséhez szükséges kulcs használatát, akkor a jelszó megváltoztatását követően nem fog hozzáférni az adataihoz. Ha nem biztos abban, hogy mit kellene tennie, akkor kérdezze meg a rendszergazdát, mielőtt továbbmenne. Biztos, hogy folytatni kívánja?", "Yes, I really want to reset my password now" => "Igen, tényleg meg akarom változtatni a jelszavam", "Request reset" => "Visszaállítás igénylése", "Your password was reset" => "Jelszó megváltoztatva", @@ -104,7 +106,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..f26be1d129c 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -1,5 +1,5 @@ <?php $TRANSLATIONS = array( -"%s shared »%s« with you" => "%s ha condiviso »%s« con te", +"%s shared »%s« with you" => "%s ha condiviso «%s» con te", "Category type not provided." => "Tipo di categoria non fornito.", "No category to add?" => "Nessuna categoria da aggiungere?", "This category already exists: %s" => "Questa categoria esiste già: %s", @@ -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", @@ -136,7 +135,7 @@ "remember" => "ricorda", "Log in" => "Accedi", "Alternative Logins" => "Accessi alternativi", -"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Ehilà,<br><br>volevo solamente farti sapere che %s ha condiviso »%s« con te.<br><a href=\"%s\">Guarda!</a><br><br>Saluti!", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Ehilà,<br><br>volevo solamente farti sapere che %s ha condiviso «%s» con te.<br><a href=\"%s\">Guarda!</a><br><br>Saluti!", "prev" => "precedente", "next" => "successivo", "Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, ciò potrebbe richiedere del tempo." diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index ccd5e46425c..0f445e7d85e 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -62,7 +62,7 @@ "Share with link" => "URLリンクで共有", "Password protect" => "パスワード保護", "Password" => "パスワード", -"Allow Public Upload" => "パブリックなアップロードを許可", +"Allow Public Upload" => "アップロードを許可", "Email link to person" => "メールリンク", "Send" => "送信", "Set expiration date" => "有効期限を設定", @@ -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 08cf4317d2f..96a3222093f 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -106,7 +106,6 @@ "Access forbidden" => "Zougrëff net erlaabt", "Cloud not found" => "Cloud net fonnt", "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!", -"web services under your control" => "Web-Servicer ënnert denger Kontroll", "Edit categories" => "Kategorien editéieren", "Add" => "Dobäisetzen", "Security Warning" => "Sécherheets-Warnung", 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..fd88b70ed4e 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"%s shared »%s« with you" => "%s partilhado »%s« contigo", "Category type not provided." => "Tipo de categoria não fornecido", "No category to add?" => "Nenhuma categoria para adicionar?", "This category already exists: %s" => "A categoria já existe: %s", @@ -61,6 +62,7 @@ "Share with link" => "Partilhar com link", "Password protect" => "Proteger com palavra-passe", "Password" => "Password", +"Allow Public Upload" => "Permitir Envios Públicos", "Email link to person" => "Enviar o link por e-mail", "Send" => "Enviar", "Set expiration date" => "Especificar data de expiração", @@ -89,6 +91,7 @@ "Request failed!<br>Did you make sure your email/username was right?" => "O pedido falhou! <br> Tem a certeza que introduziu o seu email/username correcto?", "You will receive a link to reset your password via Email." => "Vai receber um endereço para repor a sua password", "Username" => "Nome de utilizador", +"Yes, I really want to reset my password now" => "Sim, tenho a certeza que pretendo redefinir a minha palavra-passe agora.", "Request reset" => "Pedir reposição", "Your password was reset" => "A sua password foi reposta", "To login page" => "Para a página de entrada", @@ -101,7 +104,7 @@ "Help" => "Ajuda", "Access forbidden" => "Acesso interdito", "Cloud not found" => "Cloud nao encontrada", -"web services under your control" => "serviços web sob o seu controlo", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Olá,\n\nApenas para lhe informar que %s partilhou %s consigo.\nVeja-o: %s\n\nCumprimentos!", "Edit categories" => "Editar categorias", "Add" => "Adicionar", "Security Warning" => "Aviso de Segurança", @@ -131,6 +134,7 @@ "remember" => "lembrar", "Log in" => "Entrar", "Alternative Logins" => "Contas de acesso alternativas", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Olá,<br><br>Apenas para lhe informar que %s partilhou »%s« consigo.<br><a href=\"%s\">Consulte-o aqui!</a><br><br>Cumprimentos!", "prev" => "anterior", "next" => "seguinte", "Updating ownCloud to version %s, this may take a while." => "A actualizar o ownCloud para a versão %s, esta operação pode demorar." 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..3369072ba87 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -62,6 +62,7 @@ "Share with link" => "Поделиться с ссылкой", "Password protect" => "Защитить паролем", "Password" => "Пароль", +"Allow Public Upload" => "Разрешить открытую загрузку", "Email link to person" => "Почтовая ссылка на персону", "Send" => "Отправить", "Set expiration date" => "Установить срок доступа", @@ -105,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/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..582296139ec 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -62,6 +62,7 @@ "Share with link" => "Zdieľať cez odkaz", "Password protect" => "Chrániť heslom", "Password" => "Heslo", +"Allow Public Upload" => "Povoliť verejné nahrávanie", "Email link to person" => "Odoslať odkaz emailom", "Send" => "Odoslať", "Set expiration date" => "Nastaviť dátum expirácie", @@ -90,6 +91,7 @@ "Request failed!<br>Did you make sure your email/username was right?" => "Požiadavka zlyhala.<br>Uistili ste sa, že Vaše používateľské meno a email sú správne?", "You will receive a link to reset your password via Email." => "Odkaz pre obnovenie hesla obdržíte e-mailom.", "Username" => "Meno používateľa", +"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?" => "Vaše súbory sú šifrované. Ak nemáte povolený kľúč obnovy, nie je spôsob, ako získať po obnove hesla Vaše dáta. Ak nie ste si isí tým, čo robíte, obráťte sa najskôr na administrátora. Naozaj chcete pokračovať?", "Yes, I really want to reset my password now" => "Áno, želám si teraz obnoviť svoje heslo", "Request reset" => "Požiadať o obnovenie", "Your password was reset" => "Vaše heslo bolo obnovené", @@ -104,7 +106,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..1c84c624674 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -83,7 +83,7 @@ "Error setting expiration date" => "Fel vid sättning av utgångsdatum", "Sending ..." => "Skickar ...", "Email sent" => "E-post skickat", -"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Uppdateringen misslyckades. Rapportera detta problem till <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud-gemenskapen</a>.", +"The update was unsuccessful. Please report this issue to the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Uppdateringen misslyckades. Rapportera detta problem till <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud Community</a>.", "The update was successful. Redirecting you to ownCloud now." => "Uppdateringen lyckades. Du omdirigeras nu till OwnCloud.", "ownCloud password reset" => "ownCloud lösenordsåterställning", "Use the following link to reset your password: {link}" => "Använd följande länk för att återställa lösenordet: {link}", @@ -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..f093a687f82 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.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", @@ -61,6 +62,7 @@ "Share with link" => "使用連結分享", "Password protect" => "密碼保護", "Password" => "密碼", +"Allow Public Upload" => "允許任何人上傳", "Email link to person" => "將連結 email 給別人", "Send" => "寄出", "Set expiration date" => "設置到期日", @@ -87,8 +89,9 @@ "Use the following link to reset your password: {link}" => "請至以下連結重設您的密碼: {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 ." => "重設密碼的連結已經寄至您的電子郵件信箱,如果您過了一段時間還是沒有收到它,請檢查看看它是不是被放到垃圾郵件了,如果還是沒有的話,請聯絡您的 ownCloud 系統管理員。", "Request failed!<br>Did you make sure your email/username was right?" => "請求失敗!<br>您確定填入的電子郵件地址或是帳號名稱是正確的嗎?", -"You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱。", +"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" => "您的密碼已重設", @@ -102,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\n通知您,%s 與您分享了 %s 。\n看一下:%s", "Edit categories" => "編輯分類", "Add" => "增加", "Security Warning" => "安全性警告", @@ -132,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>", "prev" => "上一頁", "next" => "下一頁", "Updating ownCloud to version %s, this may take a while." => "正在將 Owncloud 升級至版本 %s ,這可能需要一點時間。" diff --git a/db_structure.xml b/db_structure.xml index cefb7fc52c9..ef5de653033 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -308,7 +308,7 @@ <name>etag</name> <type>text</type> <default></default> - <notnull>true</notnull> + <notnull>false</notnull> <length>40</length> </field> diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 26e10e5db75..eb7b5e0e1c7 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 06:32+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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Instellings" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "" @@ -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.po b/l10n/af_ZA/files.po index b44ec5ede5b..5e5697087dc 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-04 09:30+0200\n" -"PO-Revision-Date: 2013-07-04 07:31+0000\n" +"POT-Creation-Date: 2013-07-11 02:16+0200\n" +"PO-Revision-Date: 2013-07-11 00:18+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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index dc43f20e15f..cc67bceb2f3 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 06:32+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" @@ -43,21 +43,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "webdienste onder jou beheer" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index 84ae6917bcb..5daaa64d26b 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/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-09 02:04+0200\n" +"PO-Revision-Date: 2013-07-09 00:04+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" @@ -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 "" -#: 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 " @@ -386,73 +386,76 @@ 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 "Wagwoord" -#: 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 "Nuwe wagwoord" -#: 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 -msgid "Use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:108 +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 5f270eee1cc..6a3f4fe16f5 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "تشرين الثاني" msgid "December" msgstr "كانون الاول" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "إعدادات" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "منذ دقيقة" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "قبل ساعة مضت" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} ساعة مضت" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "اليوم" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} يوم سابق" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} شهر مضت" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "سنة مضت" @@ -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,98 +282,98 @@ 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 "تم ارسال البريد الالكتروني" -#: js/update.js:14 +#: js/update.js:17 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 "حصل خطأ في عملية التحديث, يرجى ارسال تقرير بهذه المشكلة الى <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud" @@ -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 "عدل الفئات" @@ -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 6b03f3a8ace..6a87cf17dfe 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "لم يتم رفع أي ملف , خطأ غير معروف" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "تم ترفيع الملفات بنجاح." -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "تم ترفيع جزء من الملفات الذي تريد ترفيعها فقط" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "لم يتم ترفيع أي من الملفات" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "المجلد المؤقت غير موجود" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "خطأ في الكتابة على القرص الصلب" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "لا يوجد مساحة تخزينية كافية" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "مسار غير صحيح." @@ -128,43 +128,43 @@ msgstr "إلغاء" msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "قيد الانتظار" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} موجود مسبقا" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "استبدال" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "اقترح إسم" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "إلغاء" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "استبدل {new_name} بـ {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "تراجع" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "جاري تنفيذ عملية الحذف" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "جاري رفع 1 ملف" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "إسم مجلد غير صحيح. استخدام مصطلح \"Shared\" م msgid "Name" msgstr "اسم" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "حجم" @@ -305,6 +305,10 @@ msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" msgid "Download" msgstr "تحميل" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "إلغاء مشاركة" @@ -327,19 +331,19 @@ msgstr "يرجى الانتظار , جاري فحص الملفات ." msgid "Current scanning" msgstr "الفحص الحالي" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index acd67b816ba..011040b2cce 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 3bfa13436f4..1e305943ecc 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s شارك المجلد %s معك" msgid "%s shared the file %s with you" msgstr "%s شارك الملف %s معك" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "تحميل" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "رفع" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/public.php:83 +#: 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 7c234b5e275..30acd52ba8b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 8af48217dea..983b08ffaac 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "المدير" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "خدمات الشبكة تحت سيطرتك" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "تحميل ملفات ZIP متوقف" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "العودة الى الملفات" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "الملفات المحددة كبيرة جدا ليتم ضغطها في ملف zip" @@ -170,21 +170,21 @@ msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, msgid "PostgreSQL username and/or password not valid" msgstr "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "اعداد اسم مستخدم للمدير" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "اعداد كلمة مرور للمدير" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "الرجاء التحقق من <a href='%s'>دليل التنصيب</a>." diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index ccb9e98dc73..07f7ac78477 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,8 +452,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index d0266647f53..2bcce9e20ab 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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.po b/l10n/be/files.po index 206fa61fc4e..6e1ab1de274 100644 --- a/l10n/be/files.po +++ b/l10n/be/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-11 02:16+0200\n" +"PO-Revision-Date: 2013-07-11 00:18+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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 09f57fe7f72..542805e0dc9 100644 --- a/l10n/be/settings.po +++ b/l10n/be/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-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-07-09 02:04+0200\n" +"PO-Revision-Date: 2013-07-09 00:04+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" @@ -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 "" -#: 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 " @@ -386,73 +386,76 @@ 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 -msgid "Use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:108 +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 99c5aa14672..c11a79a2c7b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Настройки" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "преди 1 минута" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "преди 1 час" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "днес" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "вчера" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "последният месец" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "последната година" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "последните години" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "Редактиране на категориите" @@ -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 538caac0530..daf19a64eca 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Файлът е качен успешно" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Файлът е качен частично" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Фахлът не бе качен" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Липсва временна папка" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Възникна проблем при запис в диска" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Невалидна директория." @@ -128,43 +128,43 @@ msgstr "Изтриване" msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Чакащо" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "препокриване" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "отказ" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "възтановяване" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Име" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Размер" @@ -305,6 +305,10 @@ msgstr "Няма нищо тук. Качете нещо." msgid "Download" msgstr "Изтегляне" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "Файловете се претърсват, изчакайте." msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "файл" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 9e141cb00ee..04f5a523e04 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 c31e6732a5f..e3709fd0c40 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s сподели папката %s с Вас" msgid "%s shared the file %s with you" msgstr "%s сподели файла %s с Вас" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Изтегляне" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Качване" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Спри качването" -#: templates/public.php:83 +#: 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 1c711b410d4..6ebd911d2df 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 d784089510c..53e2e229e84 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Админ" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "уеб услуги под Ваш контрол" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Изтеглянето като ZIP е изключено." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Файловете трябва да се изтеглят един по един." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Назад към файловете" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Избраните файлове са прекалено големи за генерирането на ZIP архив." @@ -171,21 +171,21 @@ msgstr "Проблемната команда беше: \"%s\", име: %s, па msgid "PostgreSQL username and/or password not valid" msgstr "Невалидно PostgreSQL потребителско име и/или парола" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Въведете потребителско име за администратор." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Въведете парола за администратор." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Моля направете повторна справка с <a href='%s'>ръководството за инсталиране</a>." diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 1bfeca86d57..cc3e23e241f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 3927f633a96..c42c4ecd764 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 5bf76871daf..ffc886c8972 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "নভেম্বর" msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "১ মিনিট পূর্বে" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূর্বে" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} ঘন্টা পূর্বে" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "আজ" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} দিন পূর্বে" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "গত মাস" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} মাস পূর্বে" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "গত বছর" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "বছর পূর্বে" @@ -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,98 +282,98 @@ 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 "ই-মেইল পাঠানো হয়েছে" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "ক্যাটেগরি সম্পাদনা" @@ -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 3b6724b0a95..c4cc711dc8a 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "কোন সমস্যা হয় নি, ফাইল আপলোড সুসম্পন্ন হয়েছে।" -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "আপলোড করা ফাইলটি আংশিক আপলোড করা হয়েছে" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "কোন ফাইল আপলোড করা হয় নি" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "ডিস্কে লিখতে ব্যর্থ" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" @@ -128,43 +128,43 @@ msgstr "মুছে" msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "মুলতুবি" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "প্রতিস্থাপন" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "নাম সুপারিশ করুন" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "বাতিল" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "১টি ফাইল আপলোড করা হচ্ছে" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভ msgid "Name" msgstr "রাম" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "আকার" @@ -305,6 +305,10 @@ msgstr "এখানে কিছুই নেই। কিছু আপলো msgid "Download" msgstr "ডাউনলোড" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " @@ -327,19 +331,19 @@ msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে msgid "Current scanning" msgstr "বর্তমান স্ক্যানিং" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 7e29c81daaf..f0cc0cb5ad2 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 0931aa5aac0..18a49ee6401 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগ msgid "%s shared the file %s with you" msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ডাউনলোড" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "আপলোড" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/public.php:83 +#: 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 b788744e13f..57c8f8c1500 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 86fb33b2844..9da5e29288e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "প্রশাসন" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP ডাউনলোড বন্ধ করা আছে।" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "ফাইলগুলো একে একে ডাউনলোড করা আবশ্যক।" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "ফাইলে ফিরে চল" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "নির্বাচিত ফাইলগুলো এতই বৃহৎ যে জিপ ফাইল তৈরী করা সম্ভব নয়।" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 4bf09e5aa91..c2414ce778d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,8 +452,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index d2c640133cf..c7038ee9516 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 fbb8402c9f5..2dc3bf42850 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "" @@ -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 da9a7eb0c1a..f31436d4791 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Veličina" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index d35c8d2db00..1703ef2a994 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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/settings.po b/l10n/bs/settings.po index 6aed06182f3..49240912ef2 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/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-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-07-09 02:04+0200\n" +"PO-Revision-Date: 2013-07-09 00:04+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" @@ -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 "" -#: 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 " @@ -386,73 +386,76 @@ 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 -msgid "Use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:108 +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 6fbdcf45b0b..6077d73ff7e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+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" @@ -139,59 +139,59 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Configuració" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "avui" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "ahir" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "el mes passat" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "l'any passat" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "anys enrere" @@ -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,98 +284,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "L'actualització ha estat incorrecte. Comuniqueu aquest error a <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">la comunitat ownCloud</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "L'actualització ha estat correcte. Ara us redirigim a ownCloud." @@ -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" @@ -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 8ab23d300cc..486a1e09224 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "No s'ha carregat cap fitxer. Error desconegut" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "El fitxer només s'ha carregat parcialment" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "No s'ha carregat cap fitxer" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Falta un fitxer temporal" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Ha fallat en escriure al disc" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Directori no vàlid." @@ -129,43 +130,43 @@ msgstr "Esborra" msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendent" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "substitueix" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugereix un nom" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "cancel·la" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "s'ha substituït {old_name} per {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "desfés" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "executa d'operació d'esborrar" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fitxers pujant" @@ -205,7 +206,7 @@ msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" msgid "Name" msgstr "Nom" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Mida" @@ -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" @@ -306,6 +307,10 @@ msgstr "Res per aquí. Pugeu alguna cosa!" msgid "Download" msgstr "Baixa" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Mida (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Deixa de compartir" @@ -328,19 +333,19 @@ msgstr "S'estan escanejant els fitxers, espereu" msgid "Current scanning" msgstr "Actualment escanejant" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "directori" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "directoris" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "fitxer" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "fitxers" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index eaef93d6870..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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+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,18 +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 "Missing requirements." -msgstr "" +msgstr "Manca de requisits." #: 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 "" +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 8534e26563d..903f22f6d63 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 9e5977b160c..da659bea6b1 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# rogerc, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "la contrasenya és incorrecta. Intenteu-ho de nou." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s ha compartit la carpeta %s amb vós" msgid "%s shared the file %s with you" msgstr "%s ha compartit el fitxer %s amb vós" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Baixa" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Puja" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/public.php:83 +#: 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 4681c1b935e..54d220cfac3 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 fdb8edcebf1..616ce4d4de9 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Administració" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "controleu els vostres serveis web" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "La baixada en ZIP està desactivada." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Els fitxers s'han de baixar d'un en un." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Torna a Fitxers" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip." @@ -171,21 +171,21 @@ msgstr "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya PostgreSQL no vàlids" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Establiu un nom d'usuari per l'administrador." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Establiu una contrasenya per l'administrador." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Comproveu les <a href='%s'>guies d'instal·lació</a>." diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 65bdf73f5be..8957bebad3e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -454,8 +454,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Useu aquesta adreça per <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">accedir als fitxers via WebDAV</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 3cec288bb78..b1545557973 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 9138ea01014..6089505b77c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,59 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Nastavení" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "dnes" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "včera" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "před měsíci" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "minulý rok" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "před lety" @@ -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,98 +284,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">evidence chyb ownCloud</a>" -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Aktualizace byla úspěšná. Přesměrovávám na ownCloud." @@ -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" @@ -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 2b6ee0294f6..b58b60a7a6e 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Soubor nebyl odeslán. Neznámá chyba" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Soubor byl odeslán úspěšně" -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Soubor byl odeslán pouze částečně" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Žádný soubor nebyl odeslán" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Chybí adresář pro dočasné soubory" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Zápis na disk selhal" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Nedostatek dostupného úložného prostoru" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Neplatný adresář" @@ -130,43 +130,43 @@ msgstr "Smazat" msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Nevyřízené" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "nahradit" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "navrhnout název" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "zrušit" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "nahrazeno {new_name} s {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "zpět" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "provést smazání" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "odesílá se 1 soubor" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "soubory se odesílají" @@ -206,7 +206,7 @@ msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřn msgid "Name" msgstr "Název" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Velikost" @@ -307,6 +307,10 @@ msgstr "Žádný obsah. Nahrajte něco." msgid "Download" msgstr "Stáhnout" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Zrušit sdílení" @@ -329,19 +333,19 @@ msgstr "Soubory se prohledávají, prosím čekejte." msgid "Current scanning" msgstr "Aktuální prohledávání" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "soubor" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "soubory" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 1d95d95e25f..32b3711e2ca 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 21:40+0000\n" +"Last-Translator: Honza K. <honza889@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -90,7 +90,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "osobní nastavení" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -145,11 +145,11 @@ msgstr "" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Staré přihlašovací heslo" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Aktuální přihlašovací heslo" #: templates/settings-personal.php:35 msgid "Update Private Key Password" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 99080f64685..9dcdf335398 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 0043decb9de..ac0cda9e29c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s s Vámi sdílí složku %s" msgid "%s shared the file %s with you" msgstr "%s s Vámi sdílí soubor %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Stáhnout" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Odeslat" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/public.php:83 +#: 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 758837aa505..0db57763e1a 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 590145f5ff4..679e2f98cfa 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Administrace" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "služby webu pod Vaší kontrolou" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Stahování ZIPu je vypnuto." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Soubory musí být stahovány jednotlivě." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Zpět k souborům" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Vybrané soubory jsou příliš velké pro vytvoření zip souboru." @@ -171,21 +171,21 @@ msgstr "Podezřelý příkaz byl: \"%s\", jméno: %s, heslo: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Uživatelské jméno, či heslo PostgreSQL není platné" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Zadejte uživatelské jméno správce." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Zadejte heslo správce." -#: setup.php:198 +#: setup.php:184 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é." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Zkonzultujte, prosím, <a href='%s'>průvodce instalací</a>." diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index b94f900a6d9..c5218c7632d 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Honza K. <honza889@gmail.com>, 2013 # Tomáš Chvátal <tomas.chvatal@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Honza K. <honza889@gmail.com>\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -453,8 +454,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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ů" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Použijte <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">tuto adresu pro přístup k vašim souborům přes WebDAV</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 865a34ee5df..758ab2ce841 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 f44f0d9603e..d25a3dc653c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -138,59 +138,59 @@ msgstr "Tachwedd" msgid "December" msgstr "Rhagfyr" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 munud yn ôl" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} munud yn ôl" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 awr yn ôl" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} awr yn ôl" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "heddiw" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "ddoe" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} diwrnod yn ôl" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} mis yn ôl" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "y llynedd" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "blwyddyn yn ôl" @@ -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,98 +283,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Methodd y diweddariad. Adroddwch y mater hwn i <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">gymuned ownCloud</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr." @@ -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" @@ -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 b280b5455b9..10ddd11ed45 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 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:71 msgid "No file was uploaded" msgstr "Ni lwythwyd ffeil i fyny" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Plygell dros dro yn eisiau" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Methwyd ysgrifennu i'r ddisg" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Dim digon o le storio ar gael" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Cyfeiriadur annilys." @@ -128,43 +128,43 @@ msgstr "Dileu" msgid "Rename" msgstr "Ailenwi" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "I ddod" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} yn bodoli'n barod" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "amnewid" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "awgrymu enw" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "diddymu" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "newidiwyd {new_name} yn lle {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "dadwneud" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "cyflawni gweithred dileu" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ffeil yn llwytho i fyny" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ffeiliau'n llwytho i fyny" @@ -204,7 +204,7 @@ msgstr "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Ownclo msgid "Name" msgstr "Enw" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Maint" @@ -305,6 +305,10 @@ msgstr "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!" msgid "Download" msgstr "Llwytho i lawr" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Dad-rannu" @@ -327,19 +331,19 @@ msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." msgid "Current scanning" msgstr "Sganio cyfredol" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index 7d5adeb8a78..f4b7d91df05 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 7d6e39539f7..fb99f822960 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "Rhannodd %s blygell %s â chi" msgid "%s shared the file %s with you" msgstr "Rhannodd %s ffeil %s â chi" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Llwytho i lawr" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Llwytho i fyny" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/public.php:83 +#: 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 43df1cb186b..1c01c7586bc 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 d12d31ee5e1..f9bea70a48e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Gweinyddu" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "gwasanaethau gwe a reolir gennych" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Mae llwytho ZIP wedi ei ddiffodd." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Mae angen llwytho ffeiliau i lawr fesul un." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Nôl i Ffeiliau" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip." @@ -170,21 +170,21 @@ msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Enw a/neu gyfrinair PostgreSQL annilys" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Creu enw defnyddiwr i'r gweinyddwr." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Gosod cyfrinair y gweinyddwr." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Gwiriwch y <a href='%s'>canllawiau gosod</a> eto." diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 3394892a68a..bcbd833de90 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index 7271157e5de..f189c759fc9 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 9ed55ab32c3..a15063de00e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -139,59 +139,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "i dag" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "i går" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "sidste måned" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "måneder siden" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "sidste år" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "år siden" @@ -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,98 +284,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownClouds community</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud." @@ -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" @@ -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 f440670111e..5715348abda 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil blev uploadet. Ukendt fejl." -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Filen blev kun delvist uploadet." -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Ingen fil uploadet" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Manglende midlertidig mappe." -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Fejl ved skrivning til disk." -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Der er ikke nok plads til rådlighed" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -129,43 +129,43 @@ msgstr "Slet" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Afventer" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "erstat" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "fortryd" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "udfør slet operation" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fil uploades" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "uploader filer" @@ -205,7 +205,7 @@ msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" msgid "Name" msgstr "Navn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Størrelse" @@ -306,6 +306,10 @@ msgstr "Her er tomt. Upload noget!" msgid "Download" msgstr "Download" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Fjern deling" @@ -328,19 +332,19 @@ msgstr "Filerne bliver indlæst, vent venligst." msgid "Current scanning" msgstr "Indlæser" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "fil" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "filer" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 0822a3fbaee..a8e26e78064 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 e0e89dbd5b8..d78aa560dd4 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s delte mappen %s med dig" msgid "%s shared the file %s with you" msgstr "%s delte filen %s med dig" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Download" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Upload" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/public.php:83 +#: 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 8e26f0f1c1f..c142518b523 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 900335a804f..fee71596e6c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Webtjenester under din kontrol" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP-download er slået fra." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Filer skal downloades en for en." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Tilbage til Filer" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "De markerede filer er for store til at generere en ZIP-fil." @@ -171,21 +171,21 @@ msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL brugernavn og/eller kodeord er ikke gyldigt." -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Angiv et admin brugernavn." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Angiv et admin kodeord." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 02620a5a838..a5a878610af 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2013 # Ole Holm Frandsen <froksen@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>\n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -453,8 +454,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Anvend denne adresse til at <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">tilgå dine filer via WebDAV</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 376fd0238e6..8d20b0d6241 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 a6cacb3fc75..48de31d0513 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -7,14 +7,15 @@ # Marcel Kühlhorn <susefan93@gmx.de>, 2013 # JamFX <niko@nik-o-mat.de>, 2013 # ninov <ninovdl@ymail.com>, 2013 +# Pwnicorn <pwnicorndev@gmail.com>, 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: Pwnicorn <pwnicorndev@gmail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -142,59 +143,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "Heute" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "Gestern" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "Vor Jahren" @@ -230,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" @@ -251,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" @@ -287,98 +288,98 @@ msgstr "Passwortschutz" msgid "Password" msgstr "Passwort" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Öffentliches Hochladen erlauben" -#: 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" -#: js/update.js:14 +#: js/update.js:17 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 "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud Community</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Das Update war erfolgreich. Du wirst nun zu ownCloud weitergeleitet." @@ -470,7 +471,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 +482,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" @@ -616,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/files.po b/l10n/de/files.po index b528b3c2b6c..f9aed195dc7 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -5,13 +5,15 @@ # Translators: # Marcel Kühlhorn <susefan93@gmx.de>, 2013 # ninov <ninovdl@ymail.com>, 2013 +# Pwnicorn <pwnicorndev@gmail.com>, 2013 +# kabum <uu.kabum@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: kabum <uu.kabum@gmail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,54 +31,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:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Ungültiges Merkmal" -#: ajax/upload.php:55 +#: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -130,43 +132,43 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "Namen vorschlagen" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} ersetzt durch {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -206,7 +208,7 @@ msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vor msgid "Name" msgstr "Name" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Größe" @@ -233,7 +235,7 @@ msgstr "{count} Dateien" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -307,6 +309,10 @@ msgstr "Alles leer. Lade etwas hoch!" msgid "Download" msgstr "Herunterladen" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Größe (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Freigabe aufheben" @@ -329,19 +335,19 @@ msgstr "Dateien werden gescannt, bitte warten." msgid "Current scanning" msgstr "Scanne" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "Verzeichnis" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "Verzeichnisse" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "Datei" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "Dateien" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index a1ca99ba267..aa7ff7b7d98 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -6,13 +6,15 @@ # iLennart21 <a12s34d56f78@live.com>, 2013 # Stephan Köninger <mail@stekoe.de>, 2013 # ninov <ninovdl@ymail.com>, 2013 +# Pwnicorn <pwnicorndev@gmail.com>, 2013 +# kabum <uu.kabum@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"POT-Creation-Date: 2013-07-12 02:03+0200\n" +"PO-Revision-Date: 2013-07-11 12:50+0000\n" +"Last-Translator: kabum <uu.kabum@gmail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,7 +56,7 @@ msgstr "Passwort des privaten Schlüssels erfolgreich aktualisiert" msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Eventuell war das alte Passwort falsch." #: files/error.php:7 msgid "" @@ -62,18 +64,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 "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen." #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Fehlende Vorraussetzungen" #: 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 "" +msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert ist und die OpenSSL-PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung wurde vorerst deaktiviert." #: js/settings-admin.js:11 msgid "Saving..." @@ -83,11 +85,11 @@ msgstr "Speichern..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "Ihr privater Schlüssel ist ungültig! Eventuell wurde Ihr Passwort von außerhalb geändert." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Du kannst den privaten Schlüssel ändern und zwar in deinem" #: templates/invalid_private_key.php:7 msgid "personal settings" @@ -100,11 +102,11 @@ msgstr "Verschlüsselung" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Wiederherstellungsschlüssel aktivieren (ermöglicht das Wiederherstellen von Dateien, falls das Passwort vergessen wurde):" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Wiederherstellungsschlüssel-Passwort" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -116,15 +118,15 @@ msgstr "Deaktiviert" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Wiederherstellungsschlüssel-Passwort ändern:" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Altes Wiederherstellungsschlüssel-Passwort" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Neues Wiederherstellungsschlüssel-Passwort" #: templates/settings-admin.php:53 msgid "Change Password" @@ -132,17 +134,17 @@ msgstr "Passwort ändern" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Ihr Passwort für ihren privaten Schlüssel stimmt nicht mehr mit ihrem Loginpasswort überein." #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Setzen Sie ihr altes Passwort für ihren privaten Schlüssel auf ihr aktuelles Login-Passwort" #: 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 "Wenn Sie Ihr altes Passwort vergessen haben, können Sie den Administrator bitten, Ihre Daten wiederherzustellen." #: templates/settings-personal.php:24 msgid "Old log-in password" @@ -154,17 +156,17 @@ msgstr "Aktuelles Passwort" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Passwort für den privaten Schlüssel aktualisieren" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Passwortwiederherstellung aktivvieren:" #: 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 "Wenn Sie diese Option aktivieren, können Sie Ihre verschlüsselten Dateien wiederherstellen, falls Sie Ihr Passwort vergessen" #: templates/settings-personal.php:63 msgid "File recovery settings updated" @@ -172,4 +174,4 @@ msgstr "Einstellungen zur Wiederherstellung von Dateien wurden aktualisiert" #: templates/settings-personal.php:64 msgid "Could not update file recovery" -msgstr "" +msgstr "Dateiwiederherstellung konnte nicht aktualisiert werden" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index f3cdeba0bfd..db034af1308 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 77223a57f7a..8d881be209d 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Pwnicorn <pwnicorndev@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Pwnicorn <pwnicorndev@gmail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s hat den Ordner %s mit Dir geteilt" msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Dir geteilt" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Download" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:83 +#: 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 15dd9ceed08..091b6a36bd6 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 ca9e8ded5fb..19e7d35f390 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -45,21 +45,21 @@ msgstr "Administration" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Web-Services unter Deiner Kontrolle" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." @@ -172,21 +172,21 @@ msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Setze Administrator Benutzername." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Bitte prüfe die <a href='%s'>Installationsanleitungen</a>." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index de687856b6b..826b6bd5adb 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -6,14 +6,15 @@ # arkascha <foss@christian-reiner.info>, 2013 # Mario Siegmann <mario_siegmann@web.de>, 2013 # ninov <ninovdl@ymail.com>, 2013 +# Pwnicorn <pwnicorndev@gmail.com>, 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Pwnicorn <pwnicorndev@gmail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -456,8 +457,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Verwenden Sie diese Adresse, um <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">via WebDAV auf Ihre Dateien zuzugreifen</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 50dc8c9c5f2..d4dfbb4d473 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -4,13 +4,16 @@ # # Translators: # Marcel Kühlhorn <susefan93@gmx.de>, 2013 +# Mario Siegmann <mario_siegmann@web.de>, 2013 +# Pwnicorn <pwnicorndev@gmail.com>, 2013 +# kabum <uu.kabum@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,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" @@ -60,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" @@ -343,7 +346,7 @@ msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfall tra #: templates/settings.php:101 msgid "Internal Username" -msgstr "" +msgstr "Interner Benutzername" #: templates/settings.php:102 msgid "" @@ -359,15 +362,15 @@ msgid "" "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 "" +msgstr "Standardmäßig wird der interne Benutzername aus der UUID erstellt. Dies stellt sicher, daß der Name einmalig ist und keine Zeichen umgewandelt werden müssen. Für den internen Benutzernamen sind nur die folgenden Zeichen zulässig: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden durch ihr ASCII-Äquivalent ersetzt oder ausgelassen. Bei Kollisionen wird eine Nummer hinzugefügt/erhöht. Der interne Benutzername wird verwendet, um einen Benutzer intern zu identifizieren. Er ist auch der Standardname für das Benutzerverzeichnis in ownCloud und Teil von Remote-URLs, unter anderem für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten geändert werden. Um ein ähnliches Verhalten wie in ownCloud 5 zu erreichen, geben Sie das Benutzer-Anzeige-Namen-Attribut in das folgende Feld ein. Änderungen betreffen nur neu angelegte LDAP-Benutzer." #: templates/settings.php:103 msgid "Internal Username Attribute:" -msgstr "" +msgstr "Attribut für interne Benutzernamen:" #: templates/settings.php:104 msgid "Override UUID detection" -msgstr "" +msgstr "UUID-Erkennung überschreiben" #: templates/settings.php:105 msgid "" @@ -378,15 +381,15 @@ 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 das UUID-Attribut automatisch. Das UUID-Attribut wird benutzt, um LDAP-Benutzer und Gruppen eindeutig zu identifizieren. Außerdem wird der interne Benutzername basierend auf der UUID erstellt, wenn nicht anders angegeben. Sie können dieses Verhalten ändern und ein Attribut Ihrer Wahl angeben. Sie müssen sichergehen, dass das Attribut Ihrer Wahl auf Benutzer und Gruppen anwendbar und einzigartig ist. Für das Standardverhalten lassen Sie das Feld leer. Änderungen betreffen nur neu angelegte LDAP-Benutzer und Gruppen." #: templates/settings.php:106 msgid "UUID Attribute:" -msgstr "" +msgstr "UUID-Attribut:" #: templates/settings.php:107 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "LDAP-Benutzernamenzuordnung" #: templates/settings.php:108 msgid "" @@ -401,15 +404,15 @@ msgid "" "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 "" +msgstr "OwnCloud nutzt die Benutzernamen, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung vom OwnCloud-Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch OwnCloud gefunden. Der interne OwnCloud-Name, wird in der gesamten OwnCloud verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste in der OwnCloud. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Lösche niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung." #: 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/user_webdavauth.po b/l10n/de/user_webdavauth.po index 47b68e0fd1f..b428d9cdc89 100644 --- a/l10n/de/user_webdavauth.po +++ b/l10n/de/user_webdavauth.po @@ -6,14 +6,15 @@ # Mirodin <blobbyjj@ymail.com>, 2012 # Marcel Kühlhorn <susefan93@gmx.de>, 2013 # AndryXY <mibunrui@gmx.de>, 2013 +# Pwnicorn <pwnicorndev@gmail.com>, 2013 # seeed <seeed@freenet.de>, 2012 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-12 02:03+0200\n" +"PO-Revision-Date: 2013-07-11 07:50+0000\n" +"Last-Translator: Pwnicorn <pwnicorndev@gmail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +28,7 @@ msgstr "WebDAV Authentifikation" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL:" #: templates/settings.php:7 msgid "" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 249b57410d1..b065af42412 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: SteinQuadrat\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -143,59 +143,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "Heute" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "Gestern" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "Vor Jahren" @@ -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,98 +288,98 @@ msgstr "Passwortschutz" msgid "Password" msgstr "Passwort" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" -msgstr "Erlaube öffentliches hochladen" +msgstr "Öffentliches Hochladen erlauben" -#: 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" -#: js/update.js:14 +#: js/update.js:17 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 "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud Community</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet." @@ -417,7 +417,7 @@ 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 "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keinen Weg geben, um Ihre Daten wieder zu bekommen, nachdem Ihr Passwort zurückgesetzt wurde. Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?" +msgstr "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keine Möglichkeit geben, um Ihre Daten wiederzubekommen, nachdem Ihr Passwort zurückgesetzt wurde. Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" @@ -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" @@ -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 648e1db33be..9f756d61867 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -7,14 +7,16 @@ # SteinQuadrat, 2013 # I Robot <owncloud-bot@tmit.eu>, 2013 # Marcel Kühlhorn <susefan93@gmx.de>, 2013 +# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2013 # Mirodin <blobbyjj@ymail.com>, 2013 +# kabum <uu.kabum@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 10:40+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,61 +27,61 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits" +msgstr "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits." #: ajax/move.php:27 ajax/move.php:30 #, php-format 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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Keine Datei hochgeladen. Unbekannter Fehler" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Die Datei konnte nur teilweise übertragen werden" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Keine Datei konnte übertragen werden." -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Kein temporärer Ordner vorhanden" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Fehler beim Schreiben auf die Festplatte" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -133,43 +135,43 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "Namen vorschlagen" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -209,7 +211,7 @@ msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vor msgid "Name" msgstr "Name" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Größe" @@ -310,6 +312,10 @@ msgstr "Alles leer. Laden Sie etwas hoch!" msgid "Download" msgstr "Herunterladen" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Größe (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Freigabe aufheben" @@ -332,19 +338,19 @@ msgstr "Dateien werden gescannt, bitte warten." msgid "Current scanning" msgstr "Scanne" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "Verzeichnis" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "Verzeichnisse" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "Datei" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "Dateien" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index e69754efc77..ca88a9a2398 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 09:20+0000\n" +"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,18 +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 "Missing requirements." -msgstr "" +msgstr "Fehlende Voraussetzungen" #: 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 "" +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..." @@ -87,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" @@ -158,7 +158,7 @@ msgstr "Das Passwort des privaten Schlüssels aktualisieren" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "Passwort-Wiederherstellung aktivieren:" +msgstr "Die Passwort-Wiederherstellung aktivieren:" #: templates/settings-personal.php:47 msgid "" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 786101ca432..642dd77045b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 dca2954cde5..0e204f015a9 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Das Passwort ist falsch. Bitte versuchen Sie es erneut." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s hat den Ordner %s mit Ihnen geteilt" msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Herunterladen" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:83 +#: 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 a4ce4fbb3ab..2300c9f4bae 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 22f47921c01..885e50c2b19 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,21 +44,21 @@ msgstr "Administrator" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Web-Services unter Ihrer Kontrolle" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Der ZIP-Download ist deaktiviert." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." @@ -171,21 +171,21 @@ msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Setze Administrator Benutzername." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>." diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 0ded3edfd0e..19a2f8ba76d 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -8,13 +8,14 @@ # Mario Siegmann <mario_siegmann@web.de>, 2013 # traductor <transifex-2.7.mensaje@spamgourmet.com>, 2013 # Mirodin <blobbyjj@ymail.com>, 2013 +# kabum <uu.kabum@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -457,8 +458,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Verwenden Sie diese Adresse, um <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">auf ihre Dateien per WebDAV zuzugreifen</a>." #: templates/users.php:21 msgid "Login Name" @@ -470,7 +474,7 @@ msgstr "Erstellen" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "Admin-Paswort-Wiederherstellung" +msgstr "Admin-Passwort-Wiederherstellung" #: templates/users.php:37 templates/users.php:38 msgid "" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 88cd8acc44b..30f8587f4f1 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -5,14 +5,16 @@ # Translators: # a.tangemann <a.tangemann@web.de>, 2013 # Marcel Kühlhorn <susefan93@gmx.de>, 2013 +# Mario Siegmann <mario_siegmann@web.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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Mario Siegmann <mario_siegmann@web.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 +24,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 +64,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 +367,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 +382,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 +390,7 @@ msgstr "UUID-Attribut:" #: templates/settings.php:107 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "LDAP-Benutzernamenzuordnung" #: templates/settings.php:108 msgid "" @@ -403,15 +405,15 @@ msgid "" "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 "" +msgstr "OwnCloud nutzt die Benutzernamen, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung vom OwnCloud-Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch OwnCloud gefunden. Der interne OwnCloud-Name, wird in der gesamten OwnCloud verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste in der OwnCloud. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." #: 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/el/core.po b/l10n/el/core.po index d04be94c875..b38f6ed0360 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+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" @@ -144,59 +144,59 @@ msgstr "Νοέμβριος" msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "σήμερα" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "χτες" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "χρόνια πριν" @@ -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,98 +289,98 @@ 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 απεστάλη " -#: js/update.js:14 +#: js/update.js:17 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 "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ στείλτε αναφορά στην <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">κοινότητα ownCloud</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud." @@ -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 "Επεξεργασία κατηγοριών" @@ -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 89acbf734f1..da5d11676d2 100644 --- a/l10n/el/files.po +++ b/l10n/el/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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς" -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Το αρχείο εστάλει μόνο εν μέρει" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Κανένα αρχείο δεν στάλθηκε" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Λείπει ο προσωρινός φάκελος" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Αποτυχία εγγραφής στο δίσκο" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." @@ -129,43 +129,43 @@ msgstr "Διαγραφή" msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Εκκρεμεί" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "αντικατέστησε" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "συνιστώμενο όνομα" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "ακύρωση" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "αντικαταστάθηκε το {new_name} με {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "εκτέλεση της διαδικασίας διαγραφής" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "αρχεία ανεβαίνουν" @@ -205,7 +205,7 @@ msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κο msgid "Name" msgstr "Όνομα" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Μέγεθος" @@ -306,6 +306,10 @@ msgstr "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!" msgid "Download" msgstr "Λήψη" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" @@ -328,19 +332,19 @@ msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμέν msgid "Current scanning" msgstr "Τρέχουσα ανίχνευση" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "κατάλογος" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "κατάλογοι" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "αρχείο" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "αρχεία" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index e6e7f43c666..998ee63a198 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 6840ade874a..222efb7d98f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" msgid "%s shared the file %s with you" msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Λήψη" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Μεταφόρτωση" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/public.php:83 +#: 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 2005318227a..eb566810714 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 77e1ccba26b..e0b81349e74 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Διαχειριστής" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Η λήψη ZIP απενεργοποιήθηκε." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Τα αρχεία πρέπει να ληφθούν ένα-ένα." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Πίσω στα Αρχεία" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip." @@ -171,21 +171,21 @@ msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\", ονο msgid "PostgreSQL username and/or password not valid" msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της PostgreSQL" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Εισάγετε όνομα χρήστη διαχειριστή." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Εισάγετε συνθηματικό διαχειριστή." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Ελέγξτε ξανά τις <a href='%s'>οδηγίες εγκατάστασης</a>." diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 0a4b4c5e5c4..8f707ad037f 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: Efstathios Iosifidis <iefstathios@gmail.com>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -457,8 +457,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 253845aea81..824fba4f65f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 f6b7089c651..062c140efda 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "Download" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index ed7f74f6191..b146ece8cd0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -40,18 +40,18 @@ msgstr "%s shared the folder %s with you" msgid "%s shared the file %s with you" msgstr "%s shared the file %s with you" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Download" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: 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 b78612938d0..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-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+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" @@ -43,7 +43,7 @@ msgstr "" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "web services under your control" #: files.php:210 msgid "ZIP download is turned off." diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index 248b7b6182b..1b6740bec83 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/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-09 02:04+0200\n" +"PO-Revision-Date: 2013-07-09 00:04+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" @@ -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 "" -#: 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 " @@ -386,73 +386,76 @@ 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 "Passcode" -#: 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 -msgid "Use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:108 +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 39521193eab..2ce7f2bf90f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -139,59 +139,59 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Agordo" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "antaŭ {minutes} minutoj" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "antaŭ {hours} horoj" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "hodiaŭ" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "antaŭ {days} tagoj" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "lastamonate" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "antaŭ {months} monatoj" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "lastajare" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "jaroj antaŭe" @@ -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,98 +284,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownClouda komunumo</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La ĝisdatigo estis sukcesa. Alidirektante nun al ownCloud." @@ -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" @@ -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 a05bac1114c..16958dfa775 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Neniu dosiero alŝutiĝis. Nekonata eraro." -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 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:71 msgid "No file was uploaded" msgstr "Neniu dosiero alŝutiĝis." -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Mankas provizora dosierujo." -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Malsukcesis skribo al disko" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Ne haveblas sufiĉa memoro" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Nevalida dosierujo." @@ -129,43 +129,43 @@ msgstr "Forigi" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Traktotaj" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugesti nomon" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "malfari" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "plenumi forigan operacion" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "dosieroj estas alŝutataj" @@ -205,7 +205,7 @@ msgstr "Nevalida dosierujnomo. Uzo de “Shared” rezervatas de Owncloud." msgid "Name" msgstr "Nomo" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Grando" @@ -306,6 +306,10 @@ msgstr "Nenio estas ĉi tie. Alŝutu ion!" msgid "Download" msgstr "Elŝuti" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Malkunhavigi" @@ -328,19 +332,19 @@ msgstr "Dosieroj estas skanataj, bonvolu atendi." msgid "Current scanning" msgstr "Nuna skano" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "dosiero" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "dosieroj" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 0a8b013786f..0bc731dddc6 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 d2e80e9eed1..16b0cbadb4e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s kunhavigis la dosierujon %s kun vi" msgid "%s shared the file %s with you" msgstr "%s kunhavigis la dosieron %s kun vi" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Elŝuti" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Alŝuti" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/public.php:83 +#: 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 26ec4d5c756..2bb018bb5b7 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 1b5c7a3751f..d5e6c4b3db0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Administranto" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "TTT-servoj regataj de vi" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP-elŝuto estas malkapabligita." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Dosieroj devas elŝutiĝi unuope." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Reen al la dosieroj" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "La elektitaj dosieroj tro grandas por genero de ZIP-dosiero." @@ -171,21 +171,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "La uzantonomo de PostgreSQL aŭ la pasvorto ne validas" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Starigi administran uzantonomon." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Starigi administran pasvorton." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, 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>." diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 4664e82e192..35de0b4aa65 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,8 +452,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 98ebab9995c..aaa9c8de38d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 1000b828d50..d8e3f09075f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: saskarip <saskarip@gmail.com>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -144,59 +144,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Ajustes" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "hoy" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "ayer" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "el mes pasado" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "hace meses" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "el año pasado" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "hace años" @@ -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,98 +289,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "La actualización ha fracasado. Por favor, informe de este problema a la <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">Comunidad de ownCloud</ a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora." @@ -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" @@ -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 380c72da996..fff4273d714 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -6,14 +6,15 @@ # Art O. Pal <artopal@fastmail.fm>, 2013 # ggam <ggam@brainleakage.com>, 2013 # mikelanabitarte <mikelanabitarte@gmail.com>, 2013 +# qdneren <renanqd@yahoo.com.mx>, 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 10:40+0000\n" -"Last-Translator: mikelanabitarte <mikelanabitarte@gmail.com>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: qdneren <renanqd@yahoo.com.mx>\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" @@ -31,54 +32,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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "No se subió ningún archivo. Error desconocido" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "El archivo subido fue sólo subido parcialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "No se subió ningún archivo" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Falta la carpeta temporal" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Falló al escribir al disco" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Directorio inválido." @@ -132,43 +133,43 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "deshacer" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Realizar operación de borrado" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "subiendo archivos" @@ -208,7 +209,7 @@ msgstr "Nombre de carpeta no es válido. El uso de \"Shared\" está reservado po msgid "Name" msgstr "Nombre" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Tamaño" @@ -309,6 +310,10 @@ msgstr "No hay nada aquí. ¡Suba algo!" msgid "Download" msgstr "Descargar" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Tamaño (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Dejar de compartir" @@ -331,19 +336,19 @@ msgstr "Los archivos están siendo escaneados, por favor espere." msgid "Current scanning" msgstr "Escaneo actual" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "carpeta" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "carpetas" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "archivo" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "archivos" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index ad8f78863b7..fbcbc4e2fe1 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -6,6 +6,7 @@ # 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 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"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" @@ -65,18 +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 "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar la contraseña de su clave privada en sus opciones personales para recuperar el acceso a sus ficheros." +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 "Missing requirements." -msgstr "" +msgstr "Requisitos incompletos." #: 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 "" +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..." @@ -123,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 02e039f73e1..02fca2d7122 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 6b28c9cbe1d..f9e4a4856f8 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "La contraseña introducida es errónea. Inténtelo de nuevo." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s compartió la carpeta %s contigo" msgid "%s shared the file %s with you" msgstr "%s compartió el fichero %s contigo" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Descargar" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Subir" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:83 +#: 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 f8f5c9acdf8..048177b1348 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 e0ddadc6f77..6c4bff97655 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+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" @@ -44,21 +44,21 @@ msgstr "Administración" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Servicios web bajo su control" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Volver a Archivos" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." @@ -171,21 +171,21 @@ msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Usuario y/o contraseña de PostgreSQL no válidos" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Configurar un nombre de usuario del administrador" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Configurar la contraseña del administrador." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, 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>." diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 81c4fc1fab9..47d1ee63037 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -5,15 +5,16 @@ # Translators: # Art O. Pal <artopal@fastmail.fm>, 2013 # ggam <ggam@brainleakage.com>, 2013 +# qdneren <renanqd@yahoo.com.mx>, 2013 # saskarip <saskarip@gmail.com>, 2013 # scambra <sergio@programatica.es>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: qdneren <renanqd@yahoo.com.mx>\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" @@ -456,8 +457,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Utilice esta dirección para<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">acceder a sus archivos a través de WebDAV</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index cedba92b305..c8536010e72 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 39ffb3e4992..196cf120e30 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,59 +138,59 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Configuración" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "hace {hours} horas" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "hoy" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "ayer" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "el mes pasado" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "meses atrás" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "el año pasado" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "años atrás" @@ -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,98 +283,98 @@ msgstr "Proteger con contraseña " msgid "Password" msgstr "Contraseña" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Permitir Subida Pública" -#: 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" -#: js/update.js:14 +#: js/update.js:17 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 "La actualización no pudo ser completada. Por favor, reportá el inconveniente a la comunidad <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La actualización fue exitosa. Estás siendo redirigido a ownCloud." @@ -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" @@ -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 3a003320ca0..76f45def786 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -4,13 +4,14 @@ # # Translators: # Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013 +# cjtess <claudio.tessone@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,54 +29,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:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "No fue posible crear el directorio de subida." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Token Inválido" -#: ajax/upload.php:55 +#: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" msgstr "El archivo no fue subido. Error desconocido" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "El archivo fue subido parcialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "No se subió ningún archivo " -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Error en la carpera temporal" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Error al escribir en el disco" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "No hay suficiente capacidad de almacenamiento" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Directorio invalido." @@ -129,43 +130,43 @@ msgstr "Borrar" msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendientes" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "deshacer" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Eliminar" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Subiendo archivos" @@ -205,7 +206,7 @@ msgstr "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownC msgid "Name" msgstr "Nombre" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Tamaño" @@ -232,7 +233,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" @@ -306,6 +307,10 @@ msgstr "No hay nada. ¡Subí contenido!" msgid "Download" msgstr "Descargar" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Tamaño (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Dejar de compartir" @@ -328,19 +333,19 @@ msgstr "Se están escaneando los archivos, por favor esperá." msgid "Current scanning" msgstr "Escaneo actual" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "directorio" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "directorios" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "archivo" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "archivos" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index f52bef53bf0..81b86005639 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-12 02:03+0200\n" +"PO-Revision-Date: 2013-07-11 16:40+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,18 +60,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 "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde fuera del sistema de ownCloud (por ej. desde tu cuenta de sistema). Podés actualizar tu clave privada en tus opciones personales, para recuperar el acceso a sus archivos." #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Requisitos incompletos." #: 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 "" +msgstr "Por favor, asegurate 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 encriptación fue deshabilitada." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index e768d7eed39..8704b5c8319 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -42,21 +42,21 @@ msgstr "Error al configurar el almacenamiento de Google Drive" msgid "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "<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." +msgstr "<b>Advertencia:</b> El cliente smb \"smbclient\" no está instalado. Montar archivos CIFS/SMB no es posible. Por favor, pedile al administrador de tu sistema que lo instale." #: 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 "<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." +msgstr "<b>Advertencia:</b> El soporte de FTP en PHP no está instalado. Montar archivos FTP no es posible. Por favor, pedile al administrador de tu sistema que lo instale." #: 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 "<b>Advertencia:</b> El soporte de Curl de PHP no está activado ni instalado. Montar servicios ownCloud, WebDAV y/o GoogleDrive no será posible. Pedile al administrador del sistema que lo instale." +msgstr "<b>Advertencia:</b> El soporte de Curl de PHP no está activo ni instalado. Montar servicios ownCloud, WebDAV y/o GoogleDrive no será posible. Pedile al administrador del sistema que lo instale." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 6894fbe0dc1..cd4b27ceb21 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# cjtess <claudio.tessone@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "La contraseña no es correcta. Probá de nuevo." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s compartió la carpeta %s con vos" msgid "%s shared the file %s with you" msgstr "%s compartió el archivo %s con vos" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Descargar" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Subir" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:83 +#: 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 3c0f24f477e..d9dd09148dd 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 5b8d4b7e5cf..a6abbcdfcb4 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Administración" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "servicios web que controlás" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "La descarga en ZIP está desactivada." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados de a uno." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Volver a archivos" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo zip." @@ -171,21 +171,21 @@ msgstr "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\ msgid "PostgreSQL username and/or password not valid" msgstr "Nombre de usuario o contraseña de PostgradeSQL no válido." -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Configurar un nombre de administrador" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Configurar una palabra clave de administrador" -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, 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>." diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index e875c2e210f..8866ea485c2 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -454,8 +454,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Usá esta dirección para <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">acceder a tus archivos a través de WebDAV</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 9995bb00e3b..30365ab088d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 acc33071f50..dba52c6d9f0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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." @@ -139,59 +139,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Seaded" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 tund tagasi" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} tundi tagasi" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "täna" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "eile" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} kuud tagasi" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "aastat tagasi" @@ -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,98 +284,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Uuendus ebaõnnestus. Palun teavita probleemidest <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud kogukonda</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Uuendus oli edukas. Kohe suunatakse Sind ownCloudi." @@ -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" @@ -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 a49f7b08e9c..5e89a7254b5 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Ühtegi faili ei laetud üles. Tundmatu viga" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Fail laeti üles ainult osaliselt" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Ühtegi faili ei laetud üles" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Ajutiste failide kaust puudub" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Kettale kirjutamine ebaõnnestus" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Saadaval pole piisavalt ruumi" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Vigane kaust." @@ -130,43 +130,43 @@ msgstr "Kustuta" msgid "Rename" msgstr "Nimeta ümber" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "asenda" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "soovita nime" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "loobu" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "tagasi" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "teosta kustutamine" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fail üleslaadimisel" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "faili üleslaadimisel" @@ -206,7 +206,7 @@ msgstr "Vigane kataloogi nimi. 'Shared' kasutamine on reserveeritud ownCloud poo msgid "Name" msgstr "Nimi" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Suurus" @@ -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" @@ -307,6 +307,10 @@ msgstr "Siin pole midagi. Lae midagi üles!" msgid "Download" msgstr "Lae alla" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Suurus (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Lõpeta jagamine" @@ -329,19 +333,19 @@ msgstr "Faile skannitakse, palun oota." msgid "Current scanning" msgstr "Praegune skannimine" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "kaust" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "kaustad" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "fail" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "faili" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index f7d2550070d..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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+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,18 +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 "Missing requirements." -msgstr "" +msgstr "Nõutavad on puudu." #: 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 "" +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..." @@ -82,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" @@ -99,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" @@ -115,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" @@ -131,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 9731627b6f1..164b9d97007 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 adec3c3a7c3..404fab9390f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Parool on vale. Proovi uuesti." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s jagas sinuga kausta %s" msgid "%s shared the file %s with you" msgstr "%s jagas sinuga faili %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Lae alla" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Lae üles" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/public.php:83 +#: 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 7979e6c8593..5368210f77f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 b94a859dde0..6948cb33920 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+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" @@ -45,21 +45,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "veebitenused sinu kontrolli all" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP-ina allalaadimine on välja lülitatud." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Failid tuleb alla laadida ükshaaval." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Tagasi failide juurde" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valitud failid on ZIP-faili loomiseks liiga suured." @@ -172,21 +172,21 @@ msgstr "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL kasutajatunnus ja/või parool pole õiged" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Määra admin kasutajanimi." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Määra admini parool." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>." diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index ce17bbe62b6..6f1a0a939c8 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -454,8 +454,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Kasuta seda aadressi <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">oma failidele ligipääsuks WebDAV kaudu</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 0132bb9f213..441cfc3224b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 d0fa2e927af..b09d1aa6664 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "segundu" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "gaur" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "atzo" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "hilabete" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "joan den urtean" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "urte" @@ -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,98 +282,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud komunitatearentzako</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Eguneraketa ongi egin da. Orain zure ownClouderea berbideratua izango zara." @@ -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" @@ -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 602f7d9cf73..965c000615a 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Ez da fitxategirik igo. Errore ezezaguna" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Igotako fitxategiaren zati bat bakarrik igo da" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Ez da fitxategirik igo" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Aldi bateko karpeta falta da" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Errore bat izan da diskoan idazterakoan" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Ez dago behar aina leku erabilgarri," -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Baliogabeko karpeta." @@ -128,43 +128,43 @@ msgstr "Ezabatu" msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Zain" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ordeztu" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "aholkatu izena" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "ezeztatu" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr " {new_name}-k {old_name} ordezkatu du" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "desegin" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Ezabatu" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fitxategiak igotzen" @@ -204,7 +204,7 @@ msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du" msgid "Name" msgstr "Izena" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Tamaina" @@ -305,6 +305,10 @@ msgstr "Ez dago ezer. Igo zerbait!" msgid "Download" msgstr "Deskargatu" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Ez elkarbanatu" @@ -327,19 +331,19 @@ msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." msgid "Current scanning" msgstr "Orain eskaneatzen ari da" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "fitxategia" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "fitxategiak" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 7f6e3446bbb..e4f24d3a7b2 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 40daad62724..a731cf6e62c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%sk zurekin %s karpeta elkarbanatu du" msgid "%s shared the file %s with you" msgstr "%sk zurekin %s fitxategia elkarbanatu du" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Deskargatu" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Igo" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/public.php:83 +#: 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 db509633065..c4ac101956e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 c5a88da9a9b..fd225f4c5b3 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "web zerbitzuak zure kontrolpean" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP deskarga ez dago gaituta." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Fitxategiak banan-banan deskargatu behar dira." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Itzuli fitxategietara" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko." @@ -170,21 +170,21 @@ msgstr "Errorea komando honek sortu du: \"%s\", izena: %s, pasahitza: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL erabiltzaile edota pasahitza ez dira egokiak." -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Ezarri administraziorako erabiltzaile izena." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Ezarri administraziorako pasahitza." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Mesedez begiratu <a href='%s'>instalazio gidak</a>." diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index d3c3df48a05..e51f7e15c13 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: Piarres Beobide <pi@beobide.net>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -453,8 +453,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 3f085ad0890..3181fda1be3 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 523c31b84fe..83dd85c6969 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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." @@ -137,59 +138,59 @@ msgstr "نوامبر" msgid "December" msgstr "دسامبر" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "ثانیهها پیش" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{دقیقه ها} دقیقه های پیش" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{ساعت ها} ساعت ها پیش" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "امروز" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "دیروز" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{روزها} روزهای پیش" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "ماه قبل" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیش" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "ماههای قبل" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "سال قبل" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "سالهای قبل" @@ -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,98 +283,98 @@ 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 "ایمیل ارسال شد" -#: js/update.js:14 +#: js/update.js:17 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 "به روز رسانی ناموفق بود. لطفا این خطا را به <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">جامعه ی OwnCloud</a> گزارش نمایید." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud." @@ -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" @@ -575,7 +572,7 @@ msgstr "اتمام نصب" #: 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:68 msgid "Log out" @@ -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 67d0a68e1b3..6765f3c6f86 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "هیچ فایلی آپلود نشد.خطای ناشناس" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "هیچ خطایی نیست بارگذاری پرونده موفقیت آمیز بود" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "پرونده آپلود شده بیش ازدستور ماکزیمم_حجم فایل_برای آپلود در php.ini استفاده کرده است." -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "پرونده بارگذاری شده فقط تاحدودی بارگذاری شده" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "هیچ پروندهای بارگذاری نشده" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "یک پوشه موقت گم شده" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "نوشتن بر روی دیسک سخت ناموفق بود" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "فضای کافی در دسترس نیست" -#: ajax/upload.php:119 +#: ajax/upload.php:123 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 @@ -128,43 +129,43 @@ msgstr "حذف" msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "در انتظار" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{نام _جدید} در حال حاضر وجود دارد." -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "جایگزین" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "پیشنهاد نام" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "لغو" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد." -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "انجام عمل حذف" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 پرونده آپلود شد." -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "بارگذاری فایل ها" @@ -204,7 +205,7 @@ msgstr "نام پوشه نامعتبر است. استفاده از \" به اش msgid "Name" msgstr "نام" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "اندازه" @@ -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" @@ -305,6 +306,10 @@ msgstr "اینجا هیچ چیز نیست." msgid "Download" msgstr "دانلود" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "اندازه(مگابایت)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "لغو اشتراک" @@ -327,19 +332,19 @@ msgstr "پرونده ها در حال بازرسی هستند لطفا صبر ک msgid "Current scanning" msgstr "بازرسی کنونی" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "پوشه" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "پوشه ها" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "پرونده" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "پرونده ها" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index 5435dd5782b..1693b267f75 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-11 02:16+0200\n" +"PO-Revision-Date: 2013-07-10 09:30+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" @@ -19,39 +20,39 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "کلید بازیابی با موفقیت فعال شده است." #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "کلید بازیابی نمی تواند فعال شود. لطفا رمزعبور کلید بازیابی خود را بررسی نمایید!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "کلید بازیابی با موفقیت غیر فعال شده است." #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "کلید بازیابی را نمی تواند غیرفعال نماید. لطفا رمزعبور کلید بازیابی خود را بررسی کنید!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "رمزعبور با موفقیت تغییر یافت." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "رمزعبور را نمیتواند تغییر دهد. شاید رمزعبورقدیمی صحیح نمی باشد." #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "رمزعبور کلید خصوصی با موفقیت به روز شد." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "رمزعبور کلید خصوصی را نمی تواند به روز کند. شاید رمزعبور قدیمی صحیح نمی باشد." #: files/error.php:7 msgid "" @@ -59,18 +60,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 "کلید خصوصی شما معتبر نمی باشد! ظاهرا رمزعبور شما بیرون از سیستم ownCloud تغییر یافته است( به عنوان مثال پوشه سازمان شما ). شما میتوانید رمزعبور کلید خصوصی خود را در تنظیمات شخصیتان به روز کنید تا بتوانید به فایل های رمزگذاری شده خود را دسترسی داشته باشید." #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +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 "" +msgstr "لطفا مطمئن شوید که PHP 5.3.3 یا جدیدتر نصب شده و پسوند OpenSSL PHP فعال است و به درستی پیکربندی شده است. در حال حاضر، برنامه رمزگذاری غیر فعال شده است." #: js/settings-admin.js:11 msgid "Saving..." @@ -80,15 +81,15 @@ msgstr "در حال ذخیره سازی..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "کلید خصوصی شما معتبر نیست! شاید رمزعبوراز بیرون تغییر یافته است." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "شما میتوانید کلید خصوصی خود را باز نمایید." #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "تنظیمات شخصی" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -97,76 +98,76 @@ msgstr "رمزگذاری" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "فعال کردن کلید بازیابی(اجازه بازیابی فایل های کاربران در صورت از دست دادن رمزعبور):" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "رمزعبور کلید بازیابی" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" -msgstr "" +msgstr "فعال شده" #: templates/settings-admin.php:29 templates/settings-personal.php:62 msgid "Disabled" -msgstr "" +msgstr "غیرفعال شده" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "تغییر رمزعبور کلید بازیابی:" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "رمزعبور قدیمی کلید بازیابی " #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "رمزعبور جدید کلید بازیابی" #: templates/settings-admin.php:53 msgid "Change Password" -msgstr "" +msgstr "تغییر رمزعبور" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "رمزعبور کلید خصوصی شما با رمزعبور شما یکسان نیست :" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +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 "" +msgstr "اگر رمزعبور قدیمی را فراموش کرده اید میتوانید از مدیر خود برای بازیابی فایل هایتان درخواست نمایید." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "رمزعبور قدیمی" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "رمزعبور فعلی" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "به روز رسانی رمزعبور کلید خصوصی" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +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 "" +msgstr "فعال کردن این گزینه به شما اجازه خواهد داد در صورت از دست دادن رمزعبور به فایل های رمزگذاری شده خود دسترسی داشته باشید." #: templates/settings-personal.php:63 msgid "File recovery settings updated" -msgstr "" +msgstr "تنظیمات بازیابی فایل به روز شده است." #: templates/settings-personal.php:64 msgid "Could not update file recovery" -msgstr "" +msgstr "به روز رسانی بازیابی فایل را نمی تواند انجام دهد." diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index e336407ad2c..20c88c118d7 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -19,43 +20,43 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "" +msgstr "مجوز دسترسی صادر شد" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "خطا به هنگام تنظیم فضای دراپ باکس" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "" +msgstr " مجوز اعطا دسترسی" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "لطفا یک کلید و کد امنیتی صحیح دراپ باکس وارد کنید." #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "خطا به هنگام تنظیم فضای Google Drive" #: 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 "" +msgstr "خطا: \"smbclient\" نصب نشده است. نصب و راه اندازی سهام CIFS/SMB امکان پذیر نمیباشد. لطفا از مدیریت سازمان خود برای راه اندازی آن درخواست نمایید." #: 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 "" +msgstr "خطا: پشتیبانی FTP در PHP فعال نمی باشد یا نصب نشده است. نصب و راه اندازی از سهم های FTP امکان پذیر نمی باشد. لطفا از مدیر سیستم خود برای راه اندازی آن درخواست\nکنید." #: 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 "" +msgstr "خطا: پشتیبانی Curl فعال نمی باشد یا نصب نشده است. نصب و راه اندازی ownCloud / WebDAV یا GoogleDrive امکان پذیر نیست. لطفا از مدیر سیستم خود برای نصب آن درخواست کنید." #: templates/settings.php:3 msgid "External Storage" @@ -63,11 +64,11 @@ msgstr "حافظه خارجی" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "" +msgstr "نام پوشه" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "حافظه خارجی" #: templates/settings.php:11 msgid "Configuration" @@ -83,7 +84,7 @@ msgstr "قابل اجرا" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "اضافه کردن حافظه" #: templates/settings.php:90 msgid "None set" @@ -116,8 +117,8 @@ msgstr "اجازه به کاربران برای متصل کردن منابع ذ #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "" +msgstr "گواهی های اصلی SSL " #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "" +msgstr "وارد کردن گواهی اصلی" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 02940cf74f1..1c7bf646190 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "رمزعبور اشتباه می باشد. دوباره امتحان کنید." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%sپوشه %s را با شما به اشتراک گذاشت" msgid "%s shared the file %s with you" msgstr "%sفایل %s را با شما به اشتراک گذاشت" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "دانلود" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "بارگزاری" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/public.php:83 +#: 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 51f44a8d336..d266f1640c0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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..b97521439ce 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-10 02:13+0200\n" +"PO-Revision-Date: 2013-07-09 09: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" @@ -29,7 +30,7 @@ msgstr "موفقیت" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "فایل %s به نسخه %s بازگردانده شده است." #: history.php:49 msgid "failure" @@ -38,7 +39,7 @@ msgstr "شکست" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "فایل %s نمی تواند به نسخه %s بازگردانده شود." #: history.php:69 msgid "No old versions available" @@ -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 90e95940af4..d3ce4e9f675 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,27 +44,27 @@ msgstr "مدیر" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "سرویس های تحت وب در کنترل شما" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "دانلود به صورت فشرده غیر فعال است" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "فایل ها باید به صورت یکی یکی دانلود شوند" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "بازگشت به فایل ها" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "فایل های انتخاب شده بزرگتر از آن هستند که بتوان یک فایل فشرده تولید کرد" #: helper.php:236 msgid "couldn't be determined" -msgstr "" +msgstr "نمیتواند مشخص شود" #: json.php:28 msgid "Application is not enabled" @@ -75,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" @@ -92,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 @@ -125,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 @@ -133,58 +134,58 @@ msgstr "" #: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "دستور متخلف عبارت است از: \"%s\"" #: 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 msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "دستور متخلف عبارت است از: \"%s\"، نام: \"%s\"، رمزعبور:\"%s\"" #: setup/postgresql.php:23 setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "PostgreSQL نام کاربری و / یا رمزعبور معتبر نیست." -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." -msgstr "" +msgstr "یک نام کاربری برای مدیر تنظیم نمایید." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." -msgstr "" +msgstr "یک رمزعبور برای مدیر تنظیم نمایید." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "لطفاً دوباره <a href='%s'>راهنمای نصب</a>را بررسی کنید." diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index c2575baf274..bca13ac210a 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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" @@ -209,7 +210,7 @@ msgstr "ماژول 'fileinfo' PHP از کار افتاده است.ما اکید #: templates/admin.php:60 msgid "Locale not working" -msgstr "" +msgstr "زبان محلی کار نمی کند." #: templates/admin.php:65 #, php-format @@ -235,7 +236,7 @@ msgstr "این سرور OwnCloud ارتباط اینترنتی ندارد.این #: templates/admin.php:94 msgid "Cron" -msgstr "" +msgstr "زمانبند" #: templates/admin.php:103 msgid "Execute one task with each page loaded" @@ -245,13 +246,13 @@ msgstr "اجرای یک وظیفه با هر بار بارگذاری صفحه" msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php در یک سرویس webcron ثبت شده است. تماس یک بار در دقیقه بر روی http با صفحه cron.php در ریشه owncloud ." #: 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 "" +msgstr "استفاده از سیستم های سرویس cron . تماس یک بار در دقیقه با فایل cron.php در پوشه owncloud از طریق یک سیستم cronjob ." #: templates/admin.php:130 msgid "Sharing" @@ -306,7 +307,7 @@ msgstr "وادار کردن مشتریان برای ارتباط با ownCloud msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "از طریق HTTPS به این نسخه از ownCloud متصل شوید تا بتوانید SSL را فعال یا غیر فعال نمایید." #: templates/admin.php:197 msgid "Log" @@ -314,7 +315,7 @@ msgstr "کارنامه" #: templates/admin.php:198 msgid "Log level" -msgstr "" +msgstr "سطح ورود" #: templates/admin.php:229 msgid "More" @@ -449,11 +450,14 @@ msgstr "به ترجمه آن کمک کنید" #: templates/personal.php:106 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "از این نشانی برای اتصال به ownCloud خودتان در بخش مدیریت فایل خودتان استفاده کنید" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "استفاده ابن آدرس <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\"> برای دسترسی فایل های شما از طریق WebDAV </a>" #: templates/users.php:21 msgid "Login Name" @@ -465,13 +469,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 db35141c3bc..baa868f4711 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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/user_webdavauth.po b/l10n/fa/user_webdavauth.po index 1310a3b5e67..fb3e2b908a9 100644 --- a/l10n/fa/user_webdavauth.po +++ b/l10n/fa/user_webdavauth.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-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-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 04:30+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" @@ -19,15 +20,15 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "اعتبار سنجی WebDAV " #: templates/settings.php:4 msgid "URL: " -msgstr "" +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 "" +msgstr "ownCloud اعتبار کاربر را به این آدرس ارسال می کند. این افزونه پاسخ ها را بررسی می کند و کد وضعیت 401 و 403 HTTP را به عنوان اعتبار نامعتبر، و تمام پاسخ های دیگر را به عنوان اعتبار معتبر تفسیر می کند." diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 61bc0ed86bf..66a7c23fc2f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -138,59 +138,59 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Asetukset" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "tänään" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "eilen" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "viime kuussa" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "viime vuonna" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "vuotta sitten" @@ -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,98 +283,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Päivitys epäonnistui. Ilmoita ongelmasta <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud-yhteisölle</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Päivitys onnistui. Selain ohjautuu nyt ownCloudiisi." @@ -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" @@ -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 c6016a80ecf..95ef52276a5 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Jiri Grönroos <jiri.gronroos@iki.fi>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,54 +28,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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Tiedostoa ei lähetetty. Tuntematon virhe" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Ei virheitä, tiedosto lähetettiin onnistuneesti" -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Tiedoston lähetys onnistui vain osittain" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Yhtäkään tiedostoa ei lähetetty" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Tilapäiskansio puuttuu" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Levylle kirjoitus epäonnistui" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Tallennustilaa ei ole riittävästi käytettävissä" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Virheellinen kansio." @@ -128,43 +129,43 @@ msgstr "Poista" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "korvaa" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "ehdota nimeä" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "peru" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "kumoa" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "suorita poistotoiminto" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +205,7 @@ msgstr "" msgid "Name" msgstr "Nimi" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Koko" @@ -305,6 +306,10 @@ msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" msgid "Download" msgstr "Lataa" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Koko (Mt)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Peru jakaminen" @@ -327,19 +332,19 @@ msgstr "Tiedostoja tarkistetaan, odota hetki." msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "kansio" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "kansiota" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "tiedosto" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "tiedostoa" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 88c4c2a181c..a0f1c5b4b77 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 97f099a1d3a..16949660253 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Jiri Grönroos <jiri.gronroos@iki.fi>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Väärä salasana. Yritä uudelleen." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s jakoi kansion %s kanssasi" msgid "%s shared the file %s with you" msgstr "%s jakoi tiedoston %s kanssasi" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Lataa" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Lähetä" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/public.php:83 +#: 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 e61bb457916..2ab2be77f6e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 90c1cccb43b..5cbea9c2981 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Ylläpitäjä" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "verkkopalvelut hallinnassasi" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP-lataus on poistettu käytöstä." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Tiedostot on ladattava yksittäin." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Takaisin tiedostoihin" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valitut tiedostot ovat liian suurikokoisia mahtuakseen zip-tiedostoon." @@ -171,21 +171,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL:n käyttäjätunnus ja/tai salasana on väärin" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Aseta ylläpitäjän käyttäjätunnus." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Aseta ylläpitäjän salasana." -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Lue tarkasti <a href='%s'>asennusohjeet</a>." diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 8ff86a7e78c..529efacd078 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -156,7 +156,7 @@ msgstr "lisää ryhmä" #: js/users.js:428 msgid "A valid username must be provided" -msgstr "" +msgstr "Anna kelvollinen käyttäjätunnus" #: js/users.js:429 js/users.js:435 js/users.js:450 msgid "Error creating user" @@ -164,7 +164,7 @@ msgstr "Virhe käyttäjää luotaessa" #: js/users.js:434 msgid "A valid password must be provided" -msgstr "" +msgstr "Anna kelvollinen salasana" #: personal.php:37 personal.php:38 msgid "__language_name__" @@ -389,7 +389,7 @@ msgstr "Kaupallinen tuki" #: templates/personal.php:10 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Aseta sovellukset synkronoimaan tiedostosi" #: templates/personal.php:21 msgid "Show First Run Wizard again" @@ -453,8 +453,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Käytä tätä osoitetta <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">päästäksesi käsiksi tiedostoihisi WebDAVin kautta</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index 68f73adf614..2fb2d0df892 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 e608363f0fe..7cb38657ad6 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: Adalberto Rodrigues <rodrigues_adalberto@yahoo.fr>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -142,59 +142,59 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Paramètres" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "aujourd'hui" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "hier" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "le mois dernier" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "l'année dernière" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "il y a plusieurs années" @@ -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,98 +287,98 @@ 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é" -#: js/update.js:14 +#: js/update.js:17 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 "La mise à jour a échoué. Veuillez signaler ce problème à la <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">communauté ownCloud</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La mise à jour a réussi. Vous êtes redirigé maintenant vers ownCloud." @@ -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" @@ -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 d8d018fdd65..f968690b624 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Adalberto Rodrigues <rodrigues_adalberto@yahoo.fr>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Aucun fichier n'a été envoyé. Erreur inconnue" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Le fichier n'a été que partiellement envoyé." -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Pas de fichier envoyé." -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Absence de dossier temporaire." -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Erreur d'écriture sur le disque" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Plus assez d'espace de stockage disponible" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Dossier invalide." @@ -131,43 +131,43 @@ msgstr "Supprimer" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "En attente" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "remplacer" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "Suggérer un nom" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "annuler" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a été remplacé par {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "annuler" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "effectuer l'opération de suppression" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fichier en cours d'envoi" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fichiers en cours d'envoi" @@ -207,7 +207,7 @@ msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à msgid "Name" msgstr "Nom" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Taille" @@ -308,6 +308,10 @@ msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" msgid "Download" msgstr "Télécharger" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Taille (Mo)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Ne plus partager" @@ -330,19 +334,19 @@ msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." msgid "Current scanning" msgstr "Analyse en cours" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "dossier" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "dossiers" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "fichier" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "fichiers" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index a7a5e7a6fe4..0a8751ee9ce 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-11 02:16+0200\n" +"PO-Revision-Date: 2013-07-10 18:30+0000\n" +"Last-Translator: Adalberto Rodrigues <rodrigues_adalberto@yahoo.fr>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -67,14 +67,14 @@ msgstr "Votre clé de sécurité privée n'est pas valide! Il est probable que v #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Système minimum requis non respecté." #: 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 "" +msgstr "Veuillez vous assurer qu'une version de PHP 5.3.3 ou plus récente est installée et que l'extension OpenSSL de PHP est activée et configurée correctement. En attendant, l'application de cryptage a été désactivée." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 1c242b645bb..2fa2cd075ee 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 7cc6c36f4cf..61d91d8ddab 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# square <benben390-390@yahoo.fr>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: square <benben390-390@yahoo.fr>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Le mot de passe est incorrect. Veuillez réessayer." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s a partagé le répertoire %s avec vous" msgid "%s shared the file %s with you" msgstr "%s a partagé le fichier %s avec vous" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Télécharger" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Envoyer" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/public.php:83 +#: 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 eef854f4d2a..8c677128c15 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 dce6cf2ab59..9da4b25f817 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Administration" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "services web sous votre contrôle" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Téléchargement ZIP désactivé." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Les fichiers nécessitent d'être téléchargés un par un." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Retour aux Fichiers" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Les fichiers sélectionnés sont trop volumineux pour être compressés." @@ -171,21 +171,21 @@ msgstr "La requête en cause est : \"%s\", nom : %s, mot de passe : %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base PostgreSQL invalide" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Spécifiez un nom d'utilisateur pour l'administrateur." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Spécifiez un mot de passe administrateur." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, 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>." diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index bf159feeedb..1b557f5e949 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Adalberto Rodrigues <rodrigues_adalberto@yahoo.fr>, 2013 # Christophe Lherieau <skimpax@gmail.com>, 2013 # lyly95, 2013 # red0ne <red-0ne@smarty-concept.com>, 2013 @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Adalberto Rodrigues <rodrigues_adalberto@yahoo.fr>\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -455,8 +456,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Utilisez cette adresse pour <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">accéder à vos fichiers via WebDAV</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 8b30b6c07dc..fbcdded1a4a 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 e8bd707eb46..f416ecd5c51 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -138,59 +138,59 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Axustes" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "Vai 1 hora" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "hoxe" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "onte" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "hai {days} días" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "último mes" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "meses atrás" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "último ano" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "anos atrás" @@ -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,98 +283,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "A actualización non foi satisfactoria, informe deste problema á <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">comunidade de ownCloud</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "A actualización realizouse correctamente. Redirixíndoo agora á ownCloud." @@ -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" @@ -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 da23f921493..fcd80350bd4 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 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:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro so foi parcialmente enviado" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Non se enviou ningún ficheiro" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Falta o cartafol temporal" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Produciuse un erro ao escribir no disco" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Non hai espazo de almacenamento abondo" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "O directorio é incorrecto." @@ -129,43 +129,43 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "substituír" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "suxerir nome" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "substituír {new_name} por {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "desfacer" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "realizar a operación de eliminación" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Enviándose 1 ficheiro" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ficheiros enviándose" @@ -205,7 +205,7 @@ msgstr "Nome de cartafol incorrecto. O uso de «Shared» está reservado por Own msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Tamaño" @@ -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" @@ -306,6 +306,10 @@ msgstr "Aquí non hai nada. Envíe algo." msgid "Download" msgstr "Descargar" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Tamaño (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Deixar de compartir" @@ -328,19 +332,19 @@ msgstr "Estanse analizando os ficheiros. Agarde." msgid "Current scanning" msgstr "Análise actual" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "directorio" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "directorios" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "ficheiro" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "ficheiros" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 45a139836f5..a8f83b07bb4 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,14 +66,14 @@ msgstr "A chave privada non é correcta! É probábel que o seu contrasinal teñ #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Non se cumpren os requisitos." #: 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 "" +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 410acbd5813..0c01abc1d81 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 14d04a7ec21..fde05a591c8 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "O contrasinal é incorrecto. Ténteo de novo." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s compartiu o cartafol %s con vostede" msgid "%s shared the file %s with you" msgstr "%s compartiu o ficheiro %s con vostede" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Descargar" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Enviar" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/public.php:83 +#: 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 4eff86ac19c..d3bf7212dd0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 e62d4879cdd..2ac52369ab8 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Administración" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "servizos web baixo o seu control" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "As descargas ZIP están desactivadas." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros necesitan seren descargados dun en un." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Volver aos ficheiros" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip." @@ -171,21 +171,21 @@ msgstr "A orde ofensiva foi: «%s», nome: %s, contrasinal: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de PostgreSQL incorrecto" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Estabeleza un nome de usuario administrador" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Estabeleza un contrasinal de administrador" -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, 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>" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 00193b8e689..16af4da9821 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -453,8 +453,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Empregue esta ligazón <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">para acceder aos sus ficheiros mediante WebDAV</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index ecdd18174c6..6ca4641acf3 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 f2f73c62a56..16ea9655848 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -138,59 +138,59 @@ msgstr "נובמבר" msgid "December" msgstr "דצמבר" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "הגדרות" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "שניות" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "היום" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "אתמול" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "חודשים" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "שנים" @@ -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,98 +283,98 @@ 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 "הודעת הדוא״ל נשלחה" -#: js/update.js:14 +#: js/update.js:17 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 "תהליך העדכון לא הושלם בהצלחה. נא דווח את הבעיה ב<a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">קהילת ownCloud</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "תהליך העדכון הסתיים בהצלחה. עכשיו מנתב אותך אל ownCloud." @@ -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 "ערוך קטגוריות" @@ -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 dcc3698284a..dd4ead6bcb6 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "לא הועלה קובץ. טעות בלתי מזוהה." -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "לא התרחשה שגיאה, הקובץ הועלה בהצלחה" -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "הקובץ הועלה באופן חלקי בלבד" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "שום קובץ לא הועלה" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "תקיה זמנית חסרה" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "הכתיבה לכונן נכשלה" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "אין די שטח פנוי באחסון" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "תיקייה שגויה." @@ -129,43 +129,43 @@ msgstr "מחיקה" msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "ממתין" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "החלפה" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "הצעת שם" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "ביטול" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} הוחלף ב־{old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "ביטול" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "ביצוע פעולת מחיקה" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "קבצים בהעלאה" @@ -205,7 +205,7 @@ msgstr "" msgid "Name" msgstr "שם" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "גודל" @@ -306,6 +306,10 @@ msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו msgid "Download" msgstr "הורדה" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "הסר שיתוף" @@ -328,19 +332,19 @@ msgstr "הקבצים נסרקים, נא להמתין." msgid "Current scanning" msgstr "הסריקה הנוכחית" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "קובץ" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "קבצים" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 9e418a262f4..af6ec04e7b3 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 4e039d76682..3bd4c172a5f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s שיתף עמך את התיקייה %s" msgid "%s shared the file %s with you" msgstr "%s שיתף עמך את הקובץ %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "הורדה" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "העלאה" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/public.php:83 +#: 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 83f118e94f1..8432d4e2f12 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 1294bfdc828..ef9a5241eda 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "מנהל" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "שירותי רשת תחת השליטה שלך" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "הורדת ZIP כבויה" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "יש להוריד את הקבצים אחד אחרי השני." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "חזרה לקבצים" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "הקבצים הנבחרים גדולים מידי ליצירת קובץ zip." @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "נא לעיין שוב ב<a href='%s'>מדריכי ההתקנה</a>." diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 0be65ca6638..50999754abf 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -453,8 +453,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "השתמש בכתובת זאת על מנת להתחבר אל ownCloud דרך סייר קבצים." +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index c21103fa525..5ca2911ffed 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 18d44932d42..abd0f37f94d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -138,59 +138,59 @@ msgstr "नवंबर" msgid "December" msgstr "दिसम्बर" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "" @@ -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,98 +283,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "" @@ -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 ee4f01e5259..871e859da45 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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,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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 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" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 6c057b0c240..5ce13845b90 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-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 76cc09e1fa9..303b5c5dc2e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 06:32+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" @@ -45,19 +45,19 @@ msgstr "" msgid "web services under your control" msgstr "" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 90989723702..bdabe42ee76 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-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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,73 +386,76 @@ 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 -msgid "Use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:108 +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index 43f46c038a4..f5ea5247e6c 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-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 f45e4c2c9f7..da7280beee0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Postavke" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "danas" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "jučer" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "mjeseci" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "godina" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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" @@ -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 09e0983ab90..dfc63b239cb 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Poslana datoteka je parcijalno poslana" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Datoteka nije poslana" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Nedostaje privremeni direktorij" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Neuspjelo pisanje na disk" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "Obriši" msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "U tijeku" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "predloži ime" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "odustani" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "vrati" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "datoteke se učitavaju" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Veličina" @@ -305,6 +305,10 @@ msgstr "Nema ničega u ovoj mapi. Pošalji nešto!" msgid "Download" msgstr "Preuzimanje" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Makni djeljenje" @@ -327,19 +331,19 @@ msgstr "Datoteke se skeniraju, molimo pričekajte." msgid "Current scanning" msgstr "Trenutno skeniranje" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "datoteka" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "datoteke" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index b4828166a4f..4f7f397cb2c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 76292dea412..d93f65f7a11 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Preuzimanje" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Učitaj" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/public.php:83 +#: 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 90f0361d5bc..7b70b3adf36 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 de98c266a5f..1577e5bf9b5 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Administrator" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "web usluge pod vašom kontrolom" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index ef922746a0a..587d791ccd2 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 975d9b9f4d6..14bfc5d6edf 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 94736ed98a6..6361680818f 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,59 +138,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Beállítások" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "ma" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "tegnap" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "több hónapja" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "tavaly" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "több éve" @@ -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,98 +283,98 @@ msgstr "Jelszóval is védem" msgid "Password" msgstr "Jelszó" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Feltöltést is engedélyezek" -#: 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" -#: js/update.js:14 +#: js/update.js:17 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 "A frissítés nem sikerült. Kérem értesítse erről a problémáról az <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud közösséget</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz." @@ -412,7 +412,7 @@ 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 "Az Ön állományai titkosítva vannak. Ha nem engedélyezte korábban az adatok visszanyeréséhez szükséges kulcs használatát, akkor a jelszó megváltoztatását követően nem fog hozzáférni az adataihoz. Ha nem biztos abban, hogy mit kellene tennie, akkor kérdezze meg a rendszergazdát, mielőtt továbbmenne. Biztos, hogy folytatni kívánja?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" @@ -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" @@ -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 b7bd801ce6f..4e3974d65fe 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: Laszlo Tornoci <torlasz@gmail.com>\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "Nem található a mappa, ahova feltölteni szeretne." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Hibás mappacím" -#: ajax/upload.php:55 +#: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" msgstr "Nem történt feltöltés. Ismeretlen hiba" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 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:71 msgid "No file was uploaded" msgstr "Nem töltődött fel állomány" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Hiányzik egy ideiglenes mappa" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Nem sikerült a lemezre történő írás" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Nincs elég szabad hely." -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Érvénytelen mappa." @@ -129,43 +129,43 @@ msgstr "Törlés" msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Folyamatban" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "írjuk fölül" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "legyen más neve" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "mégse" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "visszavonás" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "a törlés végrehajtása" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fájl töltődik föl" @@ -205,7 +205,7 @@ msgstr "Érvénytelen mappanév. A név használata csak a Owncloud számára le msgid "Name" msgstr "Név" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Méret" @@ -232,7 +232,7 @@ msgstr "{count} fájl" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s átnevezése nem sikerült" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -306,6 +306,10 @@ msgstr "Itt nincs semmi. Töltsön fel valamit!" msgid "Download" msgstr "Letöltés" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Méret (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "A megosztás visszavonása" @@ -328,19 +332,19 @@ msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" msgid "Current scanning" msgstr "Ellenőrzés alatt" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "mappa" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "mappa" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "fájl" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "fájlok" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index f2fcf3145ec..d461b3eb6ae 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 92bcf286311..8c19e15bb46 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Laszlo Tornoci <torlasz@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "A megadott jelszó nem megfelelő. Próbálja újra!" #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s megosztotta Önnel ezt a mappát: %s" msgid "%s shared the file %s with you" msgstr "%s megosztotta Önnel ezt az állományt: %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Letöltés" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Feltöltés" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/public.php:83 +#: 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 e8ed7eae50c..76559191a6b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 3af4a667f3c..6dca6f52844 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Adminsztráció" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "webszolgáltatások saját kézben" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "A ZIP-letöltés nincs engedélyezve." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "A fájlokat egyenként kell letölteni." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Vissza a Fájlokhoz" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "A kiválasztott fájlok túl nagyok a zip tömörítéshez." @@ -171,21 +171,21 @@ msgstr "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s" msgid "PostgreSQL username and/or password not valid" msgstr "A PostgreSQL felhasználói név és/vagy jelszó érvénytelen" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Állítson be egy felhasználói nevet az adminisztrációhoz." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Állítson be egy jelszót az adminisztrációhoz." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, 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>." diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 42cec70d3b0..c84beceb352 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -454,8 +454,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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." +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Ezt a címet használja, ha <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">WebDAV-on keresztül szeretné elérni az állományait</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index 4c3d5edef88..a9549d9949e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 cdc4c8604a4..098df5562b2 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "Ջնջել" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "Բեռնել" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 1ddc27eaf8c..18903214010 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-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\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 bf114d281d2..4bee7298cfb 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Բեռնել" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: 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 c47782b0ee6..d1859da7b20 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-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\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/settings.po b/l10n/hy/settings.po index 7aae4ee9ae8..52699c5f6a5 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 95472114c90..a937ba1f2ee 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Configurationes" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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" @@ -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 36862645ff9..4b6bf3a7731 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Le file incargate solmente esseva incargate partialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Nulle file esseva incargate." -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Manca un dossier temporari" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "Deler" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Nomine" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Dimension" @@ -305,6 +305,10 @@ msgstr "Nihil hic. Incarga alcun cosa!" msgid "Download" msgstr "Discargar" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index d5dd7cf6d53..3ea187206c6 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 1140c74f32f..2581a7dd878 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Discargar" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Incargar" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: 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 93c82b99f9a..c273cd4d041 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 183ac93eea5..af22bb09a3d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Administration" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "servicios web sub tu controlo" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 9d4272ee3d2..116e1eb6da1 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 12092d02bcc..2ccf06bbeb8 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 56590d00378..fb92947d5f9 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Setelan" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 menit yang lalu" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} menit yang lalu" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} jam yang lalu" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "hari ini" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "kemarin" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} hari yang lalu" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} bulan yang lalu" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "beberapa tahun lalu" @@ -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,98 +282,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Pembaruan gagal. Silakan laporkan masalah ini ke <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">komunitas ownCloud</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Pembaruan sukses. Anda akan diarahkan ulang ke ownCloud." @@ -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" @@ -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 66e49783d9f..7a0e07cff83 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Tidak ada berkas yang diunggah. Galat tidak dikenal." -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Tidak ada galat, berkas sukses diunggah" -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Berkas hanya diunggah sebagian" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Tidak ada berkas yang diunggah" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Folder sementara tidak ada" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Gagal menulis ke disk" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Ruang penyimpanan tidak mencukupi" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Direktori tidak valid." @@ -128,43 +128,43 @@ msgstr "Hapus" msgid "Rename" msgstr "Ubah nama" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Menunggu" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} sudah ada" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ganti" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sarankan nama" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "mengganti {new_name} dengan {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "urungkan" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Lakukan operasi penghapusan" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 berkas diunggah" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "berkas diunggah" @@ -204,7 +204,7 @@ msgstr "Nama folder salah. Nama 'Shared' telah digunakan oleh Owncloud." msgid "Name" msgstr "Nama" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Ukuran" @@ -305,6 +305,10 @@ msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" msgid "Download" msgstr "Unduh" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Batalkan berbagi" @@ -327,19 +331,19 @@ msgstr "Berkas sedang dipindai, silakan tunggu." msgid "Current scanning" msgstr "Yang sedang dipindai" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "berkas" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "berkas-berkas" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 07a10c85018..b40e8c01b91 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 c0d794fc2de..d85898974e6 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s membagikan folder %s dengan Anda" msgid "%s shared the file %s with you" msgstr "%s membagikan file %s dengan Anda" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Unduh" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Unggah" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/public.php:83 +#: 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 20a5b3a585c..805542c17e2 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 9704b2b5e30..58e500fb430 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "layanan web dalam kontrol Anda" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Pengunduhan ZIP dimatikan." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Berkas harus diunduh satu persatu." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Kembali ke Daftar Berkas" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya." @@ -170,21 +170,21 @@ msgstr "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nama pengguna dan/atau sandi PostgreSQL tidak valid" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Setel nama pengguna admin." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Setel sandi admin." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Silakan periksa ulang <a href='%s'>panduan instalasi</a>." diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 14933d3e955..56f35231596 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,8 +452,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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 " +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index eb02d8be93e..c47c6b6b67b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 8b8af544e10..2c9fe4f552c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -138,59 +138,59 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Stillingar" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "sek." -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "Fyrir 1 mínútu" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "í dag" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "í gær" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "síðasta ári" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "einhverjum árum" @@ -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,98 +283,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Uppfærslan heppnaðist. Beini þér til ownCloud nú." @@ -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" @@ -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 22ee1e9edbd..a1227b0ad82 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Engin skrá var send inn. Óþekkt villa." -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Engin villa, innsending heppnaðist" -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 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:71 msgid "No file was uploaded" msgstr "Engin skrá skilaði sér" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Vantar bráðabirgðamöppu" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Tókst ekki að skrifa á disk" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Ógild mappa." @@ -128,43 +128,43 @@ msgstr "Eyða" msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Bíður" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "yfirskrifa" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "stinga upp á nafni" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "hætta við" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "yfirskrifaði {new_name} með {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "afturkalla" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 skrá innsend" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Ownclou msgid "Name" msgstr "Nafn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Stærð" @@ -305,6 +305,10 @@ msgstr "Ekkert hér. Settu eitthvað inn!" msgid "Download" msgstr "Niðurhal" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Hætta deilingu" @@ -327,19 +331,19 @@ msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." msgid "Current scanning" msgstr "Er að skima" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 479c1a9b4db..9ae800ee62f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 2b241cf732d..cf5e910501d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s deildi möppunni %s með þér" msgid "%s shared the file %s with you" msgstr "%s deildi skránni %s með þér" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Niðurhal" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Senda inn" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/public.php:83 +#: 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 dedcb91b1e1..1a6469d7ca4 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 6dc7349b74b..c8463fabf1a 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Stjórnun" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "vefþjónusta undir þinni stjórn" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Slökkt á ZIP niðurhali." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Skrárnar verður að sækja eina og eina" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Aftur í skrár" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valdar skrár eru of stórar til að búa til ZIP skrá." @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index ca29e7aecd1..695efe70a5a 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -453,8 +453,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 8dc400a555e..4fb7644a957 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 8468e030039..b9cd0e79cd3 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -23,7 +23,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "%s ha condiviso »%s« con te" +msgstr "%s ha condiviso «%s» con te" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -140,59 +140,59 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "oggi" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "ieri" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "mese scorso" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "mesi fa" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "anno scorso" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "anni fa" @@ -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,98 +285,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "L'aggiornamento non è riuscito. Segnala il problema alla <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">comunità di ownCloud</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "L'aggiornamento è stato effettuato correttamente. Stai per essere reindirizzato a ownCloud." @@ -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" @@ -614,12 +610,12 @@ 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 " "href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "Ehilà,<br><br>volevo solamente farti sapere che %s ha condiviso »%s« con te.<br><a href=\"%s\">Guarda!</a><br><br>Saluti!" +msgstr "Ehilà,<br><br>volevo solamente farti sapere che %s ha condiviso «%s» con te.<br><a href=\"%s\">Guarda!</a><br><br>Saluti!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/it/files.po b/l10n/it/files.po index b6a6f13cb06..556864d77e6 100644 --- a/l10n/it/files.po +++ b/l10n/it/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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:00+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Nessun file è stato inviato. Errore sconosciuto" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Il file è stato caricato solo parzialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Nessun file è stato caricato" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Manca una cartella temporanea" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Scrittura su disco non riuscita" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Spazio di archiviazione insufficiente" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Cartella non valida." @@ -130,43 +130,43 @@ msgstr "Elimina" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "In corso" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "suggerisci nome" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "annulla" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "annulla" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "esegui l'operazione di eliminazione" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "caricamento file" @@ -206,7 +206,7 @@ msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownClo msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Dimensione" @@ -307,6 +307,10 @@ msgstr "Non c'è niente qui. Carica qualcosa!" msgid "Download" msgstr "Scarica" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Dimensione (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Rimuovi condivisione" @@ -329,19 +333,19 @@ msgstr "Scansione dei file in corso, attendi" msgid "Current scanning" msgstr "Scansione corrente" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "cartella" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "cartelle" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "file" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "file" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index 0c1b972a0f1..9e43d8c52dd 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-09 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 13:30+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" @@ -66,14 +66,14 @@ msgstr "La chiave privata non è valida! Forse la password è stata cambiata est #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Requisiti mancanti." #: 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 "" +msgstr "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 5ef791c24c4..13f131f9ad2 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 75833276971..3499825517e 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# polxmod <paolo.velati@gmail.com>, 2013 # Vincenzo Reale <vinx.reale@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "La password è errata. Prova ancora." #: templates/authenticate.php:7 msgid "Password" @@ -40,18 +41,18 @@ msgstr "%s ha condiviso la cartella %s con te" msgid "%s shared the file %s with you" msgstr "%s ha condiviso il file %s con te" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Scarica" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Carica" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Annulla il caricamento" -#: templates/public.php:83 +#: 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 2c97b399f6c..1912f079ec7 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 c9aa8d13440..d67414ce95c 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,21 +44,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "servizi web nelle tue mani" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Lo scaricamento in formato ZIP è stato disabilitato." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "I file devono essere scaricati uno alla volta." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Torna ai file" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "I file selezionati sono troppo grandi per generare un file zip." @@ -171,21 +171,21 @@ msgstr "Il comando non consentito era: \"%s\", nome: %s, password: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nome utente e/o password di PostgreSQL non validi" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Imposta un nome utente di amministrazione." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Imposta una password di amministrazione." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Leggi attentamente le <a href='%s'>guide d'installazione</a>." diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 45ffe0cf8c7..3e7d46cebf6 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -4,13 +4,14 @@ # # Translators: # Francesco Apruzzese <cescoap@gmail.com>, 2013 +# idetao <marcxosm@gmail.com>, 2013 # Vincenzo Reale <vinx.reale@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -454,8 +455,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Utilizza questo indirizzo per <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">accedere ai tuoi file via WebDAV</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index cd4b84d677e..65f015cf1d1 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 4fa5512a6a7..968d0c2c5a1 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+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" @@ -139,59 +139,59 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "設定" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 時間前" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} 時間前" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "今日" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "昨日" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} 日前" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "一月前" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "月前" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "一年前" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "年前" @@ -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,98 +284,98 @@ 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 "{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 "メールを送信しました" -#: js/update.js:14 +#: js/update.js:17 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 "更新に成功しました。この問題を <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a> にレポートしてください。" -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "更新に成功しました。今すぐownCloudにリダイレクトします。" @@ -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 "カテゴリを編集" @@ -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 fe81e37a0ae..546458363df 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -5,13 +5,15 @@ # Translators: # Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2013 # plazmism <gomidori@live.jp>, 2013 +# pabook <pabook.32@gmail.com>, 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: pabook <pabook.32@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 +31,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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "ファイルは何もアップロードされていません。不明なエラー" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "エラーはありません。ファイルのアップロードは成功しました" -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "アップロードファイルは一部分だけアップロードされました" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "ファイルはアップロードされませんでした" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "一時保存フォルダが見つかりません" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "ディスクへの書き込みに失敗しました" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "ストレージに十分な空き容量がありません" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "無効なディレクトリです。" @@ -130,43 +132,43 @@ msgstr "削除" msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "中断" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在しています" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "置き換え" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "推奨名称" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "キャンセル" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} を {new_name} に置換" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "削除を実行" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ファイルをアップロード中" @@ -206,7 +208,7 @@ msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予 msgid "Name" msgstr "名前" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "サイズ" @@ -307,6 +309,10 @@ msgstr "ここには何もありません。何かアップロードしてくだ msgid "Download" msgstr "ダウンロード" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "サイズ(MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "共有解除" @@ -329,19 +335,19 @@ msgstr "ファイルをスキャンしています、しばらくお待ちくだ msgid "Current scanning" msgstr "スキャン中" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "ディレクトリ" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "ディレクトリ" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "ファイル" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "ファイル" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 5d409f27d34..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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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" @@ -66,14 +66,14 @@ msgstr "秘密鍵が有効ではありません。パスワードがownCloudシ #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +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 "" +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 787934be5f8..c93b515bfb1 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 7d87fcc69e0..4a4bae428d0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "パスワードが間違っています。再試行してください。" #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s はフォルダー %s をあなたと共有中です" msgid "%s shared the file %s with you" msgstr "%s はファイル %s をあなたと共有中です" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ダウンロード" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "アップロード" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/public.php:83 +#: 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 4bc00b073b3..12fc4726dbf 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 019949f4b8e..7e4acde0051 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "管理" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "管理下のウェブサービス" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIPダウンロードは無効です。" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "ファイルは1つずつダウンロードする必要があります。" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "ファイルに戻る" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "選択したファイルはZIPファイルの生成には大きすぎます。" @@ -171,21 +171,21 @@ msgstr "違反コマンド: \"%s\"、名前: %s、パスワード: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQLのユーザ名もしくはパスワードは有効ではありません" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "管理者のユーザ名を設定。" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "管理者のパスワードを設定。" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "<a href='%s'>インストールガイド</a>をよく確認してください。" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 201c4c38c03..4c6da073647 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: plazmism <gomidori@live.jp>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -455,8 +455,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "ファイルマネージャでownCloudに接続する際はこのアドレスを利用してください" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">WebDAV経由でファイルにアクセス</a>するにはこのアドレスを利用してください" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 386674a3a4d..6f986b3d745 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 bdbe41a8b97..fd75dd952c3 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "გადმოწერა" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 8baaaed48f8..20fd7889fed 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "გადმოწერა" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" msgstr "" diff --git a/l10n/ka/settings.po b/l10n/ka/settings.po index 33cd23090ee..59b8b61428f 100644 --- a/l10n/ka/settings.po +++ b/l10n/ka/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:23+0000\n" +"POT-Creation-Date: 2013-07-09 02:04+0200\n" +"PO-Revision-Date: 2013-07-09 00:04+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" @@ -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 "" -#: 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 " @@ -386,73 +386,76 @@ 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 -msgid "Use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:108 +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 69cd02d9d28..efec31710c2 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "ნოემბერი" msgid "December" msgstr "დეკემბერი" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} საათის წინ" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "დღეს" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} თვის წინ" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "წლის წინ" @@ -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,98 +282,98 @@ 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 "იმეილი გაიგზავნა" -#: js/update.js:14 +#: js/update.js:17 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 "განახლება ვერ განხორციელდა. გთხოვთ შეგვატყობინოთ ამ პრობლემის შესახებ აქ: <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე." @@ -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 "კატეგორიების რედაქტირება" @@ -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 915a2a2ef92..30ba900881e 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "ფაილი არ აიტვირთა. უცნობი შეცდომა" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა" -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "ფაილი არ აიტვირთა" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "დროებითი საქაღალდე არ არსებობს" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "შეცდომა დისკზე ჩაწერისას" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "საცავში საკმარისი ადგილი არ არის" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "დაუშვებელი დირექტორია." @@ -128,43 +128,43 @@ msgstr "წაშლა" msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "შეცვლა" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "სახელის შემოთავაზება" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "უარყოფა" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} შეცვლილია {old_name}–ით" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "მიმდინარეობს წაშლის ოპერაცია" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ფაილები იტვირთება" @@ -204,7 +204,7 @@ msgstr "დაუშვებელი ფოლდერის სახელ msgid "Name" msgstr "სახელი" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "ზომა" @@ -305,6 +305,10 @@ msgstr "აქ არაფერი არ არის. ატვირთე msgid "Download" msgstr "ჩამოტვირთვა" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "გაუზიარებადი" @@ -327,19 +331,19 @@ msgstr "მიმდინარეობს ფაილების სკა msgid "Current scanning" msgstr "მიმდინარე სკანირება" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index ef21a653941..f23b508fb44 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 56a1b27e9ce..11873902bb1 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s–მა გაგიზიარათ ფოლდერი %s" msgid "%s shared the file %s with you" msgstr "%s–მა გაგიზიარათ ფაილი %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "ატვირთვა" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/public.php:83 +#: 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 4fb606d5ec6..4986baa8c14 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 6201451b3be..041274223e6 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "ადმინისტრატორი" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "web services under your control" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP download–ი გათიშულია" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "ფაილები უნდა გადმოიტვირთოს სათითაოდ." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "უკან ფაილებში" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "არჩეული ფაილები ძალიან დიდია zip ფაილის გენერაციისთვის." @@ -170,21 +170,21 @@ msgstr "Offending ბრძანება იყო: \"%s\", სახელი msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "დააყენეთ ადმინისტრატორის სახელი." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "დააყენეთ ადმინისტრატორის პაროლი." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "გთხოვთ გადაათვალიეროთ <a href='%s'>ინსტალაციის გზამკვლევი</a>." diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 995622a2e61..c1ec86b1a19 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -453,8 +453,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 6527a313d74..4b8dad667b8 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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.po b/l10n/kn/files.po index 1b7d00ff32d..ed1e91dc993 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/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-11 02:16+0200\n" +"PO-Revision-Date: 2013-07-11 00:17+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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index 27c2897d6ed..9c122a4cda7 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/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-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-07-09 02:04+0200\n" +"PO-Revision-Date: 2013-07-09 00:04+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" @@ -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 "" -#: 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 " @@ -386,73 +386,76 @@ 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 -msgid "Use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:108 +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/ko/core.po b/l10n/ko/core.po index b4ce4546ccf..09b4b1a0a9c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -138,59 +138,59 @@ msgstr "11월" msgid "December" msgstr "12월" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "설정" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "초 전" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1분 전" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes}분 전" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1시간 전" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours}시간 전" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "오늘" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "어제" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days}일 전" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "지난 달" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months}개월 전" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "개월 전" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "작년" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "년 전" @@ -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,98 +283,98 @@ 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 "이메일 발송됨" -#: js/update.js:14 +#: js/update.js:17 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 "업데이트가 실패하였습니다. 이 문제를 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud 커뮤니티</a>에 보고해 주십시오." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "업데이트가 성공하였습니다. ownCloud로 돌아갑니다." @@ -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 "분류 수정" @@ -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 392ebb5e6d0..c0be97468e1 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "파일 업로드에 성공하였습니다." -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "파일의 일부분만 업로드됨" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "파일이 업로드되지 않았음" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "임시 폴더가 없음" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "디스크에 쓰지 못했습니다" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "저장소가 용량이 충분하지 않습니다." -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." @@ -130,43 +130,43 @@ msgstr "삭제" msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "대기 중" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "바꾸기" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "이름 제안" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "취소" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{old_name}이(가) {new_name}(으)로 대체됨" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "되돌리기" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "삭제 작업중" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "파일 업로드중" @@ -206,7 +206,7 @@ msgstr "폴더 이름이 유효하지 않습니다. " msgid "Name" msgstr "이름" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "크기" @@ -307,6 +307,10 @@ msgstr "내용이 없습니다. 업로드할 수 있습니다!" msgid "Download" msgstr "다운로드" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "공유 해제" @@ -329,19 +333,19 @@ msgstr "파일을 검색하고 있습니다. 기다려 주십시오." msgid "Current scanning" msgstr "현재 검색" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "파일" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "파일" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index cc510adbf8e..e37c82d4e96 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 49ab0bf7390..3b02373c19d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" msgid "%s shared the file %s with you" msgstr "%s 님이 파일 %s을(를) 공유하였습니다" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "다운로드" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "업로드" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/public.php:83 +#: 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 876dd35ddc9..78709c2fe91 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 7ca98be82a1..4d0efb48b2b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "관리자" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "내가 관리하는 웹 서비스" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP 다운로드가 비활성화되었습니다." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "파일을 개별적으로 다운로드해야 합니다." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "파일로 돌아가기" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "선택한 파일들은 ZIP 파일을 생성하기에 너무 큽니다." @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "<a href='%s'>설치 가이드</a>를 다시 한 번 확인하십시오." diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index c1cdbe64c97..7b8451f100c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -453,8 +453,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 0ac6f848217..cb7c93819d0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 8b5f204a03f..f80d255d5bf 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "دهستكاری" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "" @@ -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 acb25a868e0..ab175a38471 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "ناو" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "داگرتن" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 4d8c6bf4df0..afc94007acf 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s دابهشی کردووه بوخچهی %s لهگهڵ msgid "%s shared the file %s with you" msgstr "%s دابهشی کردووه پهڕگهیی %s لهگهڵ تۆ" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "داگرتن" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "بارکردن" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: 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 a8848cb1162..2546834889a 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 756f78fbb3d..6780ef41946 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 06:32+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" @@ -43,21 +43,21 @@ msgstr "بهڕێوهبهری سهرهكی" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "ڕاژهی وێب لهژێر چاودێریت دایه" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index ea96d59ab2d..c4657aa25b2 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index bc07ba63a5d..9861e7e114b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 28b333e1ce5..2c31f3e4523 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: Michel Weimerskirch <michel@weimerskirch.net>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,59 +138,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Astellungen" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 Minutt hir" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "virun {minutes} Minutten" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "virun 1 Stonn" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "virun {hours} Stonnen" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "haut" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "gëschter" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "virun {days} Deeg" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "leschte Mount" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "virun {months} Méint" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "Méint hir" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "Joren hir" @@ -226,8 +226,8 @@ 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 "Feeler" @@ -247,7 +247,7 @@ msgstr "Gedeelt" 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 "Feeler beim Deelen" @@ -283,98 +283,98 @@ msgstr "Passwuertgeschützt" msgid "Password" msgstr "Passwuert" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" msgstr "Ëffentlechen Upload erlaaben" -#: js/share.js:189 +#: js/share.js:191 msgid "Email link to person" msgstr "Link enger Persoun mailen" -#: js/share.js:190 +#: js/share.js:192 msgid "Send" msgstr "Schécken" -#: js/share.js:195 +#: js/share.js:197 msgid "Set expiration date" msgstr "Verfallsdatum setzen" -#: js/share.js:196 +#: js/share.js:198 msgid "Expiration date" msgstr "Verfallsdatum" -#: js/share.js:228 +#: js/share.js:230 msgid "Share via email:" msgstr "Via E-Mail deelen:" -#: js/share.js:230 +#: js/share.js:232 msgid "No people found" msgstr "Keng Persoune fonnt" -#: js/share.js:268 +#: js/share.js:270 msgid "Resharing is not allowed" msgstr "Weiderdeelen ass net erlaabt" -#: js/share.js:304 +#: js/share.js:306 msgid "Shared in {item} with {user}" 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 "kann änneren" -#: js/share.js:339 +#: js/share.js:341 msgid "access control" 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 "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 "Passwuertgeschützt" -#: js/share.js:618 +#: js/share.js:620 msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:630 +#: js/share.js:632 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:645 +#: js/share.js:647 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:656 +#: js/share.js:658 msgid "Email sent" msgstr "Email geschéckt" -#: js/update.js:14 +#: js/update.js:17 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 "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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Den Update war erfollegräich. Du gëss elo bei d'ownCloud ëmgeleet." @@ -466,7 +466,7 @@ msgstr "Zougrëff net erlaabt" msgid "Cloud not found" msgstr "Cloud net fonnt" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -477,10 +477,6 @@ msgid "" "Cheers!" 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/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "Web-Servicer ënnert denger Kontroll" - #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "Kategorien editéieren" @@ -612,7 +608,7 @@ msgstr "Umellen" msgid "Alternative Logins" 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 " diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 9b25c288eba..1facf9d9e42 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 19:10+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 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:71 msgid "No file was uploaded" msgstr "Et ass kee Fichier ropgeluede ginn" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Et feelt en temporären Dossier" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Konnt net op den Disk schreiwen" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "Läschen" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Numm" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Gréisst" @@ -305,6 +305,10 @@ msgstr "Hei ass näischt. Lued eppes rop!" msgid "Download" msgstr "Download" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Net méi deelen" @@ -327,19 +331,19 @@ msgstr "Fichieren gi gescannt, war weg." msgid "Current scanning" msgstr "Momentane Scan" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "Datei" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "Dateien" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 24e445eecad..ce6e2dcb9d5 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 38eb47a8fb3..4de0753459a 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# llaera <llaera@outlook.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: llaera <llaera@outlook.com>\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Den Passwuert ass incorrect. Probeier ed nach eng keier." #: templates/authenticate.php:7 msgid "Password" @@ -32,25 +33,25 @@ msgstr "Fortschécken" #: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s huet den Dossier %s mad der gedeelt" #: templates/public.php:20 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s deelt den Fichier %s mad dir" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Download" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Eroplueden" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/public.php:83 +#: templates/public.php:87 msgid "No preview available for" -msgstr "" +msgstr "Keeng Preview do fir" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 6c22764330a..21537838379 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 19:10+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 58acc8cbc9b..88245025b74 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Web-Servicer ënnert denger Kontroll" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -171,21 +171,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 7a8b99829c0..b270ae29bae 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 19:20+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 219f5cf3075..3b2ee122367 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 19:10+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 b5f9d66468c..ca47542aa6c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -139,59 +139,59 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "Prieš {count} minutes" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "prieš 1 valandą" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "prieš {hours} valandas" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "šiandien" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "vakar" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "Prieš {days} dienas" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "prieš {months} mėnesių" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "praeitais metais" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "prieš metus" @@ -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,98 +284,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud bendruomenei</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Atnaujinimas buvo sėkmingas. Nukreipiame į jūsų ownCloud." @@ -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" @@ -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 17e4817de64..3558b00c658 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Failai nebuvo įkelti dėl nežinomos priežasties" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Failas įkeltas sėkmingai, be klaidų" -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Failas buvo įkeltas tik dalinai" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Nebuvo įkeltas joks failas" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Nėra laikinojo katalogo" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Nepavyko įrašyti į diską" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Nepakanka vietos serveryje" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Neteisingas aplankas" @@ -129,43 +129,43 @@ msgstr "Ištrinti" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Laukiantis" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "pakeisti" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "pasiūlyti pavadinimą" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "ištrinti" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "įkeliami failai" @@ -205,7 +205,7 @@ msgstr "Negalimas aplanko pavadinimas. 'Shared' pavadinimas yra rezervuotas ownC msgid "Name" msgstr "Pavadinimas" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Dydis" @@ -306,6 +306,10 @@ msgstr "Čia tuščia. Įkelkite ką nors!" msgid "Download" msgstr "Atsisiųsti" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Nebesidalinti" @@ -328,19 +332,19 @@ msgstr "Skenuojami failai, prašome palaukti." msgid "Current scanning" msgstr "Šiuo metu skenuojama" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "failas" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "failai" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 28437191ca0..28d9944579b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 07eee4f1469..7964ea771fe 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -40,18 +40,18 @@ msgstr "%s pasidalino su jumis %s aplanku" msgid "%s shared the file %s with you" msgstr "%s pasidalino su jumis %s failu" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Atsisiųsti" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Įkelti" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/public.php:83 +#: 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 76ee3a80b67..22d7187418f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 51e72311b5a..ba8209ab029 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Administravimas" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "jūsų valdomos web paslaugos" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP atsisiuntimo galimybė yra išjungta." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Failai turi būti parsiunčiami vienas po kito." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Atgal į Failus" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Pasirinkti failai per dideli archyvavimui į ZIP." @@ -171,21 +171,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 770dc44c77f..a586744f181 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# fizikiukas <fizikiukas@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,11 +37,11 @@ msgstr "" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "Grupė jau egzistuoja" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "Nepavyko pridėti grupės" #: ajax/enableapp.php:11 msgid "Could not enable app. " @@ -56,11 +57,11 @@ msgstr "Netinkamas el. paštas" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "Nepavyko ištrinti grupės" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "" +msgstr "Nepavyko ištrinti vartotojo" #: ajax/setlanguage.php:15 msgid "Language changed" @@ -77,20 +78,20 @@ msgstr "" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Nepavyko pridėti vartotojo prie grupės %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Nepavyko ištrinti vartotojo iš grupės %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "Nepavyko atnaujinti programos." #: js/apps.js:35 msgid "Update to {appversion}" -msgstr "" +msgstr "Atnaujinti iki {appversion}" #: js/apps.js:41 js/apps.js:81 msgid "Disable" @@ -102,7 +103,7 @@ msgstr "Įjungti" #: js/apps.js:60 msgid "Please wait...." -msgstr "" +msgstr "Prašome palaukti..." #: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 msgid "Error" @@ -110,15 +111,15 @@ msgstr "Klaida" #: js/apps.js:95 msgid "Updating...." -msgstr "" +msgstr "Atnaujinama..." #: js/apps.js:98 msgid "Error while updating app" -msgstr "" +msgstr "Įvyko klaida atnaujinant programą" #: js/apps.js:101 msgid "Updated" -msgstr "" +msgstr "Atnaujinta" #: js/personal.js:118 msgid "Saving..." @@ -126,7 +127,7 @@ msgstr "Saugoma..." #: js/users.js:47 msgid "deleted" -msgstr "" +msgstr "ištrinta" #: js/users.js:47 msgid "undo" @@ -134,7 +135,7 @@ msgstr "anuliuoti" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "Nepavyko ištrinti vartotojo" #: js/users.js:92 templates/users.php:26 templates/users.php:87 #: templates/users.php:112 @@ -151,19 +152,19 @@ msgstr "Ištrinti" #: js/users.js:269 msgid "add group" -msgstr "" +msgstr "pridėti grupę" #: js/users.js:428 msgid "A valid username must be provided" -msgstr "" +msgstr "Vartotojo vardas turi būti tinkamas" #: js/users.js:429 js/users.js:435 js/users.js:450 msgid "Error creating user" -msgstr "" +msgstr "Klaida kuriant vartotoją" #: js/users.js:434 msgid "A valid password must be provided" -msgstr "" +msgstr "Slaptažodis turi būti tinkamas" #: personal.php:37 personal.php:38 msgid "__language_name__" @@ -199,7 +200,7 @@ msgstr "" #: templates/admin.php:46 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Trūksta 'fileinfo' modulio" #: templates/admin.php:49 msgid "" @@ -267,7 +268,7 @@ msgstr "" #: templates/admin.php:144 msgid "Allow links" -msgstr "" +msgstr "Lesti nuorodas" #: templates/admin.php:145 msgid "Allow users to share items to the public with links" @@ -275,7 +276,7 @@ msgstr "" #: templates/admin.php:152 msgid "Allow resharing" -msgstr "" +msgstr "Leisti dalintis" #: templates/admin.php:153 msgid "Allow users to share items shared with them again" @@ -291,7 +292,7 @@ msgstr "" #: templates/admin.php:170 msgid "Security" -msgstr "" +msgstr "Saugumas" #: templates/admin.php:183 msgid "Enforce HTTPS" @@ -326,7 +327,7 @@ msgstr "Mažiau" #: templates/admin.php:236 templates/personal.php:116 msgid "Version" -msgstr "" +msgstr "Versija" #: templates/admin.php:240 templates/personal.php:119 msgid "" @@ -376,11 +377,11 @@ msgstr "" #: templates/help.php:11 msgid "Forum" -msgstr "" +msgstr "Forumas" #: templates/help.php:14 msgid "Bugtracker" -msgstr "" +msgstr "Klaidų sekimas" #: templates/help.php:17 msgid "Commercial Support" @@ -449,15 +450,18 @@ msgstr "Padėkite išversti" #: templates/personal.php:106 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 msgid "Login Name" -msgstr "" +msgstr "Vartotojo vardas" #: templates/users.php:30 msgid "Create" @@ -479,7 +483,7 @@ msgstr "" #: templates/users.php:48 templates/users.php:142 msgid "Unlimited" -msgstr "" +msgstr "Neribota" #: templates/users.php:66 templates/users.php:157 msgid "Other" @@ -499,8 +503,8 @@ msgstr "" #: templates/users.php:106 msgid "set new password" -msgstr "" +msgstr "nustatyti naują slaptažodį" #: templates/users.php:137 msgid "Default" -msgstr "" +msgstr "Numatytasis" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 33f1695bc85..e0913778c6d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 6a104f69c38..596063a8c95 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "pirms 1 minūtes" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "pirms {minutes} minūtēm" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "pirms {hours} stundām" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "šodien" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "vakar" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "pirms {days} dienām" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "pirms {months} mēnešiem" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "gadus atpakaļ" @@ -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,98 +282,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Atjaunināšana beidzās nesekmīgi. Lūdzu, ziņojiet par šo problēmu <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud kopienai</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Atjaunināšana beidzās sekmīgi. Tagad pārsūta jūs uz ownCloud." @@ -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" @@ -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 b291b070d2f..9a4f023d011 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 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:66 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:67 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:69 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:70 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:71 msgid "No file was uploaded" msgstr "Neviena datne netika augšupielādēta" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Trūkst pagaidu mapes" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Neizdevās saglabāt diskā" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Nav pietiekami daudz vietas" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Nederīga direktorija." @@ -128,43 +128,43 @@ msgstr "Dzēst" msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} jau eksistē" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "ieteiktais nosaukums" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "aizvietoja {new_name} ar {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "atsaukt" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "veikt dzēšanas darbību" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Augšupielādē 1 datni" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "Nederīgs mapes nosaukums. “Koplietots” izmantojums ir rezervēts ow msgid "Name" msgstr "Nosaukums" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Izmērs" @@ -305,6 +305,10 @@ msgstr "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!" msgid "Download" msgstr "Lejupielādēt" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Pārtraukt dalīšanos" @@ -327,19 +331,19 @@ msgstr "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet." msgid "Current scanning" msgstr "Šobrīd tiek caurskatīts" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "fails" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "faili" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 3766bd91104..37010aca0bc 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 d159420f8b5..84e84ebb6fe 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s ar jums dalījās ar mapi %s" msgid "%s shared the file %s with you" msgstr "%s ar jums dalījās ar datni %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Lejupielādēt" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Augšupielādēt" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/public.php:83 +#: 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 bb34d21680f..79221726cb7 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 56ef8b5899a..0542340ccc3 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Administratori" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "tīmekļa servisi tavā varā" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP lejupielādēšana ir izslēgta." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Datnes var lejupielādēt tikai katru atsevišķi." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Atpakaļ pie datnēm" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Izvēlētās datnes ir pārāk lielas, lai izveidotu zip datni." @@ -170,21 +170,21 @@ msgstr "Vainīgā komanda bija \"%s\", vārds: %s, parole: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nav derīga PostgreSQL parole un/vai lietotājvārds" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Iestatiet administratora lietotājvārdu." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Iestatiet administratora paroli." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, 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>." diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index ee84741e697..de3646dcb11 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,8 +452,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 4daadb93465..36a3cf4d28c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 b5ffeba213f..f269af81f32 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Подесувања" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "пред 1 минута" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "пред {minutes} минути" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "пред 1 час" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "пред {hours} часови" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "денеска" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "вчера" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "пред {days} денови" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "минатиот месец" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "пред {months} месеци" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "пред месеци" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "минатата година" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "пред години" @@ -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,98 +282,98 @@ 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 "Е-порака пратена" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "Уреди категории" @@ -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 019c4c16370..110fcf9b2ac 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Ниту еден фајл не се вчита. Непозната грешка" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Датотеката беше успешно подигната." -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Датотеката беше само делумно подигната." -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Не беше подигната датотека." -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Недостасува привремена папка" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Неуспеав да запишам на диск" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "Избриши" msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Чека" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "замени" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "предложи име" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "откажи" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "заменета {new_name} со {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "врати" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Име" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Големина" @@ -305,6 +305,10 @@ msgstr "Тука нема ништо. Снимете нешто!" msgid "Download" msgstr "Преземи" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Не споделувај" @@ -327,19 +331,19 @@ msgstr "Се скенираат датотеки, ве молам почекај msgid "Current scanning" msgstr "Моментално скенирам" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "датотека" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "датотеки" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 7b4ebc59934..89c9c7003b0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 56415f9de37..79f8fb86ba9 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s ја сподели папката %s со Вас" msgid "%s shared the file %s with you" msgstr "%s ја сподели датотеката %s со Вас" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Преземи" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Подигни" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/public.php:83 +#: 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 d4f949879a1..8089e6badad 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 d4656ea09d3..d6eeddede13 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Админ" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "веб сервиси под Ваша контрола" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Преземање во ZIP е исклучено" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Датотеките треба да се симнат една по една." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Назад кон датотеки" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Избраните датотеки се преголеми за да се генерира zip." @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index fcaab411089..57f5ee078dc 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,8 +452,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Користете ја оваа адреса да " +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index 9ad37ece8dc..77138bf0791 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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..d4f03fb1ffe --- /dev/null +++ b/l10n/ml_IN/files.po @@ -0,0 +1,352 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license 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-11 02:16+0200\n" +"PO-Revision-Date: 2013-07-11 00:18+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:45 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:22 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:59 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:66 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:67 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:69 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:70 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:71 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:72 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:73 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:91 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:123 +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 +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:80 +msgid "Size (MB)" +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:76 +msgid "directory" +msgstr "" + +#: templates/part.list.php:78 +msgid "directories" +msgstr "" + +#: templates/part.list.php:87 +msgid "file" +msgstr "" + +#: templates/part.list.php:89 +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..e1facfe8694 --- /dev/null +++ b/l10n/ml_IN/settings.po @@ -0,0 +1,509 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license 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-09 02:04+0200\n" +"PO-Revision-Date: 2013-07-09 00:04+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 +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +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 9bcdfd39370..2e8defd041a 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Tetapan" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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" @@ -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 bfb086d62ee..8c5874f6659 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Tiada fail dimuatnaik. Ralat tidak diketahui." -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Tiada ralat berlaku, fail berjaya dimuatnaik" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Fail yang dimuatnaik tidak lengkap" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Tiada fail dimuatnaik" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Direktori sementara hilang" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Gagal untuk disimpan" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "Padam" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Dalam proses" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ganti" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "Batal" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Nama" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Saiz" @@ -305,6 +305,10 @@ msgstr "Tiada apa-apa di sini. Muat naik sesuatu!" msgid "Download" msgstr "Muat turun" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "Fail sedang diimbas, harap bersabar." msgid "Current scanning" msgstr "Imbasan semasa" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "fail" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "fail" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index bddfe537e66..ca899e9a543 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 970b7e75f91..0d06f66a98c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Muat turun" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Muat naik" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/public.php:83 +#: 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 ec2dfa42494..38152cfc783 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 4fca82933b5..46919ef9e20 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Perkhidmatan web di bawah kawalan anda" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index d4b492cc02e..a2b3bfed7de 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index ed5d4b77a04..bae8baec54e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 4c59ffd1211..c3b11c007df 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "နိုဝင်ဘာ" msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "၁ မိနစ်အရင်က" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "၁ နာရီ အရင်က" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "ယနေ့" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "နှစ် အရင်က" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "" @@ -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 00193680e20..e735e16c204 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "ဒေါင်းလုတ်" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index bb40b83f316..9281093e69a 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: 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 e4d5993e77c..fa9116e505f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "အက်ဒမင်" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "ဖိုင်များသည် တစ်ခုပြီး တစ်ခုဒေါင်းလုတ်ချရန်လိုအပ်သည်" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "ဖိုင်သို့ပြန်သွားမည်" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "zip ဖိုင်အဖြစ်ပြုလုပ်ရန် ရွေးချယ်ထားသောဖိုင်များသည် အရမ်းကြီးလွန်းသည်" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 9259cad22c3..be3a8d04bcb 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/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-09 02:04+0200\n" +"PO-Revision-Date: 2013-07-09 00:04+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" @@ -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 "" -#: 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 " @@ -386,73 +386,76 @@ 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 -msgid "Use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:108 +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 8dbec6d9c75..64b9a7feb87 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "i dag" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "i går" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "forrige måned" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "måneder siden" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "forrige år" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "år siden" @@ -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,98 +282,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" @@ -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" @@ -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 28d6d3bb05f..2becc739589 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -4,13 +4,14 @@ # # Translators: # Hans Nesse <>, 2013 +# Stein-Aksel Basma <stabasm@hotmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Stein-Aksel Basma <stabasm@hotmail.com>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,54 +29,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:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "Kunne ikke sette opplastingskatalog." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" msgstr "" -#: ajax/upload.php:55 +#: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer ble lastet opp. Ukjent feil." -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 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:71 msgid "No file was uploaded" msgstr "Ingen filer ble lastet opp" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Mangler midlertidig mappe" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Klarte ikke å skrive til disk" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Ikke nok lagringsplass" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Ugyldig katalog." @@ -129,43 +130,43 @@ msgstr "Slett" msgid "Rename" msgstr "Omdøp" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ventende" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "erstatt" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "erstatt {new_name} med {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "angre" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "filer lastes opp" @@ -205,7 +206,7 @@ msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." msgid "Name" msgstr "Navn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Størrelse" @@ -306,6 +307,10 @@ msgstr "Ingenting her. Last opp noe!" msgid "Download" msgstr "Last ned" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Størrelse (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Avslutt deling" @@ -328,19 +333,19 @@ msgstr "Skanner etter filer, vennligst vent." msgid "Current scanning" msgstr "Pågående skanning" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "katalog" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "kataloger" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "fil" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "filer" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index bf474404763..dd46b97e29d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 436b638a782..323be352c78 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stein-Aksel Basma <stabasm@hotmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Stein-Aksel Basma <stabasm@hotmail.com>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Passordet er feil. Prøv på nytt." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s delte mappen %s med deg" msgid "%s shared the file %s with you" msgstr "%s delte filen %s med deg" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Last ned" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Last opp" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:83 +#: 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 3d779883ea4..2b6b965236c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 21f56e5a18a..603594ebf52 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "web tjenester du kontrollerer" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP-nedlasting av avslått" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Filene må lastes ned en om gangen" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Tilbake til filer" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "De valgte filene er for store til å kunne generere ZIP-fil" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Vennligst dobbelsjekk <a href='%s'>installasjonsguiden</a>." diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index c00cb1b8e8e..dc807c6be9d 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -4,13 +4,14 @@ # # Translators: # Hans Nesse <>, 2013 +# Stein-Aksel Basma <stabasm@hotmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Stein-Aksel Basma <stabasm@hotmail.com>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -453,8 +454,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Bruk denne adressen for å <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">få tilgang til filene dine via WebDAV</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 2a5b9a82378..868afb47e69 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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.po b/l10n/ne/files.po index ef843dbbaaa..fbce462cfdc 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/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-11 02:16+0200\n" +"PO-Revision-Date: 2013-07-11 00:18+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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index ae9c39a29d8..b73182b3a62 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/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-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-07-09 02:04+0200\n" +"PO-Revision-Date: 2013-07-09 00:04+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" @@ -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 "" -#: 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 " @@ -386,73 +386,76 @@ 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 -msgid "Use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:108 +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/nl/core.po b/l10n/nl/core.po index a248132adc5..2a79ca3b8f8 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: André Koot <meneer@tken.net>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Instellingen" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "vandaag" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "gisteren" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "vorige maand" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "vorig jaar" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "jaar geleden" @@ -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,98 +284,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "De update is niet geslaagd. Meld dit probleem aan bij de <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "De update is geslaagd. Je wordt teruggeleid naar je eigen ownCloud." @@ -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" @@ -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 ae29056bfc1..def66643a8b 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Er was geen bestand geladen. Onbekende fout" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Het bestand is gedeeltelijk geüpload" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Er is geen bestand geüpload" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Er ontbreekt een tijdelijke map" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Schrijven naar schijf mislukt" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Niet genoeg opslagruimte beschikbaar" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Ongeldige directory." @@ -129,43 +129,43 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "vervang" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "Stel een naam voor" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "uitvoeren verwijderactie" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "bestanden aan het uploaden" @@ -205,7 +205,7 @@ msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" msgid "Name" msgstr "Naam" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Grootte" @@ -306,6 +306,10 @@ msgstr "Er bevindt zich hier niets. Upload een bestand!" msgid "Download" msgstr "Downloaden" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Stop met delen" @@ -328,19 +332,19 @@ msgstr "Bestanden worden gescand, even wachten." msgid "Current scanning" msgstr "Er wordt gescand" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "bestand" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "bestanden" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 4ebdfbe8dbf..8235d4de51b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 a6294e70a70..2bb1cd23eb2 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s deelt de map %s met u" msgid "%s shared the file %s with you" msgstr "%s deelt het bestand %s met u" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Downloaden" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Uploaden" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/public.php:83 +#: 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 417ee106bd2..92cef654a5f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 18171e425e0..dd8de2386a0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Beheerder" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Webdiensten in eigen beheer" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP download is uitgeschakeld." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Bestanden moeten één voor één worden gedownload." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Terug naar bestanden" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken." @@ -171,21 +171,21 @@ msgstr "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL gebruikersnaam en/of wachtwoord ongeldig" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Stel de gebruikersnaam van de beheerder in." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Stel een beheerderswachtwoord in." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Controleer de <a href='%s'>installatiehandleiding</a> goed." diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 21ec7c4f262..c40572309f0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -454,8 +454,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 8938851e6d3..e928be33bcd 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 98bfac971d7..c2cf1e60e65 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -139,59 +139,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 minutt sidan" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} minutt sidan" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 time sidan" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} timar sidan" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "i dag" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "i går" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} dagar sidan" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "førre månad" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} månadar sidan" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "i fjor" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "år sidan" @@ -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,98 +284,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Oppdateringa feila. Ver venleg og rapporter feilen til <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud-fellesskapet</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Oppdateringa er fullført. Sender deg vidare til ownCloud no." @@ -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" @@ -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 c4bb1533ede..8fd60974c15 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Ingen filer lasta opp. Ukjend feil" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Ingen feil, fila vart lasta opp" -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Fila vart berre delvis lasta opp" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Ingen filer vart lasta opp" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Manglar ei mellombels mappe" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Klarte ikkje skriva til disk" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Ikkje nok lagringsplass tilgjengeleg" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -130,43 +130,43 @@ msgstr "Slett" msgid "Rename" msgstr "Endra namn" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Under vegs" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} finst allereie" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "byt ut" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "føreslå namn" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "bytte ut {new_name} med {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "angre" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fil lastar opp" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "filer lastar opp" @@ -206,7 +206,7 @@ msgstr "Ugyldig mappenamn. Mappa «Shared» er reservert av ownCloud" msgid "Name" msgstr "Namn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Storleik" @@ -307,6 +307,10 @@ msgstr "Ingenting her. Last noko opp!" msgid "Download" msgstr "Last ned" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Udel" @@ -329,19 +333,19 @@ msgstr "Skannar filer, ver venleg og vent." msgid "Current scanning" msgstr "Køyrande skanning" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 1bb375dea35..a6d4331aa83 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 e3d7bd1cadb..ece03b998d3 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -40,18 +40,18 @@ msgstr "%s delte mappa %s med deg" msgid "%s shared the file %s with you" msgstr "%s delte fila %s med deg" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Last ned" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Last opp" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:83 +#: 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 60d7ca60faa..03be1f592c7 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 87642302810..cd95c4d7d1b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Administrer" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Vev tjenester under din kontroll" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -171,21 +171,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Ver vennleg og dobbeltsjekk <a href='%s'>installasjonsrettleiinga</a>." diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index fee3ace1a7b..e757b690108 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -454,8 +454,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 7906232c66a..63a41c217b6 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 fb6d956410d..9076a0b2d86 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Configuracion" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "uèi" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "ièr" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "mes passat" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "meses a" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "an passat" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "ans a" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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" @@ -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 7913124e552..3e04a95bce6 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Amontcargament capitat, pas d'errors" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Lo fichièr foguèt pas completament amontcargat" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Cap de fichièrs son estats amontcargats" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Un dorsièr temporari manca" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "L'escriptura sul disc a fracassat" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "Escafa" msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Al esperar" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "remplaça" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "nom prepausat" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "anulla" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "defar" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fichièrs al amontcargar" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Nom" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Talha" @@ -305,6 +305,10 @@ msgstr "Pas res dedins. Amontcarga qualquaren" msgid "Download" msgstr "Avalcarga" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Pas partejador" @@ -327,19 +331,19 @@ msgstr "Los fiichièrs son a èsser explorats, " msgid "Current scanning" msgstr "Exploracion en cors" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "fichièr" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "fichièrs" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 3ab7dadb481..c988745fe33 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 648e45ac3f0..65215e38450 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Avalcarga" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Amontcarga" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/public.php:83 +#: 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 93897df4112..e3da0eb9ce7 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 0e80821a6b7..4408f700fde 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 06:32+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" @@ -43,21 +43,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Services web jos ton contraròtle" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Avalcargar los ZIP es inactiu." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Los fichièrs devan èsser avalcargats un per un." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Torna cap als fichièrs" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index e0668bd3f69..72d13196a23 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index bbc7fccc223..80b585c88c9 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 87a46dd01b3..21f5598e835 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,59 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 minutę temu" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 godzinę temu" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "dziś" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "lat temu" @@ -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,98 +284,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">spoleczności ownCloud</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Aktualizacji zakończyła się powodzeniem. Przekierowuję do ownCloud." @@ -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" @@ -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 184bc9e249a..4cd39a28636 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Żaden plik nie został załadowany. Nieznany błąd" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 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:71 msgid "No file was uploaded" msgstr "Nie wysłano żadnego pliku" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Brak folderu tymczasowego" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Błąd zapisu na dysk" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Za mało dostępnego miejsca" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Zła ścieżka." @@ -130,43 +130,43 @@ msgstr "Usuń" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "zastąp" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "zasugeruj nazwę" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "zastąpiono {new_name} przez {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "cofnij" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "wykonaj operację usunięcia" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 plik wczytywany" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "pliki wczytane" @@ -206,7 +206,7 @@ msgstr "Nieprawidłowa nazwa folderu. Korzystanie z nazwy „Shared” jest zare msgid "Name" msgstr "Nazwa" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Rozmiar" @@ -307,6 +307,10 @@ msgstr "Pusto. Wyślij coś!" msgid "Download" msgstr "Pobierz" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" @@ -329,19 +333,19 @@ msgstr "Skanowanie plików, proszę czekać." msgid "Current scanning" msgstr "Aktualnie skanowane" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "Katalog" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "Katalogi" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "plik" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "pliki" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index fa243c4f0c7..2a8a390ada2 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 51fd0ff3e11..d544495f6fd 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s współdzieli folder z tobą %s" msgid "%s shared the file %s with you" msgstr "%s współdzieli z tobą plik %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Pobierz" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Wyślij" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/public.php:83 +#: 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 aca2ca239a9..ff3f2489653 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 57736058c23..d76d6db56ae 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Administrator" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Kontrolowane serwisy" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Pobieranie ZIP jest wyłączone." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Pliki muszą zostać pobrane pojedynczo." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Wróć do plików" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Wybrane pliki są zbyt duże, aby wygenerować plik zip." @@ -171,21 +171,21 @@ msgstr "Niepoprawne polecania: \"%s\", nazwa: %s, hasło: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL: Nazwa użytkownika i/lub hasło jest niepoprawne" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Ustaw nazwę administratora." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Ustaw hasło administratora." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Sprawdź ponownie <a href='%s'>przewodniki instalacji</a>." diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 64b74c896f6..43f8859c530 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -454,8 +454,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index e0f4cee0248..30b55115702 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 65fd184b7f2..752b8a1c378 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: bjamalaro <bjamalaro@yahoo.com.br>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+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" @@ -139,59 +139,59 @@ msgstr "novembro" msgid "December" msgstr "dezembro" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Ajustes" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 minuto atrás" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "hoje" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "ontem" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "último mês" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "meses atrás" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "último ano" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "anos atrás" @@ -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,98 +284,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "A atualização falhou. Por favor, relate este problema para a <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">comunidade ownCloud</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "A atualização teve êxito. Você será redirecionado ao ownCloud agora." @@ -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" @@ -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 04247de57ba..27fb5fb854d 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 18:30+0000\n" -"Last-Translator: tuliouel\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Nenhum arquivo foi enviado. Erro desconhecido" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "O arquivo foi parcialmente enviado" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Nenhum arquivo enviado" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Pasta temporária não encontrada" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Falha ao escrever no disco" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Espaço de armazenamento insuficiente" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Diretório inválido." @@ -131,43 +131,43 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "substituir" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugerir nome" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "Substituído {old_name} por {new_name} " -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "desfazer" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "realizar operação de exclusão" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "enviando arquivos" @@ -207,7 +207,7 @@ msgstr "Nome de pasta inválido. O uso de 'Shared' é reservado para o Owncloud" msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Tamanho" @@ -308,6 +308,10 @@ msgstr "Nada aqui.Carrege alguma coisa!" msgid "Download" msgstr "Baixar" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Tamanho (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Descompartilhar" @@ -330,19 +334,19 @@ msgstr "Arquivos sendo escaneados, por favor aguarde." msgid "Current scanning" msgstr "Scanning atual" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "diretório" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "diretórios" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "arquivo" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "arquivos" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 68b80dba9ed..907be4d30a2 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+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 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" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,14 +65,14 @@ msgstr "Sua chave privada não é válida! Provavelmente sua senha foi alterada #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Requisitos em falta." #: 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 "" +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 7d3361b2e1e..0df8ed3d84d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 8fcaa983244..ab060dbf1ef 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Senha incorreta. Tente novamente." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s compartilhou a pasta %s com você" msgid "%s shared the file %s with you" msgstr "%s compartilhou o arquivo %s com você" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Baixar" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Upload" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/public.php:83 +#: 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 b6502c0a24a..30a17408cc5 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 d55efcc9cb4..d783fa2119f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "serviços web sob seu controle" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Download ZIP está desligado." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Arquivos precisam ser baixados um de cada vez." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Voltar para Arquivos" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Arquivos selecionados são muito grandes para gerar arquivo zip." @@ -171,21 +171,21 @@ msgstr "Comando ofensivo era: \"%s\", nome: %s, senha: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nome de usuário e/ou senha PostgreSQL inválido(s)" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Defina um nome de usuário de administrador." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Defina uma senha de administrador." -#: setup.php:198 +#: setup.php:184 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 estar quebrada." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Por favor, confira os <a href='%s'>guias de instalação</a>." diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index f36dd96b18c..6b68d93704a 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: Flávio Veras <flaviove@gmail.com>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: bjamalaro <bjamalaro@yahoo.com.br>\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" @@ -454,8 +454,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Use esse endereço para <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">acessar seus arquivos via WebDAV</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 0ced82a9ab2..07c2c73f82d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 0488643d6cb..e780a4d4f38 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Bruno Martins <bruno@bmartins.eu>, 2013 # bmgmatias <bmgmatias@gmail.com>, 2013 # Mouxy <daniel@mouxy.net>, 2013 +# Helder Meneses <helder.meneses@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: Helder Meneses <helder.meneses@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +24,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s partilhado »%s« contigo" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -139,59 +141,59 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Configurações" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "Há 1 minuto" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "Há 1 horas" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "hoje" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "ontem" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "ultímo mês" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "meses atrás" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "ano passado" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "anos atrás" @@ -227,8 +229,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 +250,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,98 +286,98 @@ msgstr "Proteger com palavra-passe" msgid "Password" msgstr "Password" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Permitir Envios Públicos" -#: 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" -#: js/update.js:14 +#: js/update.js:17 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 "A actualização falhou. Por favor reporte este incidente seguindo este link <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora." @@ -417,7 +419,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Sim, tenho a certeza que pretendo redefinir a minha palavra-passe agora." #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -467,7 +469,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" @@ -476,11 +478,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" - -#: templates/altmail.php:7 templates/mail.php:24 -msgid "web services under your control" -msgstr "serviços web sob o seu controlo" +msgstr "Olá,\n\nApenas para lhe informar que %s partilhou %s consigo.\nVeja-o: %s\n\nCumprimentos!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -613,12 +611,12 @@ 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 " "href=\"%s\">View it!</a><br><br>Cheers!" -msgstr "" +msgstr "Olá,<br><br>Apenas para lhe informar que %s partilhou »%s« consigo.<br><a href=\"%s\">Consulte-o aqui!</a><br><br>Cumprimentos!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 3eead822b74..2c90f91ff65 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -4,13 +4,14 @@ # # Translators: # bmgmatias <bmgmatias@gmail.com>, 2013 +# FernandoMASilva, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: FernandoMASilva\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,54 +29,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:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "Não foi possível criar o diretório de upload" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Token inválido" -#: ajax/upload.php:55 +#: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" msgstr "Nenhum ficheiro foi carregado. Erro desconhecido" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "O ficheiro seleccionado foi apenas carregado parcialmente" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Nenhum ficheiro foi submetido" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Está a faltar a pasta temporária" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Falhou a escrita no disco" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Não há espaço suficiente em disco" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Directório Inválido" @@ -129,43 +130,43 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "substituir" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugira um nome" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "substituido {new_name} por {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "desfazer" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Executar a tarefa de apagar" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "A enviar os ficheiros" @@ -205,7 +206,7 @@ msgstr "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud" msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Tamanho" @@ -232,7 +233,7 @@ msgstr "{count} ficheiros" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s não pode ser renomeada" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -306,6 +307,10 @@ msgstr "Vazio. Envie alguma coisa!" msgid "Download" msgstr "Transferir" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Tamanho (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Deixar de partilhar" @@ -328,19 +333,19 @@ msgstr "Os ficheiros estão a ser analisados, por favor aguarde." msgid "Current scanning" msgstr "Análise actual" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "diretório" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "diretórios" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "ficheiro" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "ficheiros" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 4e37dd6eb31..98ac280259d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 4d38690dd97..bb6a7144c86 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s partilhou a pasta %s consigo" msgid "%s shared the file %s with you" msgstr "%s partilhou o ficheiro %s consigo" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Transferir" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Carregar" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/public.php:83 +#: 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 c6cddd6f0ed..021a20f9a32 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 4e2b5d081d9..1a49cfb1aa8 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "serviços web sob o seu controlo" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Descarregamento em ZIP está desligado." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Os ficheiros precisam de ser descarregados um por um." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Voltar a Ficheiros" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip." @@ -171,21 +171,21 @@ msgstr "O comando gerador de erro foi: \"%s\", nome: %s, password: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nome de utilizador/password do PostgreSQL inválido" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Definir um nome de utilizador de administrador" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Definiar uma password de administrador" -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Por favor verifique <a href='%s'>installation guides</a>." diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 9391d4e97d0..d46dcc9b595 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -5,14 +5,15 @@ # Translators: # bmgmatias <bmgmatias@gmail.com>, 2013 # Mouxy <daniel@mouxy.net>, 2013 +# Helder Meneses <helder.meneses@gmail.com>, 2013 # Nelson Rosado <nelsontrosado@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Helder Meneses <helder.meneses@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -455,8 +456,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Use este endereço para <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">aceder aos seus ficheiros via WebDav</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 3809ce19f4d..a96580b13e7 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -3,14 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Bruno Martins <bruno@bmartins.eu>, 2013 # Mouxy <daniel@mouxy.net>, 2013 +# Helder Meneses <helder.meneses@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: Mouxy <daniel@mouxy.net>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Bruno Martins <bruno@bmartins.eu>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -359,7 +361,7 @@ msgid "" "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 "" +msgstr "Por padrão o nome de utilizador interno vai ser criado através do atributo UUID. Desta forma é assegurado que o nome é único e os caracteres nao necessitam de serem convertidos. O nome interno tem a restrição de que apenas estes caracteres são permitidos: [ a-zA-Z0-9_.@- ]. Outros caracteres são substituidos pela sua correspondência ASCII ou simplesmente omitidos. Mesmo assim, quando for detetado uma colisão irá ser acrescentado um número. O nome interno é usado para identificar o utilizador internamente. É também o nome utilizado para a pasta inicial no ownCloud. É também parte de URLs remotos, como por exemplo os serviços *DAV. Com esta definição, o comportamento padrão é pode ser sobreposto. Para obter o mesmo comportamento antes do ownCloud 5 introduza o atributo do nome no campo seguinte. Deixe vazio para obter o comportamento padrão. As alterações apenas serão feitas para novos utilizadores LDAP." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -378,7 +380,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 "Por defeito, o ownCloud deteta automaticamente o atributo UUID. Este atributo é usado para identificar inequivocamente grupos e utilizadores LDAP. Igualmente, o nome de utilizador interno é criado com base no UUID, se o contrário não for especificado. Pode sobrepor esta definição colocando um atributo à sua escolha. Tenha em atenção que esse atributo deve ser válido tanto para grupos como para utilizadores, e que é único. Deixe em branco para optar pelo comportamento por defeito. Estas alteração apenas terão efeito em novos utilizadores e grupos mapeados (adicionados)." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -401,7 +403,7 @@ msgid "" "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 "" +msgstr "O ownCloud usa nomes de utilizadores para guardar e atribuir (meta) dados. Para identificar com precisão os utilizadores, cada utilizador de LDAP tem um nome de utilizador interno. Isto requer um mapeamento entre o utilizador LDAP e o utilizador ownCloud. Adicionalmente, o DN é colocado em cache para reduzir a interação com LDAP, porém não é usado para identificação. Se o DN muda, essas alterações serão vistas pelo ownCloud. O nome interno do ownCloud é usado em todo o lado, no ownCloud. Limpar os mapeamentos deixará vestígios em todo o lado. A limpeza dos mapeamentos não é sensível à configuração, pois afeta todas as configurações de LDAP! Nunca limpe os mapeamentos num ambiente de produção, apenas o faça numa fase de testes ou experimental." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 13b672d7b54..aa1a719569d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+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" @@ -139,59 +140,59 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Setări" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urma" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "Acum o ora" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} ore în urmă" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "astăzi" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "ieri" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} zile in urma" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "ultima lună" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} luni în urmă" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "ultimul an" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "ani în urmă" @@ -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,98 +285,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Modernizarea a eșuat! <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">Te rugam sa raportezi problema aici.</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Modernizare reusita! Vei fii redirectionat!" @@ -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" @@ -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 1e02a96a148..b51283856dc 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 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:66 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:67 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:69 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:70 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:71 msgid "No file was uploaded" msgstr "Nu a fost încărcat nici un fișier" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Lipsește un director temporar" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Eroare la scriere pe disc" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Nu este suficient spațiu disponibil" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Director invalid." @@ -130,43 +131,43 @@ msgstr "Șterge" msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "În așteptare" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} deja exista" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "înlocuire" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugerează nume" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "anulare" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} inlocuit cu {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "efectueaza operatiunea de stergere" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fișiere se încarcă" @@ -206,7 +207,7 @@ msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" msgid "Name" msgstr "Nume" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Dimensiune" @@ -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" @@ -307,6 +308,10 @@ msgstr "Nimic aici. Încarcă ceva!" msgid "Download" msgstr "Descarcă" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Anulare partajare" @@ -329,19 +334,19 @@ msgstr "Fișierele sunt scanate, te rog așteptă." msgid "Current scanning" msgstr "În curs de scanare" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "catalog" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "cataloage" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "fișier" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "fișiere" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index a8f053485c9..a109acf7111 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 36d3190be83..9b50acebbd6 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Parola este incorectă. Încercaţi din nou." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s a partajat directorul %s cu tine" msgid "%s shared the file %s with you" msgstr "%s a partajat fișierul %s cu tine" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Descarcă" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Încărcare" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/public.php:83 +#: 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 cadca65fea9..630472fefdf 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 4909d62b61a..867b3021b10 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "servicii web controlate de tine" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Descărcarea ZIP este dezactivată." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Fișierele trebuie descărcate unul câte unul." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Înapoi la fișiere" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Fișierele selectate sunt prea mari pentru a genera un fișier zip." @@ -170,24 +170,24 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, 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 612326efcec..06231a57999 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -3,12 +3,13 @@ # 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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,19 +152,19 @@ 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:37 personal.php:38 msgid "__language_name__" @@ -184,32 +185,32 @@ msgstr "Directorul tău de date și fișierele tale probabil sunt accesibile pri #: templates/admin.php:31 msgid "Setup Warning" -msgstr "" +msgstr "Atenţie la implementare" #: 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: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:46 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Modulul \"Fileinfo\" lipsește" #: 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:60 msgid "Locale not working" -msgstr "" +msgstr "Localizarea nu funcționează" #: templates/admin.php:65 #, php-format @@ -217,11 +218,11 @@ 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:77 msgid "Internet connection not working" -msgstr "" +msgstr "Conexiunea la internet nu funcționează" #: templates/admin.php:80 msgid "" @@ -231,7 +232,7 @@ 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:94 msgid "Cron" @@ -291,7 +292,7 @@ msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același gr #: templates/admin.php:170 msgid "Security" -msgstr "" +msgstr "Securitate" #: templates/admin.php:183 msgid "Enforce HTTPS" @@ -452,8 +453,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index b3d9bbb73b2..28e302eb06d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 71329669d03..3cd5bac92aa 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -6,15 +6,16 @@ # alfsoft <alfsoft@gmail.com>, 2013 # lord93 <lordakryl@gmail.com>, 2013 # foool <andrglad@mail.ru>, 2013 +# Victor Bravo <>, 2013 # Vyacheslav Muranov <s@neola.ru>, 2013 # Langaru <langaru@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: Victor Bravo <>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -142,59 +143,59 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Конфигурация" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "час назад" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} часов назад" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "сегодня" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "вчера" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} месяцев назад" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "в прошлом году" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "несколько лет назад" @@ -230,8 +231,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 +252,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,98 +288,98 @@ 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 "Общий доступ к {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 "Письмо отправлено" -#: js/update.js:14 +#: js/update.js:17 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 "При обновлении произошла ошибка. Пожалуйста сообщите об этом в <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud сообщество</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud..." @@ -470,7 +471,7 @@ msgstr "Доступ запрещён" msgid "Cloud not found" msgstr "Облако не найдено" -#: templates/altmail.php:2 +#: templates/altmail.php:4 #, php-format msgid "" "Hey there,\n" @@ -481,10 +482,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 "Редактировать категрии" @@ -616,7 +613,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 e25b29fe210..c873c82c440 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -4,14 +4,16 @@ # # Translators: # lord93 <lordakryl@gmail.com>, 2013 +# Victor Bravo <>, 2013 +# hackproof <hackproof.ai@gmail.com>, 2013 # Friktor <antonshramko@yandex.ru>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: hackproof <hackproof.ai@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,54 +31,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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Файл не был загружен. Неизвестная ошибка" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Файл загружен успешно." -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Файл загружен частично" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Файл не был загружен" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Отсутствует временная папка" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Ошибка записи на диск" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Недостаточно доступного места в хранилище" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Неправильный каталог." @@ -130,43 +132,43 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ожидание" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "заменить" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "предложить название" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "отмена" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "заменено {new_name} на {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "отмена" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" -msgstr "выполняется операция удаления" +msgstr "выполнить операцию удаления" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "файлы загружаются" @@ -206,7 +208,7 @@ msgstr "Неправильное имя каталога. Имя 'Shared' зар msgid "Name" msgstr "Имя" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Размер" @@ -233,7 +235,7 @@ msgstr "{count} файлов" #: 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" @@ -307,6 +309,10 @@ msgstr "Здесь ничего нет. Загрузите что-нибудь!" msgid "Download" msgstr "Скачать" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Размер (Мб)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Закрыть общий доступ" @@ -329,19 +335,19 @@ msgstr "Подождите, файлы сканируются." msgid "Current scanning" msgstr "Текущее сканирование" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "директория" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "директории" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "файл" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "файлы" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index 87d54b1d21d..d206ebc8120 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -7,13 +7,14 @@ # alfsoft <alfsoft@gmail.com>, 2013 # lord93 <lordakryl@gmail.com>, 2013 # jekader <jekader@gmail.com>, 2013 +# Victor Bravo <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"POT-Creation-Date: 2013-07-09 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 10:40+0000\n" +"Last-Translator: Victor Bravo <>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,18 +64,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 "Ваш секретный ключ не действителен! Вероятно, ваш пароль был изменен вне системы OwnCloud (например, корпоративный каталог). Вы можете обновить секретный ключ в личных настройках на странице восстановления доступа к зашифрованным файлам. " #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +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 "" +msgstr "Пожалуйста, убедитесь, что PHP 5.3.3 или новее установлен и что расширение OpenSSL PHP включен и настроен. В настоящее время, шифрование для приложения было отключено." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 6d3950b6214..74d5e95f92f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 625e240fe35..ada29069aca 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Victor Bravo <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Victor Bravo <>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Неверный пароль. Попробуйте еще раз." #: templates/authenticate.php:7 msgid "Password" @@ -39,18 +40,18 @@ msgstr "%s открыл доступ к папке %s для Вас" msgid "%s shared the file %s with you" msgstr "%s открыл доступ к файлу %s для Вас" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Скачать" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Загрузка" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/public.php:83 +#: 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 9393a081efd..d7c65c9ef40 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 ab21862931a..5e7332dd81e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "веб-сервисы под вашим управлением" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP-скачивание отключено." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Назад к файлам" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Выбранные файлы слишком велики, чтобы создать zip файл." @@ -171,21 +171,21 @@ msgstr "Вызываемая команда была: \"%s\", имя: %s, пар msgid "PostgreSQL username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль PostgreSQL" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Установить имя пользователя для admin." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "становит пароль для admin." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Пожалуйста, дважды просмотрите <a href='%s'>инструкции по установке</a>." diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index f89a5dac1b6..c2371c70e81 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -6,14 +6,15 @@ # alfsoft <alfsoft@gmail.com>, 2013 # lord93 <lordakryl@gmail.com>, 2013 # eurekafag <eurekafag@eureka7.ru>, 2013 +# hackproof <hackproof.ai@gmail.com>, 2013 # Friktor <antonshramko@yandex.ru>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: lord93 <lordakryl@gmail.com>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: hackproof <hackproof.ai@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -456,8 +457,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Используйте этот адрес для подключения файлового менеджера к этому хранилищу" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Используйте этот адрес чтобы получить доступ к вашим файлам через WebDav - <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 9647486ac9c..1d16ef9873e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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/ru/user_webdavauth.po b/l10n/ru/user_webdavauth.po index d1e8b9599ba..c246ab79849 100644 --- a/l10n/ru/user_webdavauth.po +++ b/l10n/ru/user_webdavauth.po @@ -7,13 +7,14 @@ # Denis <reg.transifex.net@demitel.ru>, 2013 # adol <sharov3@gmail.com>, 2012 # skoptev <skoptev@ukr.net>, 2012 +# Victor Bravo <>, 2013 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-28 19:50+0000\n" -"Last-Translator: lord93 <lordakryl@gmail.com>\n" +"POT-Creation-Date: 2013-07-09 02:03+0200\n" +"PO-Revision-Date: 2013-07-08 10:40+0000\n" +"Last-Translator: Victor Bravo <>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +28,7 @@ msgstr "Идентификация WebDAV" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL:" #: templates/settings.php:7 msgid "" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index d0453b0a9a2..b78f6deeb9b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "නොවැම්බර්" msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "අද" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "ප්රභේදයන් සංස්කරණය" @@ -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 1829a5e7068..cc21c2a9b90 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "දෝෂයක් නොමැත. සාර්ථකව ගොනුව උඩුගත කෙරුණි" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "උඩුගත කළ ගොනුවේ කොටසක් පමණක් උඩුගත විය" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "ගොනුවක් උඩුගත නොවුණි" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "තාවකාලික ෆොල්ඩරයක් අතුරුදහන්" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "තැටිගත කිරීම අසාර්ථකයි" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "මකා දමන්න" msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ප්රතිස්ථාපනය කරන්න" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "නමක් යෝජනා කරන්න" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "අත් හරින්න" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "නිෂ්ප්රභ කරන්න" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "නම" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "ප්රමාණය" @@ -305,6 +305,10 @@ msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩ msgid "Download" msgstr "බාන්න" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "නොබෙදු" @@ -327,19 +331,19 @@ msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳ msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "ගොනුව" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "ගොනු" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 9a29be25bb1..aadfbcb205b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 cb5315ae37b..928f76cfbed 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත් msgid "%s shared the file %s with you" msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "බාන්න" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "උඩුගත කරන්න" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/public.php:83 +#: 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 94157f9e48f..a99cd97d800 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 cd52a1d43dd..b83dbf33f03 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "පරිපාලක" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP භාගත කිරීම් අක්රියයි" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "ගොනු එකින් එක භාගත යුතුයි" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "ගොනු වෙතට නැවත යන්න" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "තෝරාගත් ගොනු ZIP ගොනුවක් තැනීමට විශාල වැඩිය." @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 7c96c853ea8..966dc0dbb73 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index a7c9e4121b4..1725dc7437b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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.po b/l10n/sk/files.po index d2ec9cb542b..5b7c848c1ff 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/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-11 02:16+0200\n" +"PO-Revision-Date: 2013-07-11 00:18+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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index f5acdcadf80..937bab7f327 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/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-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-07-09 02:04+0200\n" +"PO-Revision-Date: 2013-07-09 00:04+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" @@ -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 "" -#: 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 " @@ -386,73 +386,76 @@ 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 -msgid "Use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:108 +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 82f9604d2c2..fa3adbf5ae2 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,59 +138,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "Pred 1 hodinou" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "dnes" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "včera" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "minulý rok" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "pred rokmi" @@ -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,98 +283,98 @@ msgstr "Chrániť heslom" msgid "Password" msgstr "Heslo" -#: js/share.js:186 +#: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Povoliť verejné nahrávanie" -#: 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ý" -#: js/update.js:14 +#: js/update.js:17 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 "Aktualizácia nebola úspešná. Problém nahláste na <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Aktualizácia bola úspešná. Presmerovávam na prihlasovaciu stránku." @@ -412,7 +412,7 @@ 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 "Vaše súbory sú šifrované. Ak nemáte povolený kľúč obnovy, nie je spôsob, ako získať po obnove hesla Vaše dáta. Ak nie ste si isí tým, čo robíte, obráťte sa najskôr na administrátora. Naozaj chcete pokračovať?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" @@ -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" @@ -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 5ea8b9e7867..f6225d9b8e9 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -28,56 +28,56 @@ 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:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "Nemožno nastaviť priečinok pre nahrané súbory." -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Neplatný token" -#: ajax/upload.php:55 +#: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" msgstr "Žiaden súbor nebol odoslaný. Neznáma chyba" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Ukladaný súbor sa nahral len čiastočne" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Žiadny súbor nebol uložený" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Chýba dočasný priečinok" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Zápis na disk sa nepodaril" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Nedostatok dostupného úložného priestoru" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." -msgstr "Neplatný priečinok" +msgstr "Neplatný priečinok." #: appinfo/app.php:12 msgid "Files" @@ -93,7 +93,7 @@ msgstr "Nie je k dispozícii dostatok miesta" #: js/file-upload.js:64 msgid "Upload cancelled." -msgstr "Odosielanie zrušené" +msgstr "Odosielanie zrušené." #: js/file-upload.js:167 js/files.js:266 msgid "" @@ -102,7 +102,7 @@ msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." #: js/file-upload.js:233 js/files.js:339 msgid "URL cannot be empty." -msgstr "URL nemôže byť prázdne" +msgstr "URL nemôže byť prázdne." #: js/file-upload.js:238 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" @@ -129,43 +129,43 @@ msgstr "Zmazať" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Prebieha" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "nahradiť" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "pomôcť s menom" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "zrušiť" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "prepísaný {new_name} súborom {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "vrátiť" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "vykonať zmazanie" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "nahrávanie súborov" @@ -205,7 +205,7 @@ msgstr "Neplatné meno priečinka. Používanie mena 'Shared' je vyhradené len msgid "Name" msgstr "Názov" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Veľkosť" @@ -232,7 +232,7 @@ msgstr "{count} súborov" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s nemohol byť premenovaný" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -306,6 +306,10 @@ msgstr "Žiadny súbor. Nahrajte niečo!" msgid "Download" msgstr "Sťahovanie" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Zrušiť zdieľanie" @@ -328,19 +332,19 @@ msgstr "Čakajte, súbory sú prehľadávané." msgid "Current scanning" msgstr "Práve prezerané" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "priečinok" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "priečinky" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "súbor" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "súbory" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index f74c1222c1e..db07e95c10d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 f03437d7b56..118c23d6b6f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s zdieľa s vami priečinok %s" msgid "%s shared the file %s with you" msgstr "%s zdieľa s vami súbor %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Sťahovanie" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Odoslať" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/public.php:83 +#: 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 927e1891502..8531047a411 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 e4a4f8d82fd..1415eeea6a3 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Administrátor" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "webové služby pod Vašou kontrolou" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Sťahovanie súborov ZIP je vypnuté." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Súbory musia byť nahrávané jeden za druhým." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Späť na súbory" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Zvolené súbory sú príliš veľké na vygenerovanie zip súboru." @@ -171,21 +171,21 @@ msgstr "Podozrivý príkaz bol: \"%s\", meno: %s, heslo: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre PostgreSQL databázu je neplatné" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Zadajte používateľské meno administrátora." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Zadajte heslo administrátora." -#: setup.php:198 +#: setup.php:184 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é." -#: setup.php:199 +#: setup.php:185 #, 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>." diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index a5564b87875..ce6728388ca 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -453,8 +453,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Použite túto adresu <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">pre prístup k súborom cez WebDAV</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 31f55ab48e7..65eb2f6e017 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 cb93b7bd42e..a1e4d26f20e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: barbarak <barbarak@arnes.si>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "Pred 1 uro" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "danes" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "včeraj" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "lansko leto" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "let nazaj" @@ -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,98 +284,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud." @@ -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" @@ -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 0a97258f8a4..cea4af09499 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -21,61 +21,61 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Ni mogoče premakniti %s - datoteka s tem imenom že obstaja" +msgstr "%s ni mogoče premakniti - datoteka s tem imenom že obstaja" #: ajax/move.php:27 ajax/move.php:30 #, php-format 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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Ni poslane datoteke. Neznana napaka." -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Datoteka je uspešno naložena." -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Poslan je le del datoteke." -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Ni poslane datoteke" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Manjka začasna mapa" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Pisanje na disk je spodletelo" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Na voljo ni dovolj prostora" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Neveljavna mapa." @@ -129,43 +129,43 @@ msgstr "Izbriši" msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "V čakanju ..." -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "zamenjaj" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "predlagaj ime" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "prekliči" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "preimenovano ime {new_name} z imenom {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "izvedi opravilo brisanja" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "poteka pošiljanje datotek" @@ -205,7 +205,7 @@ msgstr "Neveljavno ime mape. Uporaba oznake \"Souporaba\" je zadržan za sistem msgid "Name" msgstr "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Velikost" @@ -232,7 +232,7 @@ msgstr "{count} datotek" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s ni bilo mogoče preimenovati" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -306,6 +306,10 @@ msgstr "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak msgid "Download" msgstr "Prejmi" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Prekliči souporabo" @@ -328,19 +332,19 @@ msgstr "Poteka preučevanje datotek, počakajte ..." msgid "Current scanning" msgstr "Trenutno poteka preučevanje" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "direktorij" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "direktoriji" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "datoteka" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "datoteke" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index bd859f79fc4..37df1b206d4 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 7ec9eb98b88..c7616d768db 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "Oseba %s je določila mapo %s za souporabo" msgid "%s shared the file %s with you" msgstr "Oseba %s je določila datoteko %s za souporabo" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Prejmi" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Pošlji" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/public.php:83 +#: 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 5dba62b27be..053def2f261 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 1f82014f698..7de932530c0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Skrbništvo" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "spletne storitve pod vašim nadzorom" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Prejemanje datotek v paketu ZIP je onemogočeno." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Datoteke je mogoče prejeti le posamično." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Nazaj na datoteke" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Izbrane datoteke so prevelike za ustvarjanje datoteke arhiva zip." @@ -171,21 +171,21 @@ msgstr "Napačni ukaz je: \"%s\", ime: %s, geslo: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Uporabniško ime ali geslo PostgreSQL ni veljavno" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Nastavi uporabniško ime skrbnika." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Nastavi geslo skrbnika." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Preverite <a href='%s'>navodila namestitve</a>." diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index f5a3257c7af..f43b120693c 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: barbarak <barbarak@arnes.si>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -454,8 +454,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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." +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index f172c51d81f..781fbb1a20c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 9dd4c083b53..dbcbea0d11b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -138,59 +138,59 @@ msgstr "Nëntor" msgid "December" msgstr "Dhjetor" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Parametra" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 minutë më parë" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} minuta më parë" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 orë më parë" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} orë më parë" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "sot" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "dje" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} ditë më parë" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} muaj më parë" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "vite më parë" @@ -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,98 +283,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">komunitetin ownCloud</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Azhurnimi u krye. Tani do t'ju kaloj tek ownCloud-i." @@ -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ë" @@ -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 532de30b330..8e4e44f3a6b 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 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:66 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:67 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:69 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:70 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:71 msgid "No file was uploaded" msgstr "Nuk u ngarkua asnjë skedar" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Një dosje e përkohshme nuk u gjet" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Ruajtja në disk dështoi" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Nuk ka mbetur hapësirë memorizimi e mjaftueshme" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Dosje e pavlefshme." @@ -128,43 +128,43 @@ msgstr "Elimino" msgid "Rename" msgstr "Riemërto" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pezulluar" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} ekziston" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "zëvëndëso" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugjero një emër" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "anulo" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "U zëvëndësua {new_name} me {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "anulo" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "ekzekuto operacionin e eliminimit" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Po ngarkohet 1 skedar" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "po ngarkoj skedarët" @@ -204,7 +204,7 @@ msgstr "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i r msgid "Name" msgstr "Emri" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Dimensioni" @@ -305,6 +305,10 @@ msgstr "Këtu nuk ka asgjë. Ngarkoni diçka!" msgid "Download" msgstr "Shkarko" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Hiq ndarjen" @@ -327,19 +331,19 @@ msgstr "Skedarët po analizohen, ju lutemi pritni." msgid "Current scanning" msgstr "Analizimi aktual" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 75f4f40a972..c509d6b750c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 cd10e24824c..65c36d4f2be 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s ndau me ju dosjen %s" msgid "%s shared the file %s with you" msgstr "%s ndau me ju skedarin %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Shkarko" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Ngarko" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/public.php:83 +#: 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 019dbc6c4e1..fa7443e9841 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 08b980ef40f..e941be08ad8 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "shërbime web nën kontrollin tënd" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Shkarimi i skedarëve ZIP është i çaktivizuar." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Skedarët duhet të shkarkohen një nga një." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Kthehu tek skedarët" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Skedarët e selektuar janë shumë të mëdhenj për të krijuar një skedar ZIP." @@ -170,21 +170,21 @@ msgstr "Komanda e gabuar ishte: \"%s\", përdoruesi: %s, kodi: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i PostgreSQL i pavlefshëm" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Cakto emrin e administratorit." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Cakto kodin e administratorit." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, 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>." diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 68a9f1a0bbf..160b780b3fe 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 63ae8ea0c18..9c536410a51 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 6f4c2ff8f92..2ac39e46784 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "Новембар" msgid "December" msgstr "Децембар" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Поставке" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "пре 1 минут" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "пре {minutes} минута" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "Пре једног сата" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "Пре {hours} сата (сати)" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "данас" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "јуче" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "пре {days} дана" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "Пре {months} месеца (месеци)" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "месеци раније" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "прошле године" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "година раније" @@ -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,98 +282,98 @@ 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 "Порука је послата" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "Измени категорије" @@ -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 8ecf30226e3..f689b0029c2 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Ниједна датотека није отпремљена услед непознате грешке" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Није дошло до грешке. Датотека је успешно отпремљена." -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Датотека је делимично отпремљена" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Датотека није отпремљена" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Недостаје привремена фасцикла" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Не могу да пишем на диск" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Нема довољно простора" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "неисправна фасцикла." @@ -128,43 +128,43 @@ msgstr "Обриши" msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "На чекању" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "замени" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "предложи назив" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "откажи" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "замењено {new_name} са {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "опозови" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "обриши" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "датотеке се отпремају" @@ -204,7 +204,7 @@ msgstr "Неисправно име фасцикле. Фасцикла „Shared msgid "Name" msgstr "Име" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Величина" @@ -305,6 +305,10 @@ msgstr "Овде нема ничег. Отпремите нешто!" msgid "Download" msgstr "Преузми" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Укини дељење" @@ -327,19 +331,19 @@ msgstr "Скенирам датотеке…" msgid "Current scanning" msgstr "Тренутно скенирање" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index d5b98240059..c258c75d665 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 187091dc0f3..d4999202b4a 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Преузми" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Отпреми" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/public.php:83 +#: 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 6f72e91615d..34f196886ed 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 fc638ea0a8b..017afe64d05 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Администратор" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "веб сервиси под контролом" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Преузимање ZIP-а је искључено." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Датотеке морате преузимати једну по једну." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Назад на датотеке" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Изабране датотеке су превелике да бисте направили ZIP датотеку." @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Погледајте <a href='%s'>водиче за инсталацију</a>." diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index c7698357392..6c2ac2a4eea 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,8 +452,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Користите ову адресу да се повежете са ownCloud-ом у управљачу датотекама" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index cc90019174e..27959e936a2 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 3b6924c9d38..ff78efd33b0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "" @@ -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 8315723cb3c..c667e646737 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Poslati fajl je samo delimično otpremljen!" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Nijedan fajl nije poslat" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Nedostaje privremena fascikla" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "Obriši" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Veličina" @@ -305,6 +305,10 @@ msgstr "Ovde nema ničeg. Pošaljite nešto!" msgid "Download" msgstr "Preuzmi" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index d51263ad3d2..60aa3509876 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 b194043d3d1..eafced9ca92 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Preuzmi" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Pošalji" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: 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 19caa509c77..34d53e41328 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 84315539684..cd8a30edd9e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -45,19 +45,19 @@ msgstr "Adninistracija" msgid "web services under your control" msgstr "" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 0d7e05d74d9..5a0b07dd439 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/sv/core.po b/l10n/sv/core.po index e0ec098b2b2..0e2df8d04ac 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: medialabs\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" @@ -141,59 +141,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Inställningar" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "i dag" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "i går" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "förra månaden" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "månader sedan" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "förra året" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "år sedan" @@ -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,98 +286,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Uppdateringen misslyckades. Rapportera detta problem till <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud-gemenskapen</a>." +msgstr "Uppdateringen misslyckades. Rapportera detta problem till <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud Community</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Uppdateringen lyckades. Du omdirigeras nu till OwnCloud." @@ -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" @@ -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 1cd442d754b..e4af1fac05f 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -4,15 +4,16 @@ # # Translators: # Gunnar Norin <blittan@xbmc.org>, 2013 +# medialabs, 2013 # Magnus Höglund <magnus@linux.com>, 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 09:10+0000\n" -"Last-Translator: Magnus Höglund <magnus@linux.com>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,54 +31,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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Ingen fil uppladdad. Okänt fel" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Den uppladdade filen var endast delvis uppladdad" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Ingen fil laddades upp" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "En temporär mapp saknas" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Misslyckades spara till disk" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Felaktig mapp." @@ -131,43 +132,43 @@ msgstr "Radera" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Väntar" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ersätt" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "föreslå namn" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "ångra" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "utför raderingen" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "filer laddas upp" @@ -207,7 +208,7 @@ msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" msgid "Name" msgstr "Namn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Storlek" @@ -308,6 +309,10 @@ msgstr "Ingenting här. Ladda upp något!" msgid "Download" msgstr "Ladda ner" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "Storlek (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Sluta dela" @@ -330,19 +335,19 @@ msgstr "Filer skannas, var god vänta" msgid "Current scanning" msgstr "Aktuell skanning" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "mapp" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "mappar" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "fil" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "filer" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 79ead110e28..0435b108269 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 d70c00bf94f..08a2f2e3107 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s delade mappen %s med dig" msgid "%s shared the file %s with you" msgstr "%s delade filen %s med dig" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Ladda ner" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Ladda upp" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/public.php:83 +#: 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 600a0d96b29..f53c5cef0bb 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 bdeb2188c36..fad5520371a 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Admin" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "webbtjänster under din kontroll" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Nerladdning av ZIP är avstängd." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Filer laddas ner en åt gången." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Tillbaka till Filer" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Valda filer är för stora för att skapa zip-fil." @@ -171,21 +171,21 @@ msgstr "Det felande kommandot var: \"%s\", name: %s, password: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL-användarnamnet och/eller lösenordet är felaktigt" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Ange ett användarnamn för administratören." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Ange ett administratörslösenord." -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Var god kontrollera <a href='%s'>installationsguiden</a>." diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index fa154a3b610..9b00510661c 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -7,13 +7,14 @@ # Jan Busk, 2013 # Jan Busk, 2013 # medialabs, 2013 +# medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -456,8 +457,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "Använd denna adress för att <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">komma åt dina filer via WebDAV</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 838ca5b70c3..ac065f21e76 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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.po b/l10n/sw_KE/files.po index 024ede3858b..2d020090c3f 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/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-11 02:16+0200\n" +"PO-Revision-Date: 2013-07-11 00:18+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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index 01bbab7a248..cabca70f948 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/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-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-07-09 02:04+0200\n" +"PO-Revision-Date: 2013-07-09 00:04+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" @@ -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 "" -#: 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 " @@ -386,73 +386,76 @@ 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 -msgid "Use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:108 +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 16b4d4dfa7e..2212c68cda2 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "கார்த்திகை" msgid "December" msgstr "மார்கழி" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "இன்று" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{நாட்கள்} நாட்களுக்கு முன்" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "வருடங்களுக்கு முன்" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "வகைகளை தொகுக்க" @@ -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 1c03263e1c7..37ccc1d1692 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "இங்கு வழு இல்லை, கோப்பு வெற்றிகரமாக பதிவேற்றப்பட்டது" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "பதிவேற்றப்பட்ட கோப்பானது பகுதியாக மட்டுமே பதிவேற்றப்பட்டுள்ளது" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "எந்த கோப்பும் பதிவேற்றப்படவில்லை" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "ஒரு தற்காலிகமான கோப்புறையை காணவில்லை" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "வட்டில் எழுத முடியவில்லை" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "நீக்குக" msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "மாற்றிடுக" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "பெயரை பரிந்துரைக்க" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "இரத்து செய்க" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "பெயர்" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "அளவு" @@ -305,6 +305,10 @@ msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவத msgid "Download" msgstr "பதிவிறக்குக" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "பகிரப்படாதது" @@ -327,19 +331,19 @@ msgstr "கோப்புகள் வருடப்படுகின்ற msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 929d3d3b4fa..5b927fc2277 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 071a3107f31..d08e091cade 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s கோப்புறையானது %s உடன் பகிர msgid "%s shared the file %s with you" msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "பதிவேற்றுக" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/public.php:83 +#: 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 3bcff1d04a9..db4efda2805 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 196a015a365..9b8547b0222 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "நிர்வாகம்" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "கோப்புகள்ஒன்றன் பின் ஒன்றாக பதிவிறக்கப்படவேண்டும்." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "கோப்புகளுக்கு செல்க" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "வீ சொலிக் கோப்புகளை உருவாக்குவதற்கு தெரிவுசெய்யப்பட்ட கோப்புகள் மிகப்பெரியவை" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index a0caf8ebf36..0edbd76f533 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 14b0e2b0f7d..3ff1305ffd0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 1048ece86ec..aaa277b6550 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "నవంబర్" msgid "December" msgstr "డిసెంబర్" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 నిమిషం క్రితం" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} నిమిషాల క్రితం" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 గంట క్రితం" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} గంటల క్రితం" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "ఈరోజు" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} రోజుల క్రితం" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} నెలల క్రితం" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "సంవత్సరాల క్రితం" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "" @@ -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 84228463520..ed3cf2a2a37 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "తొలగించు" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "రద్దుచేయి" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "పేరు" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "పరిమాణం" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index fbd6a1a4e0a..43c3519fc95 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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_trashbin.po b/l10n/te/files_trashbin.po index f2592ebfed4..07cf09abf09 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 6a93cfc5877..39b45b8f9be 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 06:32+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" @@ -45,19 +45,19 @@ msgstr "" msgid "web services under your control" msgstr "" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index c75cc67f358..613892b9cb6 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index eddbf351c6c..d716575962e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 5b7753ae03a..a9f63c174db 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-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\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" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "" @@ -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 b32337eab62..e9dd34cfe3e 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-05 02:12+0200\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 7c2e959cb11..8e48bead1f9 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-05 02:12+0200\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 113588c54c7..8faebc508ac 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-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\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 d2160e952e8..626b90c1000 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-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\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" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: 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 85921f556a7..710a03e6b00 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-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\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 e7830522284..55eeb3aac41 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-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\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 6f9cb0e882b..9b444fa7ca8 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-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\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" @@ -45,19 +45,19 @@ msgstr "" msgid "web services under your control" msgstr "" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index c044d3dd08a..14bf5d1c48e 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-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 1dfa258a2ab..63fcdf30fc3 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-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\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 b28542fa64b..2941e805e6b 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-05 02:13+0200\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\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 d2a6768c92b..61ce81a9460 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "พฤศจิกายน" msgid "December" msgstr "ธันวาคม" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 นาทีก่อนหน้านี้" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} นาทีก่อนหน้านี้" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} ชั่วโมงก่อนหน้านี้" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "วันนี้" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{day} วันก่อนหน้านี้" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} เดือนก่อนหน้านี้" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "ปี ที่ผ่านมา" @@ -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,98 +282,98 @@ 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 "ส่งอีเมล์แล้ว" -#: js/update.js:14 +#: js/update.js:17 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 "การอัพเดทไม่เป็นผลสำเร็จ กรุณาแจ้งปัญหาที่เกิดขึ้นไปยัง <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">คอมมูนิตี้ผู้ใช้งาน ownCloud</a>" -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "การอัพเดทเสร็จเรียบร้อยแล้ว กำลังเปลี่ยนเส้นทางไปที่ ownCloud อยู่ในขณะนี้" @@ -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 "แก้ไขหมวดหมู่" @@ -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 2c4c609a6cc..7d47bb60a93 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "ไม่พบข้อผิดพลาดใดๆ, ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว" -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "ไฟล์ถูกอัพโหลดได้เพียงบางส่วนเท่านั้น" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "ไม่มีไฟล์ที่ถูกอัพโหลด" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "โฟลเดอร์ชั่วคราวเกิดการสูญหาย" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้มเหลว" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" @@ -128,43 +128,43 @@ msgstr "ลบ" msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "แนะนำชื่อ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "ดำเนินการตามคำสั่งลบ" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "การอัพโหลดไฟล์" @@ -204,7 +204,7 @@ msgstr "ชื่อโฟลเดอร์ไม่ถูกต้อง ก msgid "Name" msgstr "ชื่อ" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "ขนาด" @@ -305,6 +305,10 @@ msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี msgid "Download" msgstr "ดาวน์โหลด" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "ยกเลิกการแชร์" @@ -327,19 +331,19 @@ msgstr "ไฟล์กำลังอยู่ระหว่างการส msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "ไฟล์" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "ไฟล์" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index ac88dabf36c..407b2d8dd4b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 deecf03ec80..a8b01bc8880 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับ msgid "%s shared the file %s with you" msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "อัพโหลด" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/public.php:83 +#: 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 4310b4de2a9..46ef8437b57 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 cb180e54630..be7337a02f5 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "ผู้ดูแล" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "กลับไปที่ไฟล์" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "ไฟล์ที่เลือกมีขนาดใหญ่เกินกว่าที่จะสร้างเป็นไฟล์ zip" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 1334006e724..ab0ec15d59c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,8 +452,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "ใช้ที่อยู่นี้เพื่อเชื่อมต่อกับ ownCloud ในโปรแกรมจัดการไฟล์ของคุณ" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 4b200fa97fe..c2a66e127fe 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 6fe007d32fe..c3b3886b6d2 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -138,59 +138,59 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "bugün" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "dün" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "geçen ay" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "ay önce" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "geçen yıl" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "yıl önce" @@ -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,98 +283,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Güncelleme başarılı. ownCloud'a yönlendiriliyor." @@ -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" @@ -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 1a128d7245e..fc714dd73c0 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Dosya yüklenmedi. Bilinmeyen hata" -#: ajax/upload.php:62 +#: ajax/upload.php:66 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:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Dosya kısmen karşıya yüklenebildi" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Hiç dosya gönderilmedi" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Geçici dizin eksik" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Diske yazılamadı" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Geçersiz dizin." @@ -129,43 +129,43 @@ msgstr "Sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "değiştir" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "Öneri ad" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "iptal" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ismi {old_name} ile değiştirildi" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "geri al" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Silme işlemini gerçekleştir" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Dosyalar yükleniyor" @@ -205,7 +205,7 @@ msgstr "Geçersiz dizin adı. Shared isminin kullanımı Owncloud tarafından re msgid "Name" msgstr "İsim" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Boyut" @@ -306,6 +306,10 @@ msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" msgid "Download" msgstr "İndir" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Paylaşılmayan" @@ -328,19 +332,19 @@ msgstr "Dosyalar taranıyor, lütfen bekleyin." msgid "Current scanning" msgstr "Güncel tarama" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "dosya" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "dosyalar" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 8c146fbd9ab..255f235d7e8 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 d95083776d5..0360568a518 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s sizinle paylaşılan %s klasör" msgid "%s shared the file %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "İndir" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Yükle" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/public.php:83 +#: 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 2d60a3b671d..bd9439245bb 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 eabf5f4b463..00a3d8f4940 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "Yönetici" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "Bilgileriniz güvenli ve şifreli" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP indirmeleri kapatılmıştır." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Dosyaların birer birer indirilmesi gerekmektedir." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Dosyalara dön" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür." @@ -171,21 +171,21 @@ msgstr "Hatalı komut: \"%s\", ad: %s, parola: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL adi kullanici ve/veya parola yasal degildir. " -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Bir adi kullanici vermek. " -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Parola yonetici birlemek. " -#: setup.php:198 +#: setup.php:184 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." -#: setup.php:199 +#: setup.php:185 #, 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." diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 3f82092aa3a..903997a292d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -453,8 +453,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 1398dd6964f..69e290a4a17 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 61c3e4a6c10..fb3032ad221 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "ئوغلاق" msgid "December" msgstr "كۆنەك" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 مىنۇت ئىلگىرى" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 سائەت ئىلگىرى" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "بۈگۈن" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "" @@ -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 b99bc8b10d8..fd3b50d2406 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "ھېچقانداق ھۆججەت يۈكلەنمىدى" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "ۋاقىتلىق قىسقۇچ كەم." -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "دىسكىغا يازالمىدى" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "يېتەرلىك ساقلاش بوشلۇقى يوق" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "ئۆچۈر" msgid "Rename" msgstr "ئات ئۆزگەرت" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} مەۋجۇت" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ئالماشتۇر" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "تەۋسىيە ئات" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "ۋاز كەچ" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "يېنىۋال" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ھۆججەت يۈكلىنىۋاتىدۇ" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ھۆججەت يۈكلىنىۋاتىدۇ" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "ئاتى" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "چوڭلۇقى" @@ -305,6 +305,10 @@ msgstr "بۇ جايدا ھېچنېمە يوق. Upload something!" msgid "Download" msgstr "چۈشۈر" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "ھەمبەھىرلىمە" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 45a7c9909ee..c88c158c827 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 c44c4963a73..db441ab1a2a 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -40,18 +40,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "چۈشۈر" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "يۈكلە" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/public.php:83 +#: 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 8a7776eb124..7623e8187df 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 3b1c3ce0644..327ba28f5f1 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -45,19 +45,19 @@ msgstr "" msgid "web services under your control" msgstr "" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index c8a31a0679d..78482c344f4 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 14e85892bd5..85a3311d735 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 a8a433e477a..f0f813ab71e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Налаштування" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "сьогодні" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "вчора" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "минулого місяця" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "місяці тому" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "минулого року" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "роки тому" @@ -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,98 +282,98 @@ 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 "Ел. пошта надіслана" -#: js/update.js:14 +#: js/update.js:17 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 "Оновлення виконалось неуспішно. Будь ласка, повідомте про цю проблему в <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">спільноті ownCloud</a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Оновлення виконалось успішно. Перенаправляємо вас на ownCloud." @@ -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 "Редагувати категорії" @@ -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 134d3621472..1f489ef683f 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "Не завантажено жодного файлу. Невідома помилка" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "Файл успішно вивантажено без помилок." -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "Файл відвантажено лише частково" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "Не відвантажено жодного файлу" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Відсутній тимчасовий каталог" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Невдалося записати на диск" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Місця більше немає" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Невірний каталог." @@ -128,43 +128,43 @@ msgstr "Видалити" msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Очікування" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "заміна" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "запропонуйте назву" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "відміна" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "замінено {new_name} на {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "відмінити" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "виконати операцію видалення" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "файли завантажуються" @@ -204,7 +204,7 @@ msgstr "Невірне ім'я теки. Використання \"Shared\" з msgid "Name" msgstr "Ім'я" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Розмір" @@ -305,6 +305,10 @@ msgstr "Тут нічого немає. Відвантажте що-небудь msgid "Download" msgstr "Завантажити" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Закрити доступ" @@ -327,19 +331,19 @@ msgstr "Файли скануються, зачекайте, будь-ласка msgid "Current scanning" msgstr "Поточне сканування" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "файл" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "файли" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 6ec43b732b4..d687284d76d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 11f2da15af1..4f94816dc50 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s опублікував каталог %s для Вас" msgid "%s shared the file %s with you" msgstr "%s опублікував файл %s для Вас" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Завантажити" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Вивантажити" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/public.php:83 +#: 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 64d464a3d3f..30f5e26c202 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 e73905f4ccd..aa02d73043b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Адмін" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "підконтрольні Вам веб-сервіси" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP завантаження вимкнено." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Файли повинні бути завантаженні послідовно." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Повернутися до файлів" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Вибрані фали завеликі для генерування zip файлу." @@ -170,21 +170,21 @@ msgstr "Команда, що викликала проблему: \"%s\", ім' msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL ім'я користувача та/або пароль не дійсні" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Встановіть ім'я адміністратора." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Встановіть пароль адміністратора." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "Будь ласка, перевірте <a href='%s'>інструкції по встановленню</a>." diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 3b2dc3f3225..5bad8f3bf20 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,8 +452,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Використовуйте цю адресу для під'єднання до вашого ownCloud у вашому файловому менеджері" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 7fca35f7f22..8cce1983f8f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 ca2b3c23221..9b9cec50f0d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "نومبر" msgid "December" msgstr "دسمبر" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "" @@ -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,98 +282,98 @@ 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 "" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "زمرہ جات کی تدوین کریں" @@ -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 077965992bc..58c9ef39794 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "شئیرنگ ختم کریں" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 3ca0ae95354..31ec5f32c68 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 b2dcddae241..71243de70c4 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 06:32+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" @@ -43,21 +43,21 @@ msgstr "ایڈمن" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "آپ کے اختیار میں ویب سروسیز" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 6fbd66db442..79a466c9569 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index c47c5eb38b7..1bf8b006ee3 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 0cd21a78662..1b0d637b555 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -138,59 +138,59 @@ msgstr "Tháng 11" msgid "December" msgstr "Tháng 12" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 phút trước" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} phút trước" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 giờ trước" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} giờ trước" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "hôm nay" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} ngày trước" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "tháng trước" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} tháng trước" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "tháng trước" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "năm trước" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "năm trước" @@ -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,98 +283,98 @@ 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" -#: js/update.js:14 +#: js/update.js:17 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 "Cập nhật không thành công . Vui lòng thông báo đến <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\"> Cộng đồng ownCloud </a>." -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Cập nhật thành công .Hệ thống sẽ đưa bạn tới ownCloud." @@ -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" @@ -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 c3ce96ba208..5090d6b1479 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 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:66 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:67 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:69 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:70 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:71 msgid "No file was uploaded" msgstr "Chưa có file nào được tải lên" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "Không tìm thấy thư mục tạm" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "Không thể ghi " -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "Không đủ không gian lưu trữ" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "Thư mục không hợp lệ" @@ -129,43 +129,43 @@ msgstr "Xóa" msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Đang chờ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "thay thế" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "tên gợi ý" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "hủy" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "đã thay thế {new_name} bằng {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "lùi lại" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "thực hiện việc xóa" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "tệp tin đang được tải lên" @@ -205,7 +205,7 @@ msgstr "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgid "Name" msgstr "Tên" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "Kích cỡ" @@ -306,6 +306,10 @@ msgstr "Không có gì ở đây .Hãy tải lên một cái gì đó !" msgid "Download" msgstr "Tải về" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Bỏ chia sẻ" @@ -328,19 +332,19 @@ msgstr "Tập tin đang được quét ,vui lòng chờ." msgid "Current scanning" msgstr "Hiện tại đang quét" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "file" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "files" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index efc55d1228f..98eb96cb4f9 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 4fcc10717e0..3c746275f40 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s đã chia sẻ thư mục %s với bạn" msgid "%s shared the file %s with you" msgstr "%s đã chia sẻ tập tin %s với bạn" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "Tải về" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "Tải lên" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/public.php:83 +#: 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 d3d2d1c4de2..c83f00f96d0 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 44174a48f0b..6a305525b1e 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "Quản trị" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "dịch vụ web dưới sự kiểm soát của bạn" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "Tải về ZIP đã bị tắt." -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "Tập tin cần phải được tải về từng người một." -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "Trở lại tập tin" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "Tập tin được chọn quá lớn để tạo tập tin ZIP." @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 03440045492..1884fcaff72 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,8 +452,11 @@ msgid "WebDAV" msgstr "WebDAV" #: 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" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index d79d6e4d0da..3c9f0208e11 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 11d8aaccec0..42bd591bd47 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -139,59 +139,59 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "设置" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "秒前" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours}小时前" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "今天" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "昨天" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "上个月" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months}月前" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "月前" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "去年" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "年前" @@ -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,98 +284,98 @@ 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 "电子邮件已发送" -#: js/update.js:14 +#: js/update.js:17 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 "升级失败。请向<a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud社区</a>报告此问题。" -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "升级成功。现在为您跳转到ownCloud。" @@ -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 "编辑分类" @@ -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 80348c7b7ef..d5c74fe1a14 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# hlx98007 <hlx98007@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: hlx98007 <hlx98007@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" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,63 +21,63 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "无法移动 %s - 存在同名文件" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "无法移动 %s" -#: ajax/upload.php:16 ajax/upload.php:39 +#: ajax/upload.php:16 ajax/upload.php:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "无法设置上传文件夹" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "非法Token" -#: ajax/upload.php:55 +#: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" msgstr "没有上传文件。未知错误" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "文件上传成功" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "上传的文件超过了php.ini指定的upload_max_filesize" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "文件部分上传" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "没有上传文件" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "缺失临时文件夹" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "写磁盘失败" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" -msgstr "" +msgstr "容量不足" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." -msgstr "" +msgstr "无效文件夹" #: appinfo/app.php:12 msgid "Files" @@ -88,7 +89,7 @@ msgstr "不能上传您的文件,由于它是文件夹或者为空文件" #: js/file-upload.js:24 msgid "Not enough space available" -msgstr "" +msgstr "容量不足" #: js/file-upload.js:64 msgid "Upload cancelled." @@ -105,7 +106,7 @@ msgstr "网址不能为空。" #: js/file-upload.js:238 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +msgstr "无效文件夹名。“Shared”已经被系统保留。" #: 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 @@ -118,7 +119,7 @@ msgstr "分享" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "" +msgstr "永久删除" #: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" @@ -128,83 +129,83 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "等待中" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "替换" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "推荐名称" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "取消" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "已用 {old_name} 替换 {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "撤销" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" -msgstr "" +msgstr "执行删除" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "个文件正在上传" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' 文件名不正确" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr "文件名不能为空" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "文件名内不能包含以下符号:\\ / < > : \" | ?和 *" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "容量已满,不能再同步/上传文件了!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "你的空间快用满了 ({usedSpacePercent}%)" #: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "正在下载,可能会花点时间,跟文件大小有关" #: js/files.js:344 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "不正确文件夹名。Shared是保留名,不能使用。" #: js/files.js:744 templates/index.php:69 msgid "Name" msgstr "名称" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "大小" @@ -231,7 +232,7 @@ msgstr "{count} 个文件" #: 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" @@ -287,7 +288,7 @@ msgstr "来自链接" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "已删除的文件" #: templates/index.php:48 msgid "Cancel upload" @@ -295,7 +296,7 @@ msgstr "取消上传" #: templates/index.php:54 msgid "You don’t have write permissions here." -msgstr "" +msgstr "您没有写入权限。" #: templates/index.php:61 msgid "Nothing in here. Upload something!" @@ -305,6 +306,10 @@ msgstr "这里没有东西.上传点什么!" msgid "Download" msgstr "下载" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "大小 (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "取消分享" @@ -327,22 +332,22 @@ msgstr "正在扫描文件,请稍候." msgid "Current scanning" msgstr "正在扫描" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "文件夹" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "文件夹" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "文件" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "文件" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "升级系统缓存..." diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index eb577106027..c59411c8d0d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 e0c82ccfdb4..7839e27f35c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s 与您分享了文件夹 %s" msgid "%s shared the file %s with you" msgstr "%s 与您分享了文件 %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "下载" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上传" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:83 +#: 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 6d62c2ec7d1..0d3953e7d1b 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -41,7 +41,7 @@ msgstr "" #: js/trash.js:123 msgid "Delete permanently" -msgstr "" +msgstr "永久删除" #: js/trash.js:176 templates/index.php:17 msgid "Name" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index f3f7e9e02d3..49d2c576d9f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -43,21 +43,21 @@ msgstr "管理员" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "您控制的网络服务" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP 下载已关闭" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "需要逐个下载文件。" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "返回到文件" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "选择的文件太大而不能生成 zip 文件。" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "请双击<a href='%s'>安装向导</a>。" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 1075c2ceca4..7294150f2ab 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# hlx98007 <hlx98007@gmail.com>, 2013 # hyy0591 <yangyu.huang@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: hlx98007 <hlx98007@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" "Content-Type: text/plain; charset=UTF-8\n" @@ -232,7 +233,7 @@ 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 "服务器没有可用的Internet连接。这意味着像挂载外部储存、更新提示和安装第三方插件等功能会失效。远程访问文件和发送邮件提醒也可能会失效。建议开启服务器的英特网网络。" #: templates/admin.php:94 msgid "Cron" @@ -307,7 +308,7 @@ msgstr "强制客户端通过加密连接与ownCloud连接" msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "请先使用HTTPS访问本站以设置强制SSL的开关。" #: templates/admin.php:197 msgid "Log" @@ -315,7 +316,7 @@ msgstr "日志" #: templates/admin.php:198 msgid "Log level" -msgstr "" +msgstr "日志等级" #: templates/admin.php:229 msgid "More" @@ -453,8 +454,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "使用此地址来在您的文件管理器中连接您的ownCloud" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "访问WebDAV请点击 <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">此处</a>" #: templates/users.php:21 msgid "Login Name" @@ -466,13 +470,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/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index b901562be8d..8b41ce08b16 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 600c1108955..79d2870d3cf 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: m13253 <m13253@hotmail.com>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,59 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "设置" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "秒前" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "今天" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "昨天" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "上月" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "月前" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "去年" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "年前" @@ -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,98 +284,98 @@ 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 "邮件已发送" -#: js/update.js:14 +#: js/update.js:17 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 "更新不成功。请汇报将此问题汇报给 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud 社区</a>。" -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "更新成功。正在重定向至 ownCloud。" @@ -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 "编辑分类" @@ -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 efd92f40ae1..95318098fcf 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "没有文件被上传。未知错误" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "文件上传成功,没有错误发生" -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "已上传文件只上传了部分(不完整)" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "没有文件被上传" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "缺少临时目录" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "写入磁盘失败" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "没有足够的存储空间" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "无效文件夹。" @@ -131,43 +131,43 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "等待" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "替换" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "建议名称" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "取消" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "已将 {old_name}替换成 {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "撤销" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "进行删除操作" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1个文件上传中" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "文件上传中" @@ -207,7 +207,7 @@ msgstr "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。" msgid "Name" msgstr "名称" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "大小" @@ -308,6 +308,10 @@ msgstr "这里还什么都没有。上传些东西吧!" msgid "Download" msgstr "下载" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "取消共享" @@ -330,19 +334,19 @@ msgstr "文件正在被扫描,请稍候。" msgid "Current scanning" msgstr "当前扫描" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "文件" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "文件" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 1d0b157fb92..a9005362f1d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 1969675a0e3..897b7cb420a 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "%s与您共享了%s文件夹" msgid "%s shared the file %s with you" msgstr "%s与您共享了%s文件" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "下载" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上传" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:83 +#: 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 f5ff36f1856..b44006f8504 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 87f97f1d9d8..4789dd87b30 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "管理" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "您控制的web服务" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP 下载已经关闭" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "需要逐一下载文件" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "回到文件" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "选择的文件太大,无法生成 zip 文件。" @@ -171,21 +171,21 @@ msgstr "冲突命令为:\"%s\",名称:%s,密码:%s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL 数据库用户名和/或密码无效" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "请设置一个管理员用户名。" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "请设置一个管理员密码。" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "请认真检查<a href='%s'>安装指南</a>." diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index bd4e9b00257..513d91296b7 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: m13253 <m13253@hotmail.com>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -455,8 +455,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "用该地址来连接文件管理器中的 ownCloud" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index c7a202b38e5..d5bba31ca9f 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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 8d2f53e1198..0cf41e252d6 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -137,59 +137,59 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "設定" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "今日" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "昨日" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "前一月" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "個月之前" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "" @@ -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,98 +282,98 @@ 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 "郵件已傳" -#: js/update.js:14 +#: js/update.js:17 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 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." 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 "" @@ -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 2c176a43827..c80aa5e169e 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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -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:45 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:59 msgid "No file was uploaded. Unknown error" msgstr "" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "" -#: ajax/upload.php:63 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:65 +#: ajax/upload.php:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -128,43 +128,43 @@ msgstr "刪除" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "名稱" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "" @@ -305,6 +305,10 @@ msgstr "" msgid "Download" msgstr "下載" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "取消分享" @@ -327,19 +331,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" msgstr "" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" msgstr "" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" msgstr "" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 8915ed59989..c9300be89cb 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 29cc9449094..5ec31334f0d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -39,18 +39,18 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "下載" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上傳" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: 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 11e1c0a3a64..3746a148e4a 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 b214357aa70..f5130f387af 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -45,19 +45,19 @@ msgstr "管理" msgid "web services under your control" msgstr "" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index c576c2b7996..c57502b8edb 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -452,7 +452,10 @@ msgid "WebDAV" msgstr "" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" msgstr "" #: templates/users.php:21 diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index 5392bcbf5e0..bde4fe41d62 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 f2320794fc0..ef8de5c5d26 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:12+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +22,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." @@ -139,59 +139,59 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:289 +#: js/js.js:293 msgid "Settings" msgstr "設定" -#: js/js.js:721 +#: js/js.js:725 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:722 +#: js/js.js:726 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:723 +#: js/js.js:727 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:724 +#: js/js.js:728 msgid "1 hour ago" msgstr "1 小時之前" -#: js/js.js:725 +#: js/js.js:729 msgid "{hours} hours ago" msgstr "{hours} 小時前" -#: js/js.js:726 +#: js/js.js:730 msgid "today" msgstr "今天" -#: js/js.js:727 +#: js/js.js:731 msgid "yesterday" msgstr "昨天" -#: js/js.js:728 +#: js/js.js:732 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:729 +#: js/js.js:733 msgid "last month" msgstr "上個月" -#: js/js.js:730 +#: js/js.js:734 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:731 +#: js/js.js:735 msgid "months ago" msgstr "幾個月前" -#: js/js.js:732 +#: js/js.js:736 msgid "last year" msgstr "去年" -#: js/js.js:733 +#: js/js.js:737 msgid "years ago" msgstr "幾年前" @@ -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,98 +284,98 @@ 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 "將連結 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 已寄出" -#: js/update.js:14 +#: js/update.js:17 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 "升級失敗,請將此問題回報 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud 社群</a>。" -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "升級成功,正將您重新導向至 ownCloud 。" @@ -400,7 +400,7 @@ msgstr "請求失敗!<br>您確定填入的電子郵件地址或是帳號名 #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." -msgstr "重設密碼的連結將會寄到你的電子郵件信箱。" +msgstr "重設密碼的連結將會寄到您的電子郵件信箱。" #: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 #: templates/login.php:19 @@ -413,7 +413,7 @@ 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" @@ -467,7 +467,7 @@ msgstr "存取被拒" msgid "Cloud not found" msgstr "未發現雲端" -#: 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 "由您控制的網路服務" +msgstr "嗨,\n\n通知您,%s 與您分享了 %s 。\n看一下:%s" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -613,12 +609,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>" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index 6743ab981dc..cfb730d8f3e 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/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-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-04 07:55+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "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:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "無法設定上傳目錄。" -#: ajax/upload.php:23 +#: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "無效的 token" -#: ajax/upload.php:55 +#: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" msgstr "沒有檔案被上傳。未知的錯誤。" -#: ajax/upload.php:62 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" msgstr "無錯誤,檔案上傳成功" -#: ajax/upload.php:63 +#: ajax/upload.php:67 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:69 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:70 msgid "The uploaded file was only partially uploaded" msgstr "只有檔案的一部分被上傳" -#: ajax/upload.php:67 +#: ajax/upload.php:71 msgid "No file was uploaded" msgstr "沒有檔案被上傳" -#: ajax/upload.php:68 +#: ajax/upload.php:72 msgid "Missing a temporary folder" msgstr "找不到暫存資料夾" -#: ajax/upload.php:69 +#: ajax/upload.php:73 msgid "Failed to write to disk" msgstr "寫入硬碟失敗" -#: ajax/upload.php:87 +#: ajax/upload.php:91 msgid "Not enough storage available" msgstr "儲存空間不足" -#: ajax/upload.php:119 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "無效的資料夾。" @@ -129,43 +129,43 @@ msgstr "刪除" msgid "Rename" msgstr "重新命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "等候中" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "取代" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "建議檔名" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "取消" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "使用 {new_name} 取代 {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "復原" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "進行刪除動作" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "檔案正在上傳中" @@ -205,7 +205,7 @@ msgstr "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留" msgid "Name" msgstr "名稱" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 msgid "Size" msgstr "大小" @@ -232,7 +232,7 @@ msgstr "{count} 個檔案" #: 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" @@ -306,6 +306,10 @@ msgstr "這裡什麼也沒有,上傳一些東西吧!" msgid "Download" msgstr "下載" +#: templates/index.php:80 +msgid "Size (MB)" +msgstr "大小 (MB)" + #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "取消共享" @@ -328,21 +332,21 @@ msgstr "正在掃描檔案,請稍等。" msgid "Current scanning" msgstr "目前掃描" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "目錄" -#: templates/part.list.php:80 +#: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "目錄" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "file" -msgstr "" +msgstr "檔案" -#: templates/part.list.php:91 +#: templates/part.list.php:89 msgid "files" -msgstr "" +msgstr "檔案" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 0f97c653693..584f7621bb4 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 810cf32cd3d..151c9801c1c 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -40,18 +40,18 @@ msgstr "%s 和您分享了資料夾 %s " msgid "%s shared the file %s with you" msgstr "%s 和您分享了檔案 %s" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:28 templates/public.php:90 msgid "Download" msgstr "下載" -#: templates/public.php:44 +#: templates/public.php:45 templates/public.php:48 msgid "Upload" msgstr "上傳" -#: templates/public.php:54 +#: templates/public.php:58 msgid "Cancel upload" msgstr "取消上傳" -#: templates/public.php:83 +#: 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 42452cc2609..3b20571053d 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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 69e868ec9b4..03de954ba8a 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" @@ -44,21 +44,21 @@ msgstr "管理" #: defaults.php:33 msgid "web services under your control" -msgstr "" +msgstr "由您控制的網路服務" -#: files.php:210 +#: files.php:226 msgid "ZIP download is turned off." msgstr "ZIP 下載已關閉。" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "檔案需要逐一下載。" -#: files.php:212 files.php:245 +#: files.php:228 files.php:261 msgid "Back to Files" msgstr "回到檔案列表" -#: files.php:242 +#: files.php:258 msgid "Selected files too large to generate zip file." msgstr "選擇的檔案太大以致於無法產生壓縮檔。" @@ -171,21 +171,21 @@ msgstr "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL 用戶名和/或密碼無效" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "設定管理員帳號。" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "設定管理員密碼。" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the <a href='%s'>installation guides</a>." msgstr "請參考<a href='%s'>安裝指南</a>。" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 1339990cb7f..43a423edd02 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -453,8 +453,11 @@ msgid "WebDAV" msgstr "WebDAV" #: templates/personal.php:108 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "在您的檔案管理員中使用這個地址來連線到 ownCloud" +#, php-format +msgid "" +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" " +"target=\"_blank\">access your Files via WebDAV</a>" +msgstr "使用<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">這個網址</a>來透過 WebDAV 存取您的檔案" #: templates/users.php:21 msgid "Login Name" @@ -472,7 +475,7 @@ msgstr "管理者復原密碼" 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/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 78ac885617b..80294f58c96 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-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 07:56+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+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/MDB2/Driver/Datatype/sqlite3.php b/lib/MDB2/Driver/Datatype/sqlite3.php deleted file mode 100644 index ca4c1cbceb8..00000000000 --- a/lib/MDB2/Driver/Datatype/sqlite3.php +++ /dev/null @@ -1,385 +0,0 @@ -<?php -/** - * ownCloud - * - * @author Robin Appelman - * @copyright 2011 Robin Appelman icewind1991@gmail.com - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see <http://www.gnu.org/licenses/>. - * - */ - -require_once 'MDB2/Driver/Datatype/Common.php'; - -/** - * MDB2 SQLite driver - * - * @package MDB2 - * @category Database - * @author Lukas Smith <smith@pooteeweet.org> - */ -class MDB2_Driver_Datatype_sqlite3 extends MDB2_Driver_Datatype_Common -{ - // {{{ _getCollationFieldDeclaration() - - /** - * Obtain DBMS specific SQL code portion needed to set the COLLATION - * of a field declaration to be used in statements like CREATE TABLE. - * - * @param string $collation name of the collation - * - * @return string DBMS specific SQL code portion needed to set the COLLATION - * of a field declaration. - */ - function _getCollationFieldDeclaration($collation) - { - return 'COLLATE '.$collation; - } - - // }}} - // {{{ getTypeDeclaration() - - /** - * Obtain DBMS specific SQL code portion needed to declare an text type - * field to be used in statements like CREATE TABLE. - * - * @param array $field associative array with the name of the properties - * of the field being declared as array indexes. Currently, the types - * of supported field properties are as follows: - * - * length - * Integer value that determines the maximum length of the text - * field. If this argument is missing the field should be - * declared to have the longest length allowed by the DBMS. - * - * default - * Text value to be used as default for this field. - * - * notnull - * Boolean flag that indicates whether this field is constrained - * to not be set to null. - * @return string DBMS specific SQL code portion that should be used to - * declare the specified field. - * @access public - */ - function getTypeDeclaration($field) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - switch ($field['type']) { - case 'text': - $length = !empty($field['length']) - ? $field['length'] : false; - $fixed = !empty($field['fixed']) ? $field['fixed'] : false; - return $fixed ? ($length ? 'CHAR('.$length.')' : 'CHAR('.$db->options['default_text_field_length'].')') - : ($length ? 'VARCHAR('.$length.')' : 'TEXT'); - case 'clob': - if (!empty($field['length'])) { - $length = $field['length']; - if ($length <= 255) { - return 'TINYTEXT'; - } elseif ($length <= 65532) { - return 'TEXT'; - } elseif ($length <= 16777215) { - return 'MEDIUMTEXT'; - } - } - return 'LONGTEXT'; - case 'blob': - if (!empty($field['length'])) { - $length = $field['length']; - if ($length <= 255) { - return 'TINYBLOB'; - } elseif ($length <= 65532) { - return 'BLOB'; - } elseif ($length <= 16777215) { - return 'MEDIUMBLOB'; - } - } - return 'LONGBLOB'; - case 'integer': - if (!empty($field['length'])) { - $length = $field['length']; - if ($length <= 2) { - return 'SMALLINT'; - } elseif ($length == 3 || $length == 4) { - return 'INTEGER'; - } elseif ($length > 4) { - return 'BIGINT'; - } - } - return 'INTEGER'; - case 'boolean': - return 'BOOLEAN'; - case 'date': - return 'DATE'; - case 'time': - return 'TIME'; - case 'timestamp': - return 'DATETIME'; - case 'float': - return 'DOUBLE'.($db->options['fixed_float'] ? '('. - ($db->options['fixed_float']+2).','.$db->options['fixed_float'].')' : ''); - case 'decimal': - $length = !empty($field['length']) ? $field['length'] : 18; - $scale = !empty($field['scale']) ? $field['scale'] : $db->options['decimal_places']; - return 'DECIMAL('.$length.','.$scale.')'; - } - return ''; - } - - // }}} - // {{{ _getIntegerDeclaration() - - /** - * Obtain DBMS specific SQL code portion needed to declare an integer type - * field to be used in statements like CREATE TABLE. - * - * @param string $name name the field to be declared. - * @param string $field associative array with the name of the properties - * of the field being declared as array indexes. - * Currently, the types of supported field - * properties are as follows: - * - * unsigned - * Boolean flag that indicates whether the field - * should be declared as unsigned integer if - * possible. - * - * default - * Integer value to be used as default for this - * field. - * - * notnull - * Boolean flag that indicates whether this field is - * constrained to not be set to null. - * @return string DBMS specific SQL code portion that should be used to - * declare the specified field. - * @access protected - */ - function _getIntegerDeclaration($name, $field) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $default = $autoinc = ''; - if (!empty($field['autoincrement'])) { - $autoinc = ' PRIMARY KEY AUTOINCREMENT'; - } elseif (array_key_exists('default', $field)) { - if ($field['default'] === '') { - $field['default'] = empty($field['notnull']) ? null : 0; - } - $default = ' DEFAULT '.$this->quote($field['default'], 'integer'); - } - - $notnull = empty($field['notnull']) ? '' : ' NOT NULL'; - $unsigned = empty($field['unsigned']) ? '' : ' UNSIGNED'; - $name = $db->quoteIdentifier($name, true); - if($autoinc) { - return $name.' '.$this->getTypeDeclaration($field).$autoinc; - }else{ - return $name.' '.$this->getTypeDeclaration($field).$unsigned.$default.$notnull.$autoinc; - } - } - - // }}} - // {{{ matchPattern() - - /** - * build a pattern matching string - * - * @access public - * - * @param array $pattern even keys are strings, odd are patterns (% and _) - * @param string $operator optional pattern operator (LIKE, ILIKE and maybe others in the future) - * @param string $field optional field name that is being matched against - * (might be required when emulating ILIKE) - * - * @return string SQL pattern - */ - function matchPattern($pattern, $operator = null, $field = null) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $match = ''; - if (!is_null($operator)) { - $field = is_null($field) ? '' : $field.' '; - $operator = strtoupper($operator); - switch ($operator) { - // case insensitive - case 'ILIKE': - $match = $field.'LIKE '; - break; - // case sensitive - case 'LIKE': - $match = $field.'LIKE '; - break; - default: - return $db->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, - 'not a supported operator type:'. $operator, __FUNCTION__); - } - } - $match.= "'"; - foreach ($pattern as $key => $value) { - if ($key % 2) { - $match.= $value; - } else { - $match.= $db->escapePattern($db->escape($value)); - } - } - $match.= "'"; - $match.= $this->patternEscapeString(); - return $match; - } - - // }}} - // {{{ _mapNativeDatatype() - - /** - * Maps a native array description of a field to a MDB2 datatype and length - * - * @param array $field native field description - * @return array containing the various possible types, length, sign, fixed - * @access public - */ - function _mapNativeDatatype($field) - { - $db_type = strtolower($field['type']); - $length = !empty($field['length']) ? $field['length'] : null; - $unsigned = !empty($field['unsigned']) ? $field['unsigned'] : null; - $fixed = null; - $type = array(); - switch ($db_type) { - case 'boolean': - $type[] = 'boolean'; - break; - case 'tinyint': - $type[] = 'integer'; - $type[] = 'boolean'; - if (preg_match('/^(is|has)/', $field['name'])) { - $type = array_reverse($type); - } - $unsigned = preg_match('/ unsigned/i', $field['type']); - $length = 1; - break; - case 'smallint': - $type[] = 'integer'; - $unsigned = preg_match('/ unsigned/i', $field['type']); - $length = 2; - break; - case 'mediumint': - $type[] = 'integer'; - $unsigned = preg_match('/ unsigned/i', $field['type']); - $length = 3; - break; - case 'int': - case 'integer': - case 'serial': - $type[] = 'integer'; - $unsigned = preg_match('/ unsigned/i', $field['type']); - $length = 4; - break; - case 'bigint': - case 'bigserial': - $type[] = 'integer'; - $unsigned = preg_match('/ unsigned/i', $field['type']); - $length = 8; - break; - case 'clob': - $type[] = 'clob'; - $fixed = false; - break; - case 'tinytext': - case 'mediumtext': - case 'longtext': - case 'text': - case 'varchar': - case 'varchar2': - $fixed = false; - case 'char': - $type[] = 'text'; - if ($length == '1') { - $type[] = 'boolean'; - if (preg_match('/^(is|has)/', $field['name'])) { - $type = array_reverse($type); - } - } elseif (strstr($db_type, 'text')) { - $type[] = 'clob'; - $type = array_reverse($type); - } - if ($fixed !== false) { - $fixed = true; - } - break; - case 'date': - $type[] = 'date'; - $length = null; - break; - case 'datetime': - case 'timestamp': - $type[] = 'timestamp'; - $length = null; - break; - case 'time': - $type[] = 'time'; - $length = null; - break; - case 'float': - case 'double': - case 'real': - $type[] = 'float'; - break; - case 'decimal': - case 'numeric': - $type[] = 'decimal'; - $length = $length.','.$field['decimal']; - break; - case 'tinyblob': - case 'mediumblob': - case 'longblob': - case 'blob': - $type[] = 'blob'; - $length = null; - break; - case 'year': - $type[] = 'integer'; - $type[] = 'date'; - $length = null; - break; - default: - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - return $db->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, - 'unknown database attribute type: '.$db_type, __FUNCTION__); - } - - if ((int)$length <= 0) { - $length = null; - } - - return array($type, $length, $unsigned, $fixed); - } - - // }}} -} diff --git a/lib/MDB2/Driver/Function/sqlite3.php b/lib/MDB2/Driver/Function/sqlite3.php deleted file mode 100644 index 4147a48199f..00000000000 --- a/lib/MDB2/Driver/Function/sqlite3.php +++ /dev/null @@ -1,136 +0,0 @@ -<?php -/** - * ownCloud - * - * @author Robin Appelman - * @copyright 2011 Robin Appelman icewind1991@gmail.com - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see <http://www.gnu.org/licenses/>. - * - */ - -require_once 'MDB2/Driver/Function/Common.php'; - -/** - * MDB2 SQLite driver for the function modules - * - * @package MDB2 - * @category Database - * @author Lukas Smith <smith@pooteeweet.org> - */ -class MDB2_Driver_Function_sqlite3 extends MDB2_Driver_Function_Common -{ - // {{{ constructor - - /** - * Constructor - */ - function __construct($db_index) - { - parent::__construct($db_index); - // create all sorts of UDFs - } - - // {{{ now() - - /** - * Return string to call a variable with the current timestamp inside an SQL statement - * There are three special variables for current date and time. - * - * @return string to call a variable with the current timestamp - * @access public - */ - function now($type = 'timestamp') - { - switch ($type) { - case 'time': - return 'CURRENT_TIME'; - case 'date': - return 'CURRENT_DATE'; - case 'timestamp': - default: - return 'CURRENT_TIMESTAMP'; - } - } - - // }}} - // {{{ unixtimestamp() - - /** - * return string to call a function to get the unix timestamp from a iso timestamp - * - * @param string $expression - * - * @return string to call a variable with the timestamp - * @access public - */ - function unixtimestamp($expression) - { - return 'strftime("%s",'. $expression.', "utc")'; - } - - // }}} - // {{{ substring() - - /** - * return string to call a function to get a substring inside an SQL statement - * - * @return string to call a function to get a substring - * @access public - */ - function substring($value, $position = 1, $length = null) - { - if (!is_null($length)) { - return "substr($value, $position, $length)"; - } - return "substr($value, $position, length($value))"; - } - - // }}} - // {{{ random() - - /** - * return string to call a function to get random value inside an SQL statement - * - * @return return string to generate float between 0 and 1 - * @access public - */ - function random() - { - return '((RANDOM()+2147483648)/4294967296)'; - } - - // }}} - // {{{ replace() - - /** - * return string to call a function to get a replacement inside an SQL statement. - * - * @return string to call a function to get a replace - * @access public - */ - function replace($str, $from_str, $to_str) - { - $db =& $this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $error =& $db->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, - 'method not implemented', __FUNCTION__); - return $error; - } - - // }}} -} diff --git a/lib/MDB2/Driver/Manager/sqlite3.php b/lib/MDB2/Driver/Manager/sqlite3.php deleted file mode 100644 index 921153c17dd..00000000000 --- a/lib/MDB2/Driver/Manager/sqlite3.php +++ /dev/null @@ -1,1362 +0,0 @@ -<?php -/** - * ownCloud - * - * @author Robin Appelman - * @copyright 2011 Robin Appelman icewind1991@gmail.com - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see <http://www.gnu.org/licenses/>. - * - */ - -require_once 'MDB2/Driver/Manager/Common.php'; - -/** - * MDB2 SQLite driver for the management modules - * - * @package MDB2 - * @category Database - * @author Lukas Smith <smith@pooteeweet.org> - * @author Lorenzo Alberton <l.alberton@quipo.it> - */ -class MDB2_Driver_Manager_sqlite3 extends MDB2_Driver_Manager_Common -{ - // {{{ createDatabase() - - /** - * create a new database - * - * @param string $name name of the database that should be created - * @param array $options array with charset info - * - * @return mixed MDB2_OK on success, a MDB2 error on failure - * @access public - */ - function createDatabase($name, $options = array()) - { - $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ); - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $database_file = $db->_getDatabaseFile($name); - if (file_exists($database_file)) { - return $db->raiseError(MDB2_ERROR_ALREADY_EXISTS, null, null, - 'database already exists', __FUNCTION__); - } - $php_errormsg = ''; - $database_file="$datadir/$database_file.db"; - $handle=new SQLite3($database_file); - if (!$handle) { - return $db->raiseError(MDB2_ERROR_CANNOT_CREATE, null, null, - (isset($php_errormsg) ? $php_errormsg : 'could not create the database file'), __FUNCTION__); - } - //sqlite doesn't support the latin1 we use -// if (!empty($options['charset'])) { -// $query = 'PRAGMA encoding = ' . $db->quote($options['charset'], 'text'); -// $handle->exec($query); -// } - $handle->close(); - return MDB2_OK; - } - - // }}} - // {{{ dropDatabase() - - /** - * drop an existing database - * - * @param string $name name of the database that should be dropped - * @return mixed MDB2_OK on success, a MDB2 error on failure - * @access public - */ - function dropDatabase($name) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $database_file = $db->_getDatabaseFile($name); - if (!@file_exists($database_file)) { - return $db->raiseError(MDB2_ERROR_CANNOT_DROP, null, null, - 'database does not exist', __FUNCTION__); - } - $result = @unlink($database_file); - if (!$result) { - return $db->raiseError(MDB2_ERROR_CANNOT_DROP, null, null, - (isset($php_errormsg) ? $php_errormsg : 'could not remove the database file'), __FUNCTION__); - } - return MDB2_OK; - } - - // }}} - // {{{ _getAdvancedFKOptions() - - /** - * Return the FOREIGN KEY query section dealing with non-standard options - * as MATCH, INITIALLY DEFERRED, ON UPDATE, ... - * - * @param array $definition - * @return string - * @access protected - */ - function _getAdvancedFKOptions($definition) - { - $query = ''; - if (!empty($definition['match'])) { - $query .= ' MATCH '.$definition['match']; - } - if (!empty($definition['onupdate']) && (strtoupper($definition['onupdate']) != 'NO ACTION')) { - $query .= ' ON UPDATE '.$definition['onupdate']; - } - if (!empty($definition['ondelete']) && (strtoupper($definition['ondelete']) != 'NO ACTION')) { - $query .= ' ON DELETE '.$definition['ondelete']; - } - if (!empty($definition['deferrable'])) { - $query .= ' DEFERRABLE'; - } else { - $query .= ' NOT DEFERRABLE'; - } - if (!empty($definition['initiallydeferred'])) { - $query .= ' INITIALLY DEFERRED'; - } else { - $query .= ' INITIALLY IMMEDIATE'; - } - return $query; - } - - // }}} - // {{{ _getCreateTableQuery() - - /** - * Create a basic SQL query for a new table creation - * @param string $name Name of the database that should be created - * @param array $fields Associative array that contains the definition of each field of the new table - * @param array $options An associative array of table options - * @return mixed string (the SQL query) on success, a MDB2 error on failure - * @see createTable() - */ - function _getCreateTableQuery($name, $fields, $options = array()) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - if (!$name) { - return $db->raiseError(MDB2_ERROR_CANNOT_CREATE, null, null, - 'no valid table name specified', __FUNCTION__); - } - if (empty($fields)) { - return $db->raiseError(MDB2_ERROR_CANNOT_CREATE, null, null, - 'no fields specified for table "'.$name.'"', __FUNCTION__); - } - $query_fields = $this->getFieldDeclarationList($fields); - if (PEAR::isError($query_fields)) { - return $query_fields; - } - if (!empty($options['foreign_keys'])) { - foreach ($options['foreign_keys'] as $fkname => $fkdef) { - if (empty($fkdef)) { - continue; - } - $query_fields.= ', CONSTRAINT '.$fkname.' FOREIGN KEY ('.implode(', ', array_keys($fkdef['fields'])).')'; - $query_fields.= ' REFERENCES '.$fkdef['references']['table'].' ('.implode(', ', array_keys($fkdef['references']['fields'])).')'; - $query_fields.= $this->_getAdvancedFKOptions($fkdef); - } - } - - $name = $db->quoteIdentifier($name, true); - $result = 'CREATE '; - if (!empty($options['temporary'])) { - $result .= $this->_getTemporaryTableQuery(); - } - $result .= " TABLE $name ($query_fields)"; - return $result; - } - - // }}} - // {{{ createTable() - - /** - * create a new table - * - * @param string $name Name of the database that should be created - * @param array $fields Associative array that contains the definition - * of each field of the new table - * @param array $options An associative array of table options - * - * @return mixed MDB2_OK on success, a MDB2 error on failure - * @access public - */ - function createTable($name, $fields, $options = array()) - { - $result = parent::createTable($name, $fields, $options); - if (PEAR::isError($result)) { - return $result; - } - // create triggers to enforce FOREIGN KEY constraints - if (!empty($options['foreign_keys'])) { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - foreach ($options['foreign_keys'] as $fkname => $fkdef) { - if (empty($fkdef)) { - continue; - } - //set actions to default if not set - $fkdef['onupdate'] = empty($fkdef['onupdate']) ? $db->options['default_fk_action_onupdate'] : strtoupper($fkdef['onupdate']); - $fkdef['ondelete'] = empty($fkdef['ondelete']) ? $db->options['default_fk_action_ondelete'] : strtoupper($fkdef['ondelete']); - - $trigger_names = array( - 'insert' => $fkname.'_insert_trg', - 'update' => $fkname.'_update_trg', - 'pk_update' => $fkname.'_pk_update_trg', - 'pk_delete' => $fkname.'_pk_delete_trg', - ); - - //create the [insert|update] triggers on the FK table - $table_fields = array_keys($fkdef['fields']); - $referenced_fields = array_keys($fkdef['references']['fields']); - $query = 'CREATE TRIGGER %s BEFORE %s ON '.$name - .' FOR EACH ROW BEGIN' - .' SELECT RAISE(ROLLBACK, \'%s on table "'.$name.'" violates FOREIGN KEY constraint "'.$fkname.'"\')' - .' WHERE (SELECT '; - $aliased_fields = array(); - foreach ($referenced_fields as $field) { - $aliased_fields[] = $fkdef['references']['table'] .'.'.$field .' AS '.$field; - } - $query .= implode(',', $aliased_fields) - .' FROM '.$fkdef['references']['table'] - .' WHERE '; - $conditions = array(); - for ($i=0; $i<count($table_fields); $i++) { - $conditions[] = $referenced_fields[$i] .' = NEW.'.$table_fields[$i]; - } - $query .= implode(' AND ', $conditions).') IS NULL; END;'; - $result = $db->exec(sprintf($query, $trigger_names['insert'], 'INSERT', 'insert')); - if (PEAR::isError($result)) { - return $result; - } - - $result = $db->exec(sprintf($query, $trigger_names['update'], 'UPDATE', 'update')); - if (PEAR::isError($result)) { - return $result; - } - - //create the ON [UPDATE|DELETE] triggers on the primary table - $restrict_action = 'SELECT RAISE(ROLLBACK, \'%s on table "'.$name.'" violates FOREIGN KEY constraint "'.$fkname.'"\')' - .' WHERE (SELECT '; - $aliased_fields = array(); - foreach ($table_fields as $field) { - $aliased_fields[] = $name .'.'.$field .' AS '.$field; - } - $restrict_action .= implode(',', $aliased_fields) - .' FROM '.$name - .' WHERE '; - $conditions = array(); - $new_values = array(); - $null_values = array(); - for ($i=0; $i<count($table_fields); $i++) { - $conditions[] = $table_fields[$i] .' = OLD.'.$referenced_fields[$i]; - $new_values[] = $table_fields[$i] .' = NEW.'.$referenced_fields[$i]; - $null_values[] = $table_fields[$i] .' = NULL'; - } - $conditions2 = array(); - for ($i=0; $i<count($referenced_fields); $i++) { - $conditions2[] = 'NEW.'.$referenced_fields[$i] .' <> OLD.'.$referenced_fields[$i]; - } - $restrict_action .= implode(' AND ', $conditions).') IS NOT NULL' - .' AND (' .implode(' OR ', $conditions2) .')'; - - $cascade_action_update = 'UPDATE '.$name.' SET '.implode(', ', $new_values) .' WHERE '.implode(' AND ', $conditions); - $cascade_action_delete = 'DELETE FROM '.$name.' WHERE '.implode(' AND ', $conditions); - $setnull_action = 'UPDATE '.$name.' SET '.implode(', ', $null_values).' WHERE '.implode(' AND ', $conditions); - - if ('SET DEFAULT' == $fkdef['onupdate'] || 'SET DEFAULT' == $fkdef['ondelete']) { - $db->loadModule('Reverse', null, true); - $default_values = array(); - foreach ($table_fields as $table_field) { - $field_definition = $db->reverse->getTableFieldDefinition($name, $field); - if (PEAR::isError($field_definition)) { - return $field_definition; - } - $default_values[] = $table_field .' = '. $field_definition[0]['default']; - } - $setdefault_action = 'UPDATE '.$name.' SET '.implode(', ', $default_values).' WHERE '.implode(' AND ', $conditions); - } - - $query = 'CREATE TRIGGER %s' - .' %s ON '.$fkdef['references']['table'] - .' FOR EACH ROW BEGIN '; - - if ('CASCADE' == $fkdef['onupdate']) { - $sql_update = sprintf($query, $trigger_names['pk_update'], 'AFTER UPDATE', 'update') . $cascade_action_update. '; END;'; - } elseif ('SET NULL' == $fkdef['onupdate']) { - $sql_update = sprintf($query, $trigger_names['pk_update'], 'BEFORE UPDATE', 'update') . $setnull_action. '; END;'; - } elseif ('SET DEFAULT' == $fkdef['onupdate']) { - $sql_update = sprintf($query, $trigger_names['pk_update'], 'BEFORE UPDATE', 'update') . $setdefault_action. '; END;'; - } elseif ('NO ACTION' == $fkdef['onupdate']) { - $sql_update = sprintf($query.$restrict_action, $trigger_names['pk_update'], 'AFTER UPDATE', 'update') . '; END;'; - } elseif ('RESTRICT' == $fkdef['onupdate']) { - $sql_update = sprintf($query.$restrict_action, $trigger_names['pk_update'], 'BEFORE UPDATE', 'update') . '; END;'; - } - if ('CASCADE' == $fkdef['ondelete']) { - $sql_delete = sprintf($query, $trigger_names['pk_delete'], 'AFTER DELETE', 'delete') . $cascade_action_delete. '; END;'; - } elseif ('SET NULL' == $fkdef['ondelete']) { - $sql_delete = sprintf($query, $trigger_names['pk_delete'], 'BEFORE DELETE', 'delete') . $setnull_action. '; END;'; - } elseif ('SET DEFAULT' == $fkdef['ondelete']) { - $sql_delete = sprintf($query, $trigger_names['pk_delete'], 'BEFORE DELETE', 'delete') . $setdefault_action. '; END;'; - } elseif ('NO ACTION' == $fkdef['ondelete']) { - $sql_delete = sprintf($query.$restrict_action, $trigger_names['pk_delete'], 'AFTER DELETE', 'delete') . '; END;'; - } elseif ('RESTRICT' == $fkdef['ondelete']) { - $sql_delete = sprintf($query.$restrict_action, $trigger_names['pk_delete'], 'BEFORE DELETE', 'delete') . '; END;'; - } - - if (PEAR::isError($result)) { - return $result; - } - $result = $db->exec($sql_delete); - if (PEAR::isError($result)) { - return $result; - } - $result = $db->exec($sql_update); - if (PEAR::isError($result)) { - return $result; - } - } - } - if (PEAR::isError($result)) { - return $result; - } - return MDB2_OK; - } - - // }}} - // {{{ dropTable() - - /** - * drop an existing table - * - * @param string $name name of the table that should be dropped - * @return mixed MDB2_OK on success, a MDB2 error on failure - * @access public - */ - function dropTable($name) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - //delete the triggers associated to existing FK constraints - $constraints = $this->listTableConstraints($name); - if (!PEAR::isError($constraints) && !empty($constraints)) { - $db->loadModule('Reverse', null, true); - foreach ($constraints as $constraint) { - $definition = $db->reverse->getTableConstraintDefinition($name, $constraint); - if (!PEAR::isError($definition) && !empty($definition['foreign'])) { - $result = $this->_dropFKTriggers($name, $constraint, $definition['references']['table']); - if (PEAR::isError($result)) { - return $result; - } - } - } - } - - $name = $db->quoteIdentifier($name, true); - return $db->exec("DROP TABLE $name"); - } - - // }}} - // {{{ vacuum() - - /** - * Optimize (vacuum) all the tables in the db (or only the specified table) - * and optionally run ANALYZE. - * - * @param string $table table name (all the tables if empty) - * @param array $options an array with driver-specific options: - * - timeout [int] (in seconds) [mssql-only] - * - analyze [boolean] [pgsql and mysql] - * - full [boolean] [pgsql-only] - * - freeze [boolean] [pgsql-only] - * - * @return mixed MDB2_OK success, a MDB2 error on failure - * @access public - */ - function vacuum($table = null, $options = array()) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $query = 'VACUUM'; - if (!empty($table)) { - $query .= ' '.$db->quoteIdentifier($table, true); - } - return $db->exec($query); - } - - // }}} - // {{{ alterTable() - - /** - * alter an existing table - * - * @param string $name name of the table that is intended to be changed. - * @param array $changes associative array that contains the details of each type - * of change that is intended to be performed. The types of - * changes that are currently supported are defined as follows: - * - * name - * - * New name for the table. - * - * add - * - * Associative array with the names of fields to be added as - * indexes of the array. The value of each entry of the array - * should be set to another associative array with the properties - * of the fields to be added. The properties of the fields should - * be the same as defined by the MDB2 parser. - * - * - * remove - * - * Associative array with the names of fields to be removed as indexes - * of the array. Currently the values assigned to each entry are ignored. - * An empty array should be used for future compatibility. - * - * rename - * - * Associative array with the names of fields to be renamed as indexes - * of the array. The value of each entry of the array should be set to - * another associative array with the entry named name with the new - * field name and the entry named Declaration that is expected to contain - * the portion of the field declaration already in DBMS specific SQL code - * as it is used in the CREATE TABLE statement. - * - * change - * - * Associative array with the names of the fields to be changed as indexes - * of the array. Keep in mind that if it is intended to change either the - * name of a field and any other properties, the change array entries - * should have the new names of the fields as array indexes. - * - * The value of each entry of the array should be set to another associative - * array with the properties of the fields to that are meant to be changed as - * array entries. These entries should be assigned to the new values of the - * respective properties. The properties of the fields should be the same - * as defined by the MDB2 parser. - * - * Example - * array( - * 'name' => 'userlist', - * 'add' => array( - * 'quota' => array( - * 'type' => 'integer', - * 'unsigned' => 1 - * ) - * ), - * 'remove' => array( - * 'file_limit' => array(), - * 'time_limit' => array() - * ), - * 'change' => array( - * 'name' => array( - * 'length' => '20', - * 'definition' => array( - * 'type' => 'text', - * 'length' => 20, - * ), - * ) - * ), - * 'rename' => array( - * 'sex' => array( - * 'name' => 'gender', - * 'definition' => array( - * 'type' => 'text', - * 'length' => 1, - * 'default' => 'M', - * ), - * ) - * ) - * ) - * - * @param boolean $check indicates whether the function should just check if the DBMS driver - * can perform the requested table alterations if the value is true or - * actually perform them otherwise. - * @access public - * - * @return mixed MDB2_OK on success, a MDB2 error on failure - */ - function alterTable($name, $changes, $check, $options = array()) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - foreach ($changes as $change_name => $change) { - switch ($change_name) { - case 'add': - case 'remove': - case 'change': - case 'name': - case 'rename': - break; - default: - return $db->raiseError(MDB2_ERROR_CANNOT_ALTER, null, null, - 'change type "'.$change_name.'" not yet supported', __FUNCTION__); - } - } - - if ($check) { - return MDB2_OK; - } - - if (empty($changes['remove']) and empty($changes['rename']) and empty($changes['change']) ) {//if only rename or add changes are required, we can use ALTER TABLE - $query = ''; - if (!empty($changes['name'])) { - $change_name = $db->quoteIdentifier($changes['name'], true); - $query = 'RENAME TO ' . $change_name; - $db->exec("ALTER TABLE $name $query"); - } - - if (!empty($changes['add']) && is_array($changes['add'])) { - foreach ($changes['add'] as $field_name => $field) { - $query= 'ADD ' . $db->getDeclaration($field['type'], $field_name, $field); - $db->exec("ALTER TABLE $name $query"); - } - } - return MDB2_OK; - } - - $db->loadModule('Reverse', null, true); - - // for other operations we need to emulate them with sqlite3 - $fields = $db->manager->listTableFields($name); - if (PEAR::isError($fields)) { - return $fields; - } - - $fields = array_flip($fields); - foreach ($fields as $field => $value) { - $definition = $db->reverse->getTableFieldDefinition($name, $field); - if (PEAR::isError($definition)) { - return $definition; - } - $fields[$field] = $definition[0]; - } - - $indexes = $db->manager->listTableIndexes($name); - if (PEAR::isError($indexes)) { - return $indexes; - } - - $indexes = array_flip($indexes); - foreach ($indexes as $index => $value) { - $definition = $db->reverse->getTableIndexDefinition($name, $index); - if (PEAR::isError($definition)) { - return $definition; - } - $indexes[$index] = $definition; - } - - $constraints = $db->manager->listTableConstraints($name); - if (PEAR::isError($constraints)) { - return $constraints; - } - - if (!array_key_exists('foreign_keys', $options)) { - $options['foreign_keys'] = array(); - } - $constraints = array_flip($constraints); - foreach ($constraints as $constraint => $value) { - if (!empty($definition['primary'])) { - if (!array_key_exists('primary', $options)) { - $options['primary'] = $definition['fields']; - //remove from the $constraint array, it's already handled by createTable() - unset($constraints[$constraint]); - } - } else { - $c_definition = $db->reverse->getTableConstraintDefinition($name, $constraint); - if (PEAR::isError($c_definition)) { - return $c_definition; - } - if (!empty($c_definition['foreign'])) { - if (!array_key_exists($constraint, $options['foreign_keys'])) { - $options['foreign_keys'][$constraint] = $c_definition; - } - //remove from the $constraint array, it's already handled by createTable() - unset($constraints[$constraint]); - } else { - $constraints[$constraint] = $c_definition; - } - } - } - - $name_new = $name; - $create_order = $select_fields = array_keys($fields); - foreach ($changes as $change_name => $change) { - switch ($change_name) { - case 'add': - foreach ($change as $field_name => $field) { - $fields[$field_name] = $field; - $create_order[] = $field_name; - } - break; - case 'remove': - foreach ($change as $field_name => $field) { - unset($fields[$field_name]); - $select_fields = array_diff($select_fields, array($field_name)); - $create_order = array_diff($create_order, array($field_name)); - } - break; - case 'change': - foreach ($change as $field_name => $field) { - $fields[$field_name] = $field['definition']; - } - break; - case 'name': - $name_new = $change; - break; - case 'rename': - foreach ($change as $field_name => $field) { - unset($fields[$field_name]); - $fields[$field['name']] = $field['definition']; - $create_order[array_search($field_name, $create_order)] = $field['name']; - } - break; - default: - return $db->raiseError(MDB2_ERROR_CANNOT_ALTER, null, null, - 'change type "'.$change_name.'" not yet supported', __FUNCTION__); - } - } - - //rename the old table so we can create the new one - $db->exec("ALTER TABLE $name RENAME TO __$name"); - $data = null; - - - $result = $this->createTable($name_new, $fields, $options); - if (PEAR::isError($result)) { - return $result; - } - - //these seem to only give errors - -// foreach ($indexes as $index => $definition) { -// $this->createIndex($name_new, $index, $definition); -// } - -// foreach ($constraints as $constraint => $definition) { -// $this->createConstraint($name_new, $constraint, $definition); -// } - - //fill the new table with data from the old one - if (!empty($select_fields)) { - $query = 'INSERT INTO '.$db->quoteIdentifier($name_new, true); - $query.= '('.implode(', ', array_slice(array_keys($fields), 0, count($select_fields))).')'; - $query .= ' SELECT '.implode(', ', $select_fields).' FROM '.$db->quoteIdentifier('__'.$name, true); - $db->exec($query); - } - -// if (!empty($select_fields) && !empty($data)) { -// $query = 'INSERT INTO '.$db->quoteIdentifier($name_new, true); -// $query.= '('.implode(', ', array_slice(array_keys($fields), 0, count($select_fields))).')'; -// $query.=' VALUES (?'.str_repeat(', ?', (count($select_fields) - 1)).')'; -// $stmt =$db->prepare($query, null, MDB2_PREPARE_MANIP); -// if (PEAR::isError($stmt)) { -// return $stmt; -// } -// foreach ($data as $row) { -// $result = $stmt->execute($row); -// if (PEAR::isError($result)) { -// return $result; -// } -// } -// } - - //remove the old table - $result = $this->dropTable('__'.$name); - if (PEAR::isError($result)) { - return $result; - } - return MDB2_OK; - } - - // }}} - // {{{ listDatabases() - - /** - * list all databases - * - * @return mixed array of database names on success, a MDB2 error on failure - * @access public - */ - function listDatabases() - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - return $db->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, - 'list databases is not supported', __FUNCTION__); - } - - // }}} - // {{{ listUsers() - - /** - * list all users - * - * @return mixed array of user names on success, a MDB2 error on failure - * @access public - */ - function listUsers() - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - return $db->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, - 'list databases is not supported', __FUNCTION__); - } - - // }}} - // {{{ listViews() - - /** - * list all views in the current database - * - * @return mixed array of view names on success, a MDB2 error on failure - * @access public - */ - function listViews($dummy=null) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $query = "SELECT name FROM sqlite_master WHERE type='view' AND sql NOT NULL"; - $result = $db->queryCol($query); - if (PEAR::isError($result)) { - return $result; - } - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $result = array_map(($db->options['field_case'] == CASE_LOWER ? 'strtolower' : 'strtoupper'), $result); - } - return $result; - } - - // }}} - // {{{ listTableViews() - - /** - * list the views in the database that reference a given table - * - * @param string table for which all referenced views should be found - * @return mixed array of view names on success, a MDB2 error on failure - * @access public - */ - function listTableViews($table) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $query = "SELECT name, sql FROM sqlite_master WHERE type='view' AND sql NOT NULL"; - $views = $db->queryAll($query, array('text', 'text'), MDB2_FETCHMODE_ASSOC); - if (PEAR::isError($views)) { - return $views; - } - $result = array(); - foreach ($views as $row) { - if (preg_match("/^create view .* \bfrom\b\s+\b{$table}\b /i", $row['sql'])) { - if (!empty($row['name'])) { - $result[$row['name']] = true; - } - } - } - - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $result = array_change_key_case($result, $db->options['field_case']); - } - return array_keys($result); - } - - // }}} - // {{{ listTables() - - /** - * list all tables in the current database - * - * @return mixed array of table names on success, a MDB2 error on failure - * @access public - */ - function listTables($dummy=null) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $query = "SELECT name FROM sqlite_master WHERE type='table' AND sql NOT NULL AND name!='sqlite_sequence' ORDER BY name"; - $table_names = $db->queryCol($query); - if (PEAR::isError($table_names)) { - return $table_names; - } - $result = array(); - foreach ($table_names as $table_name) { - if (!$this->_fixSequenceName($table_name, true)) { - $result[] = $table_name; - } - } - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $result = array_map(($db->options['field_case'] == CASE_LOWER ? 'strtolower' : 'strtoupper'), $result); - } - return $result; - } - - // }}} - // {{{ listTableFields() - - /** - * list all fields in a table in the current database - * - * @param string $table name of table that should be used in method - * @return mixed array of field names on success, a MDB2 error on failure - * @access public - */ - function listTableFields($table) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $result = $db->loadModule('Reverse', null, true); - if (PEAR::isError($result)) { - return $result; - } - $query = "SELECT sql FROM sqlite_master WHERE type='table' AND "; - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $query.= 'LOWER(name)='.$db->quote(strtolower($table), 'text'); - } else { - $query.= 'name='.$db->quote($table, 'text'); - } - $sql = $db->queryOne($query); - if (PEAR::isError($sql)) { - return $sql; - } - $columns = $db->reverse->_getTableColumns($sql); - $fields = array(); - foreach ($columns as $column) { - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - if ($db->options['field_case'] == CASE_LOWER) { - $column['name'] = strtolower($column['name']); - } else { - $column['name'] = strtoupper($column['name']); - } - } else { - $column = array_change_key_case($column, $db->options['field_case']); - } - $fields[] = $column['name']; - } - return $fields; - } - - // }}} - // {{{ listTableTriggers() - - /** - * list all triggers in the database that reference a given table - * - * @param string table for which all referenced triggers should be found - * @return mixed array of trigger names on success, a MDB2 error on failure - * @access public - */ - function listTableTriggers($table = null) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $query = "SELECT name FROM sqlite_master WHERE type='trigger' AND sql NOT NULL"; - if (!is_null($table)) { - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $query.= ' AND LOWER(tbl_name)='.$db->quote(strtolower($table), 'text'); - } else { - $query.= ' AND tbl_name='.$db->quote($table, 'text'); - } - } - $result = $db->queryCol($query); - if (PEAR::isError($result)) { - return $result; - } - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $result = array_map(($db->options['field_case'] == CASE_LOWER ? 'strtolower' : 'strtoupper'), $result); - } - return $result; - } - - // }}} - // {{{ createIndex() - - /** - * Get the stucture of a field into an array - * - * @param string $table name of the table on which the index is to be created - * @param string $name name of the index to be created - * @param array $definition associative array that defines properties of the index to be created. - * Currently, only one property named FIELDS is supported. This property - * is also an associative with the names of the index fields as array - * indexes. Each entry of this array is set to another type of associative - * array that specifies properties of the index that are specific to - * each field. - * - * Currently, only the sorting property is supported. It should be used - * to define the sorting direction of the index. It may be set to either - * ascending or descending. - * - * Not all DBMS support index sorting direction configuration. The DBMS - * drivers of those that do not support it ignore this property. Use the - * function support() to determine whether the DBMS driver can manage indexes. - - * Example - * array( - * 'fields' => array( - * 'user_name' => array( - * 'sorting' => 'ascending' - * ), - * 'last_login' => array() - * ) - * ) - * @return mixed MDB2_OK on success, a MDB2 error on failure - * @access public - */ - function createIndex($table, $name, $definition) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $table = $db->quoteIdentifier($table, true); - $name = $db->getIndexName($name); - $query = "CREATE INDEX $name ON $table"; - $fields = array(); - foreach ($definition['fields'] as $field_name => $field) { - $field_string = $field_name; - if (!empty($field['sorting'])) { - switch ($field['sorting']) { - case 'ascending': - $field_string.= ' ASC'; - break; - case 'descending': - $field_string.= ' DESC'; - break; - } - } - $fields[] = $field_string; - } - $query .= ' ('.implode(', ', $fields) . ')'; - return $db->exec($query); - } - - // }}} - // {{{ dropIndex() - - /** - * drop existing index - * - * @param string $table name of table that should be used in method - * @param string $name name of the index to be dropped - * @return mixed MDB2_OK on success, a MDB2 error on failure - * @access public - */ - function dropIndex($table, $name) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $name = $db->getIndexName($name); - return $db->exec("DROP INDEX $name"); - } - - // }}} - // {{{ listTableIndexes() - - /** - * list all indexes in a table - * - * @param string $table name of table that should be used in method - * @return mixed array of index names on success, a MDB2 error on failure - * @access public - */ - function listTableIndexes($table) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $table = $db->quote($table, 'text'); - $query = "SELECT sql FROM sqlite_master WHERE type='index' AND "; - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $query.= 'LOWER(tbl_name)='.strtolower($table); - } else { - $query.= "tbl_name=$table"; - } - $query.= " AND sql NOT NULL ORDER BY name"; - $indexes = $db->queryCol($query, 'text'); - if (PEAR::isError($indexes)) { - return $indexes; - } - - $result = array(); - foreach ($indexes as $sql) { - if (preg_match("/^create index ([^ ]+) on /i", $sql, $tmp)) { - $index = $this->_fixIndexName($tmp[1]); - if (!empty($index)) { - $result[$index] = true; - } - } - } - - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $result = array_change_key_case($result, $db->options['field_case']); - } - return array_keys($result); - } - - // }}} - // {{{ createConstraint() - - /** - * create a constraint on a table - * - * @param string $table name of the table on which the constraint is to be created - * @param string $name name of the constraint to be created - * @param array $definition associative array that defines properties of the constraint to be created. - * Currently, only one property named FIELDS is supported. This property - * is also an associative with the names of the constraint fields as array - * constraints. Each entry of this array is set to another type of associative - * array that specifies properties of the constraint that are specific to - * each field. - * - * Example - * array( - * 'fields' => array( - * 'user_name' => array(), - * 'last_login' => array() - * ) - * ) - * @return mixed MDB2_OK on success, a MDB2 error on failure - * @access public - */ - function createConstraint($table, $name, $definition) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - if (!empty($definition['primary'])) { - return $db->manager->alterTable($table, array(), false, array('primary' => $definition['fields'])); - } - - if (!empty($definition['foreign'])) { - return $db->manager->alterTable($table, array(), false, array('foreign_keys' => array($name => $definition))); - } - - $table = $db->quoteIdentifier($table, true); - $name = $db->getIndexName($name); - $query = "CREATE UNIQUE INDEX $name ON $table"; - $fields = array(); - foreach ($definition['fields'] as $field_name => $field) { - $field_string = $field_name; - if (!empty($field['sorting'])) { - switch ($field['sorting']) { - case 'ascending': - $field_string.= ' ASC'; - break; - case 'descending': - $field_string.= ' DESC'; - break; - } - } - $fields[] = $field_string; - } - $query .= ' ('.implode(', ', $fields) . ')'; - return $db->exec($query); - } - - // }}} - // {{{ dropConstraint() - - /** - * drop existing constraint - * - * @param string $table name of table that should be used in method - * @param string $name name of the constraint to be dropped - * @param string $primary hint if the constraint is primary - * @return mixed MDB2_OK on success, a MDB2 error on failure - * @access public - */ - function dropConstraint($table, $name, $primary = false) - { - if ($primary || $name == 'PRIMARY') { - return $this->alterTable($table, array(), false, array('primary' => null)); - } - - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - //is it a FK constraint? If so, also delete the associated triggers - $db->loadModule('Reverse', null, true); - $definition = $db->reverse->getTableConstraintDefinition($table, $name); - if (!PEAR::isError($definition) && !empty($definition['foreign'])) { - //first drop the FK enforcing triggers - $result = $this->_dropFKTriggers($table, $name, $definition['references']['table']); - if (PEAR::isError($result)) { - return $result; - } - //then drop the constraint itself - return $this->alterTable($table, array(), false, array('foreign_keys' => array($name => null))); - } - - $name = $db->getIndexName($name); - return $db->exec("DROP INDEX $name"); - } - - // }}} - // {{{ _dropFKTriggers() - - /** - * Drop the triggers created to enforce the FOREIGN KEY constraint on the table - * - * @param string $table table name - * @param string $fkname FOREIGN KEY constraint name - * @param string $referenced_table referenced table name - * - * @return mixed MDB2_OK on success, a MDB2 error on failure - * @access private - */ - function _dropFKTriggers($table, $fkname, $referenced_table) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $triggers = $this->listTableTriggers($table); - $triggers2 = $this->listTableTriggers($referenced_table); - if (!PEAR::isError($triggers2) && !PEAR::isError($triggers)) { - $triggers = array_merge($triggers, $triggers2); - $pattern = '/^'.$fkname.'(_pk)?_(insert|update|delete)_trg$/i'; - foreach ($triggers as $trigger) { - if (preg_match($pattern, $trigger)) { - $result = $db->exec('DROP TRIGGER '.$trigger); - if (PEAR::isError($result)) { - return $result; - } - } - } - } - return MDB2_OK; - } - - // }}} - // {{{ listTableConstraints() - - /** - * list all constraints in a table - * - * @param string $table name of table that should be used in method - * @return mixed array of constraint names on success, a MDB2 error on failure - * @access public - */ - function listTableConstraints($table) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $table = $db->quote($table, 'text'); - $query = "SELECT sql FROM sqlite_master WHERE type='index' AND "; - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $query.= 'LOWER(tbl_name)='.strtolower($table); - } else { - $query.= "tbl_name=$table"; - } - $query.= " AND sql NOT NULL ORDER BY name"; - $indexes = $db->queryCol($query, 'text'); - if (PEAR::isError($indexes)) { - return $indexes; - } - - $result = array(); - foreach ($indexes as $sql) { - if (preg_match("/^create unique index ([^ ]+) on /i", $sql, $tmp)) { - $index = $this->_fixIndexName($tmp[1]); - if (!empty($index)) { - $result[$index] = true; - } - } - } - - // also search in table definition for PRIMARY KEYs... - $query = "SELECT sql FROM sqlite_master WHERE type='table' AND "; - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $query.= 'LOWER(name)='.strtolower($table); - } else { - $query.= "name=$table"; - } - $query.= " AND sql NOT NULL ORDER BY name"; - $table_def = $db->queryOne($query, 'text'); - if (PEAR::isError($table_def)) { - return $table_def; - } - if (preg_match("/\bPRIMARY\s+KEY\b/i", $table_def, $tmp)) { - $result['primary'] = true; - } - - // ...and for FOREIGN KEYs - if (preg_match_all("/\bCONSTRAINT\b\s+([^\s]+)\s+\bFOREIGN\s+KEY/imsx", $table_def, $tmp)) { - foreach ($tmp[1] as $fk) { - $result[$fk] = true; - } - } - - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $result = array_change_key_case($result, $db->options['field_case']); - } - return array_keys($result); - } - - // }}} - // {{{ createSequence() - - /** - * create sequence - * - * @param string $seq_name name of the sequence to be created - * @param string $start start value of the sequence; default is 1 - * @return mixed MDB2_OK on success, a MDB2 error on failure - * @access public - */ - function createSequence($seq_name, $start = 1) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $sequence_name = $db->quoteIdentifier($db->getSequenceName($seq_name), true); - $seqcol_name = $db->quoteIdentifier($db->options['seqcol_name'], true); - $query = "CREATE TABLE $sequence_name ($seqcol_name INTEGER PRIMARY KEY DEFAULT 0 NOT NULL)"; - $res = $db->exec($query); - if (PEAR::isError($res)) { - return $res; - } - if ($start == 1) { - return MDB2_OK; - } - $res = $db->exec("INSERT INTO $sequence_name ($seqcol_name) VALUES (".($start-1).')'); - if (!PEAR::isError($res)) { - return MDB2_OK; - } - // Handle error - $result = $db->exec("DROP TABLE $sequence_name"); - if (PEAR::isError($result)) { - return $db->raiseError($result, null, null, - 'could not drop inconsistent sequence table', __FUNCTION__); - } - return $db->raiseError($res, null, null, - 'could not create sequence table', __FUNCTION__); - } - - // }}} - // {{{ dropSequence() - - /** - * drop existing sequence - * - * @param string $seq_name name of the sequence to be dropped - * @return mixed MDB2_OK on success, a MDB2 error on failure - * @access public - */ - function dropSequence($seq_name) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $sequence_name = $db->quoteIdentifier($db->getSequenceName($seq_name), true); - return $db->exec("DROP TABLE $sequence_name"); - } - - // }}} - // {{{ listSequences() - - /** - * list all sequences in the current database - * - * @return mixed array of sequence names on success, a MDB2 error on failure - * @access public - */ - function listSequences($dummy=null) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $query = "SELECT name FROM sqlite_master WHERE type='table' AND sql NOT NULL ORDER BY name"; - $table_names = $db->queryCol($query); - if (PEAR::isError($table_names)) { - return $table_names; - } - $result = array(); - foreach ($table_names as $table_name) { - if ($sqn = $this->_fixSequenceName($table_name, true)) { - $result[] = $sqn; - } - } - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $result = array_map(($db->options['field_case'] == CASE_LOWER ? 'strtolower' : 'strtoupper'), $result); - } - return $result; - } - - // }}} -} diff --git a/lib/MDB2/Driver/Native/sqlite3.php b/lib/MDB2/Driver/Native/sqlite3.php deleted file mode 100644 index 344d523bdf3..00000000000 --- a/lib/MDB2/Driver/Native/sqlite3.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php -/** - * ownCloud - * - * @author Robin Appelman - * @copyright 2011 Robin Appelman icewind1991@gmail.com - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see <http://www.gnu.org/licenses/>. - * - */ -require_once 'MDB2/Driver/Native/Common.php'; - -/** - * MDB2 SQLite driver for the native module - * - * @package MDB2 - * @category Database - * @author Lukas Smith <smith@pooteeweet.org> - */ -class MDB2_Driver_Native_sqlite extends MDB2_Driver_Native_Common -{ -} diff --git a/lib/MDB2/Driver/Reverse/sqlite3.php b/lib/MDB2/Driver/Reverse/sqlite3.php deleted file mode 100644 index 97037809549..00000000000 --- a/lib/MDB2/Driver/Reverse/sqlite3.php +++ /dev/null @@ -1,586 +0,0 @@ -<?php -/** - * ownCloud - * - * @author Robin Appelman - * @copyright 2011 Robin Appelman icewind1991@gmail.com - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see <http://www.gnu.org/licenses/>. - * - */ - -require_once 'MDB2/Driver/Reverse/Common.php'; - -/** - * MDB2 SQlite driver for the schema reverse engineering module - * - * @package MDB2 - * @category Database - * @author Lukas Smith <smith@pooteeweet.org> - */ -class MDB2_Driver_Reverse_sqlite3 extends MDB2_Driver_Reverse_Common -{ - /** - * Remove SQL comments from the field definition - * - * @access private - */ - function _removeComments($sql) { - $lines = explode("\n", $sql); - foreach ($lines as $k => $line) { - $pieces = explode('--', $line); - if (count($pieces) > 1 && (substr_count($pieces[0], '\'') % 2) == 0) { - $lines[$k] = substr($line, 0, strpos($line, '--')); - } - } - return implode("\n", $lines); - } - - /** - * - */ - function _getTableColumns($sql) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - $start_pos = strpos($sql, '('); - $end_pos = strrpos($sql, ')'); - $column_def = substr($sql, $start_pos+1, $end_pos-$start_pos-1); - // replace the decimal length-places-separator with a colon - $column_def = preg_replace('/(\d),(\d)/', '\1:\2', $column_def); - $column_def = $this->_removeComments($column_def); - $column_sql = explode(',', $column_def); - $columns = array(); - $count = count($column_sql); - if ($count == 0) { - return $db->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, - 'unexpected empty table column definition list', __FUNCTION__); - } - $regexp = '/^\s*([^\s]+) +(CHAR|VARCHAR|VARCHAR2|TEXT|BOOLEAN|SMALLINT|INT|INTEGER|DECIMAL|BIGINT|DOUBLE|FLOAT|DATETIME|DATE|TIME|LONGTEXT|LONGBLOB)( ?\(([1-9][0-9]*)(:([1-9][0-9]*))?\))?( NULL| NOT NULL)?( UNSIGNED)?( NULL| NOT NULL)?( PRIMARY KEY)?( AUTOINCREMENT)?( DEFAULT (\'[^\']*\'|[^ ]+))?( NULL| NOT NULL)?( PRIMARY KEY)?(\s*\-\-.*)?$/i'; - $regexp2 = '/^\s*([^ ]+) +(PRIMARY|UNIQUE|CHECK)$/i'; - for ($i=0, $j=0; $i<$count; ++$i) { - if (!preg_match($regexp, trim($column_sql[$i]), $matches)) { - if (!preg_match($regexp2, trim($column_sql[$i]))) { - continue; - } - return $db->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, - 'unexpected table column SQL definition: "'.$column_sql[$i].'"', __FUNCTION__); - } - $columns[$j]['name'] = trim($matches[1], implode('', $db->identifier_quoting)); - $columns[$j]['type'] = strtolower($matches[2]); - if (isset($matches[4]) && strlen($matches[4])) { - $columns[$j]['length'] = $matches[4]; - } - if (isset($matches[6]) && strlen($matches[6])) { - $columns[$j]['decimal'] = $matches[6]; - } - if (isset($matches[8]) && strlen($matches[8])) { - $columns[$j]['unsigned'] = true; - } - if (isset($matches[10]) && strlen($matches[10])) { - $columns[$j]['autoincrement'] = true; - $columns[$j]['notnull']=true; - } - if (isset($matches[10]) && strlen($matches[10])) { - $columns[$j]['autoincrement'] = true; - $columns[$j]['notnull']=true; - } - if (isset($matches[13]) && strlen($matches[13])) { - $default = $matches[13]; - if (strlen($default) && $default[0]=="'") { - $default = str_replace("''", "'", substr($default, 1, strlen($default)-2)); - } - if ($default === 'NULL') { - $default = null; - } - $columns[$j]['default'] = $default; - } - if (isset($matches[7]) && strlen($matches[7])) { - $columns[$j]['notnull'] = ($matches[7] === ' NOT NULL'); - } else if (isset($matches[9]) && strlen($matches[9])) { - $columns[$j]['notnull'] = ($matches[9] === ' NOT NULL'); - } else if (isset($matches[14]) && strlen($matches[14])) { - $columns[$j]['notnull'] = ($matches[14] === ' NOT NULL'); - } - ++$j; - } - return $columns; - } - - // {{{ getTableFieldDefinition() - - /** - * Get the stucture of a field into an array - * - * @param string $table_name name of table that should be used in method - * @param string $field_name name of field that should be used in method - * @return mixed data array on success, a MDB2 error on failure. - * The returned array contains an array for each field definition, - * with (some of) these indices: - * [notnull] [nativetype] [length] [fixed] [default] [type] [mdb2type] - * @access public - */ - function getTableFieldDefinition($table_name, $field_name) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - list($schema, $table) = $this->splitTableSchema($table_name); - - $result = $db->loadModule('Datatype', null, true); - if (PEAR::isError($result)) { - return $result; - } - $query = "SELECT sql FROM sqlite_master WHERE type='table' AND "; - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $query.= 'LOWER(name)='.$db->quote(strtolower($table), 'text'); - } else { - $query.= 'name='.$db->quote($table, 'text'); - } - $sql = $db->queryOne($query); - if (PEAR::isError($sql)) { - return $sql; - } - $columns = $this->_getTableColumns($sql); - foreach ($columns as $column) { - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - if ($db->options['field_case'] == CASE_LOWER) { - $column['name'] = strtolower($column['name']); - } else { - $column['name'] = strtoupper($column['name']); - } - } else { - $column = array_change_key_case($column, $db->options['field_case']); - } - if ($field_name == $column['name']) { - $mapped_datatype = $db->datatype->mapNativeDatatype($column); - if (PEAR::isError($mapped_datatype)) { - return $mapped_datatype; - } - list($types, $length, $unsigned, $fixed) = $mapped_datatype; - $notnull = false; - if (!empty($column['notnull'])) { - $notnull = $column['notnull']; - } - $default = false; - if (array_key_exists('default', $column)) { - $default = $column['default']; - if (is_null($default) && $notnull) { - $default = ''; - } - } - $autoincrement = false; - if (!empty($column['autoincrement'])) { - $autoincrement = true; - } - - $definition[0] = array( - 'notnull' => $notnull, - 'nativetype' => preg_replace('/^([a-z]+)[^a-z].*/i', '\\1', $column['type']) - ); - if (!is_null($length)) { - $definition[0]['length'] = $length; - } - if (!is_null($unsigned)) { - $definition[0]['unsigned'] = $unsigned; - } - if (!is_null($fixed)) { - $definition[0]['fixed'] = $fixed; - } - if ($default !== false) { - $definition[0]['default'] = $default; - } - if ($autoincrement !== false) { - $definition[0]['autoincrement'] = $autoincrement; - } - foreach ($types as $key => $type) { - $definition[$key] = $definition[0]; - if ($type == 'clob' || $type == 'blob') { - unset($definition[$key]['default']); - } - $definition[$key]['type'] = $type; - $definition[$key]['mdb2type'] = $type; - } - return $definition; - } - } - - return $db->raiseError(MDB2_ERROR_NOT_FOUND, null, null, - 'it was not specified an existing table column', __FUNCTION__); - } - - // }}} - // {{{ getTableIndexDefinition() - - /** - * Get the stucture of an index into an array - * - * @param string $table_name name of table that should be used in method - * @param string $index_name name of index that should be used in method - * @return mixed data array on success, a MDB2 error on failure - * @access public - */ - function getTableIndexDefinition($table_name, $index_name) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - list($schema, $table) = $this->splitTableSchema($table_name); - - $query = "SELECT sql FROM sqlite_master WHERE type='index' AND "; - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $query.= 'LOWER(name)=%s AND LOWER(tbl_name)=' . $db->quote(strtolower($table), 'text'); - } else { - $query.= 'name=%s AND tbl_name=' . $db->quote($table, 'text'); - } - $query.= ' AND sql NOT NULL ORDER BY name'; - $index_name_mdb2 = $db->getIndexName($index_name); - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $qry = sprintf($query, $db->quote(strtolower($index_name_mdb2), 'text')); - } else { - $qry = sprintf($query, $db->quote($index_name_mdb2, 'text')); - } - $sql = $db->queryOne($qry, 'text'); - if (PEAR::isError($sql) || empty($sql)) { - // fallback to the given $index_name, without transformation - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $qry = sprintf($query, $db->quote(strtolower($index_name), 'text')); - } else { - $qry = sprintf($query, $db->quote($index_name, 'text')); - } - $sql = $db->queryOne($qry, 'text'); - } - if (PEAR::isError($sql)) { - return $sql; - } - if (!$sql) { - return $db->raiseError(MDB2_ERROR_NOT_FOUND, null, null, - 'it was not specified an existing table index', __FUNCTION__); - } - - $sql = strtolower($sql); - $start_pos = strpos($sql, '('); - $end_pos = strrpos($sql, ')'); - $column_names = substr($sql, $start_pos+1, $end_pos-$start_pos-1); - $column_names = explode(',', $column_names); - - if (preg_match("/^create unique/", $sql)) { - return $db->raiseError(MDB2_ERROR_NOT_FOUND, null, null, - 'it was not specified an existing table index', __FUNCTION__); - } - - $definition = array(); - $count = count($column_names); - for ($i=0; $i<$count; ++$i) { - $column_name = strtok($column_names[$i], ' '); - $collation = strtok(' '); - $definition['fields'][$column_name] = array( - 'position' => $i+1 - ); - if (!empty($collation)) { - $definition['fields'][$column_name]['sorting'] = - ($collation=='ASC' ? 'ascending' : 'descending'); - } - } - - if (empty($definition['fields'])) { - return $db->raiseError(MDB2_ERROR_NOT_FOUND, null, null, - 'it was not specified an existing table index', __FUNCTION__); - } - return $definition; - } - - // }}} - // {{{ getTableConstraintDefinition() - - /** - * Get the stucture of a constraint into an array - * - * @param string $table_name name of table that should be used in method - * @param string $constraint_name name of constraint that should be used in method - * @return mixed data array on success, a MDB2 error on failure - * @access public - */ - function getTableConstraintDefinition($table_name, $constraint_name) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - list($schema, $table) = $this->splitTableSchema($table_name); - - $query = "SELECT sql FROM sqlite_master WHERE type='index' AND "; - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $query.= 'LOWER(name)=%s AND LOWER(tbl_name)=' . $db->quote(strtolower($table), 'text'); - } else { - $query.= 'name=%s AND tbl_name=' . $db->quote($table, 'text'); - } - $query.= ' AND sql NOT NULL ORDER BY name'; - $constraint_name_mdb2 = $db->getIndexName($constraint_name); - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $qry = sprintf($query, $db->quote(strtolower($constraint_name_mdb2), 'text')); - } else { - $qry = sprintf($query, $db->quote($constraint_name_mdb2, 'text')); - } - $sql = $db->queryOne($qry, 'text'); - if (PEAR::isError($sql) || empty($sql)) { - // fallback to the given $index_name, without transformation - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $qry = sprintf($query, $db->quote(strtolower($constraint_name), 'text')); - } else { - $qry = sprintf($query, $db->quote($constraint_name, 'text')); - } - $sql = $db->queryOne($qry, 'text'); - } - if (PEAR::isError($sql)) { - return $sql; - } - //default values, eventually overridden - $definition = array( - 'primary' => false, - 'unique' => false, - 'foreign' => false, - 'check' => false, - 'fields' => array(), - 'references' => array( - 'table' => '', - 'fields' => array(), - ), - 'onupdate' => '', - 'ondelete' => '', - 'match' => '', - 'deferrable' => false, - 'initiallydeferred' => false, - ); - if (!$sql) { - $query = "SELECT sql FROM sqlite_master WHERE type='table' AND "; - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $query.= 'LOWER(name)='.$db->quote(strtolower($table), 'text'); - } else { - $query.= 'name='.$db->quote($table, 'text'); - } - $query.= " AND sql NOT NULL ORDER BY name"; - $sql = $db->queryOne($query, 'text'); - if (PEAR::isError($sql)) { - return $sql; - } - if ($constraint_name == 'primary') { - // search in table definition for PRIMARY KEYs - if (preg_match("/\bPRIMARY\s+KEY\b\s*\(([^)]+)/i", $sql, $tmp)) { - $definition['primary'] = true; - $definition['fields'] = array(); - $column_names = explode(',', $tmp[1]); - $colpos = 1; - foreach ($column_names as $column_name) { - $definition['fields'][trim($column_name)] = array( - 'position' => $colpos++ - ); - } - return $definition; - } - if (preg_match("/\"([^\"]+)\"[^\,\"]+\bPRIMARY\s+KEY\b[^\,\)]*/i", $sql, $tmp)) { - $definition['primary'] = true; - $definition['fields'] = array(); - $column_names = explode(',', $tmp[1]); - $colpos = 1; - foreach ($column_names as $column_name) { - $definition['fields'][trim($column_name)] = array( - 'position' => $colpos++ - ); - } - return $definition; - } - } else { - // search in table definition for FOREIGN KEYs - $pattern = "/\bCONSTRAINT\b\s+%s\s+ - \bFOREIGN\s+KEY\b\s*\(([^\)]+)\)\s* - \bREFERENCES\b\s+([^\s]+)\s*\(([^\)]+)\)\s* - (?:\bMATCH\s*([^\s]+))?\s* - (?:\bON\s+UPDATE\s+([^\s,\)]+))?\s* - (?:\bON\s+DELETE\s+([^\s,\)]+))?\s* - /imsx"; - $found_fk = false; - if (preg_match(sprintf($pattern, $constraint_name_mdb2), $sql, $tmp)) { - $found_fk = true; - } elseif (preg_match(sprintf($pattern, $constraint_name), $sql, $tmp)) { - $found_fk = true; - } - if ($found_fk) { - $definition['foreign'] = true; - $definition['match'] = 'SIMPLE'; - $definition['onupdate'] = 'NO ACTION'; - $definition['ondelete'] = 'NO ACTION'; - $definition['references']['table'] = $tmp[2]; - $column_names = explode(',', $tmp[1]); - $colpos = 1; - foreach ($column_names as $column_name) { - $definition['fields'][trim($column_name)] = array( - 'position' => $colpos++ - ); - } - $referenced_cols = explode(',', $tmp[3]); - $colpos = 1; - foreach ($referenced_cols as $column_name) { - $definition['references']['fields'][trim($column_name)] = array( - 'position' => $colpos++ - ); - } - if (isset($tmp[4])) { - $definition['match'] = $tmp[4]; - } - if (isset($tmp[5])) { - $definition['onupdate'] = $tmp[5]; - } - if (isset($tmp[6])) { - $definition['ondelete'] = $tmp[6]; - } - return $definition; - } - } - $sql = false; - } - if (!$sql) { - return $db->raiseError(MDB2_ERROR_NOT_FOUND, null, null, - $constraint_name . ' is not an existing table constraint', __FUNCTION__); - } - - $sql = strtolower($sql); - $start_pos = strpos($sql, '('); - $end_pos = strrpos($sql, ')'); - $column_names = substr($sql, $start_pos+1, $end_pos-$start_pos-1); - $column_names = explode(',', $column_names); - - if (!preg_match("/^create unique/", $sql)) { - return $db->raiseError(MDB2_ERROR_NOT_FOUND, null, null, - $constraint_name . ' is not an existing table constraint', __FUNCTION__); - } - - $definition['unique'] = true; - $count = count($column_names); - for ($i=0; $i<$count; ++$i) { - $column_name = strtok($column_names[$i], " "); - $collation = strtok(" "); - $definition['fields'][$column_name] = array( - 'position' => $i+1 - ); - if (!empty($collation)) { - $definition['fields'][$column_name]['sorting'] = - ($collation=='ASC' ? 'ascending' : 'descending'); - } - } - - if (empty($definition['fields'])) { - return $db->raiseError(MDB2_ERROR_NOT_FOUND, null, null, - $constraint_name . ' is not an existing table constraint', __FUNCTION__); - } - return $definition; - } - - // }}} - // {{{ getTriggerDefinition() - - /** - * Get the structure of a trigger into an array - * - * EXPERIMENTAL - * - * WARNING: this function is experimental and may change the returned value - * at any time until labelled as non-experimental - * - * @param string $trigger name of trigger that should be used in method - * @return mixed data array on success, a MDB2 error on failure - * @access public - */ - function getTriggerDefinition($trigger) - { - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - $query = "SELECT name as trigger_name, - tbl_name AS table_name, - sql AS trigger_body, - NULL AS trigger_type, - NULL AS trigger_event, - NULL AS trigger_comment, - 1 AS trigger_enabled - FROM sqlite_master - WHERE type='trigger'"; - if ($db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $query.= ' AND LOWER(name)='.$db->quote(strtolower($trigger), 'text'); - } else { - $query.= ' AND name='.$db->quote($trigger, 'text'); - } - $types = array( - 'trigger_name' => 'text', - 'table_name' => 'text', - 'trigger_body' => 'text', - 'trigger_type' => 'text', - 'trigger_event' => 'text', - 'trigger_comment' => 'text', - 'trigger_enabled' => 'boolean', - ); - $def = $db->queryRow($query, $types, MDB2_FETCHMODE_ASSOC); - if (PEAR::isError($def)) { - return $def; - } - if (empty($def)) { - return $db->raiseError(MDB2_ERROR_NOT_FOUND, null, null, - 'it was not specified an existing trigger', __FUNCTION__); - } - if (preg_match("/^create\s+(?:temp|temporary)?trigger\s+(?:if\s+not\s+exists\s+)?.*(before|after)?\s+(insert|update|delete)/Uims", $def['trigger_body'], $tmp)) { - $def['trigger_type'] = strtoupper($tmp[1]); - $def['trigger_event'] = strtoupper($tmp[2]); - } - return $def; - } - - // }}} - // {{{ tableInfo() - - /** - * Returns information about a table - * - * @param string $result a string containing the name of a table - * @param int $mode a valid tableInfo mode - * - * @return array an associative array with the information requested. - * A MDB2_Error object on failure. - * - * @see MDB2_Driver_Common::tableInfo() - * @since Method available since Release 1.7.0 - */ - function tableInfo($result, $mode = null) - { - if (is_string($result)) { - return parent::tableInfo($result, $mode); - } - - $db =$this->getDBInstance(); - if (PEAR::isError($db)) { - return $db; - } - - return $db->raiseError(MDB2_ERROR_NOT_CAPABLE, null, null, - 'This DBMS can not obtain tableInfo from result sets', __FUNCTION__); - } -} diff --git a/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php deleted file mode 100644 index 693ceffa01c..00000000000 --- a/lib/MDB2/Driver/sqlite3.php +++ /dev/null @@ -1,1332 +0,0 @@ -<?php -/** - * ownCloud - * - * @author Robin Appelman - * @copyright 2011 Robin Appelman icewind1991@gmail.com - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see <http://www.gnu.org/licenses/>. - * - */ - -/** - * MDB2 SQLite3 driver - * - * @package MDB2 - * @category Database - * @author Lukas Smith <smith@pooteeweet.org> - */ -class MDB2_Driver_sqlite3 extends MDB2_Driver_Common -{ - // {{{ properties - public $string_quoting = array('start' => "'", 'end' => "'", 'escape' => "'", 'escape_pattern' => false); - - public $identifier_quoting = array('start' => '"', 'end' => '"', 'escape' => '"'); - - public $_lasterror = ''; - - public $fix_assoc_fields_names = false; - - // }}} - // {{{ constructor - - /** - * Constructor - */ - function __construct() - { - parent::__construct(); - - $this->phptype = 'sqlite3'; - $this->dbsyntax = 'sqlite'; - - $this->supported['sequences'] = 'emulated'; - $this->supported['indexes'] = true; - $this->supported['affected_rows'] = true; - $this->supported['summary_functions'] = true; - $this->supported['order_by_text'] = true; - $this->supported['current_id'] = 'emulated'; - $this->supported['limit_queries'] = true; - $this->supported['LOBs'] = true; - $this->supported['replace'] = true; - $this->supported['transactions'] = false; - $this->supported['savepoints'] = false; - $this->supported['sub_selects'] = true; - $this->supported['triggers'] = true; - $this->supported['auto_increment'] = true; - $this->supported['primary_key'] = false; // requires alter table implementation - $this->supported['result_introspection'] = false; // not implemented - $this->supported['prepared_statements'] = true; - $this->supported['identifier_quoting'] = true; - $this->supported['pattern_escaping'] = false; - $this->supported['new_link'] = false; - - $this->options['DBA_username'] = false; - $this->options['DBA_password'] = false; - $this->options['base_transaction_name'] = '___php_MDB2_sqlite_auto_commit_off'; - $this->options['fixed_float'] = 0; - $this->options['database_path'] = ''; - $this->options['database_extension'] = ''; - $this->options['server_version'] = ''; - $this->options['max_identifiers_length'] = 128; //no real limit - } - - // }}} - // {{{ errorInfo() - - /** - * This method is used to collect information about an error - * - * @param integer $error - * @return array - * @access public - */ - function errorInfo($error = null) - { - $native_code = null; - if ($this->connection) { - $native_code = $this->connection->lastErrorCode(); - } - $native_msg = html_entity_decode($this->_lasterror); - - // PHP 5.2+ prepends the function name to $php_errormsg, so we need - // this hack to work around it, per bug #9599. - $native_msg = preg_replace('/^sqlite[a-z_]+\(\)[^:]*: /', '', $native_msg); - - if (is_null($error)) { - static $error_regexps; - if (empty($error_regexps)) { - $error_regexps = array( - '/^no such table:/' => MDB2_ERROR_NOSUCHTABLE, - '/^no such index:/' => MDB2_ERROR_NOT_FOUND, - '/^(table|index) .* already exists$/' => MDB2_ERROR_ALREADY_EXISTS, - '/PRIMARY KEY must be unique/i' => MDB2_ERROR_CONSTRAINT, - '/is not unique/' => MDB2_ERROR_CONSTRAINT, - '/columns .* are not unique/i' => MDB2_ERROR_CONSTRAINT, - '/uniqueness constraint failed/' => MDB2_ERROR_CONSTRAINT, - '/may not be NULL/' => MDB2_ERROR_CONSTRAINT_NOT_NULL, - '/^no such column:/' => MDB2_ERROR_NOSUCHFIELD, - '/no column named/' => MDB2_ERROR_NOSUCHFIELD, - '/column not present in both tables/i' => MDB2_ERROR_NOSUCHFIELD, - '/^near ".*": syntax error$/' => MDB2_ERROR_SYNTAX, - '/[0-9]+ values for [0-9]+ columns/i' => MDB2_ERROR_VALUE_COUNT_ON_ROW, - ); - } - foreach ($error_regexps as $regexp => $code) { - if (preg_match($regexp, $native_msg)) { - $error = $code; - break; - } - } - } - return array($error, $native_code, $native_msg); - } - - // }}} - // {{{ escape() - - /** - * Quotes a string so it can be safely used in a query. It will quote - * the text so it can safely be used within a query. - * - * @param string the input string to quote - * @param bool escape wildcards - * - * @return string quoted string - * - * @access public - */ - public function escape($text, $escape_wildcards = false) - { - if($this->connection) { - return $this->connection->escapeString($text); - }else{ - return str_replace("'", "''", $text);//TODO; more - } - } - - // }}} - // {{{ beginTransaction() - - /** - * Start a transaction or set a savepoint. - * - * @param string name of a savepoint to set - * @return mixed MDB2_OK on success, a MDB2 error on failure - * - * @access public - */ - function beginTransaction($savepoint = null) - { - $this->debug('Starting transaction/savepoint', __FUNCTION__, array('is_manip' => true, 'savepoint' => $savepoint)); - if (!is_null($savepoint)) { - return $this->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, - 'savepoints are not supported', __FUNCTION__); - } elseif ($this->in_transaction) { - return MDB2_OK; //nothing to do - } - if (!$this->destructor_registered && $this->opened_persistent) { - $this->destructor_registered = true; - register_shutdown_function('MDB2_closeOpenTransactions'); - } - $query = 'BEGIN TRANSACTION '.$this->options['base_transaction_name']; - $result =$this->_doQuery($query, true); - if (PEAR::isError($result)) { - return $result; - } - $this->in_transaction = true; - return MDB2_OK; - } - - // }}} - // {{{ commit() - - /** - * Commit the database changes done during a transaction that is in - * progress or release a savepoint. This function may only be called when - * auto-committing is disabled, otherwise it will fail. Therefore, a new - * transaction is implicitly started after committing the pending changes. - * - * @param string name of a savepoint to release - * @return mixed MDB2_OK on success, a MDB2 error on failure - * - * @access public - */ - function commit($savepoint = null) - { - $this->debug('Committing transaction/savepoint', __FUNCTION__, array('is_manip' => true, 'savepoint' => $savepoint)); - if (!$this->in_transaction) { - return $this->raiseError(MDB2_ERROR_INVALID, null, null, - 'commit/release savepoint cannot be done changes are auto committed', __FUNCTION__); - } - if (!is_null($savepoint)) { - return $this->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, - 'savepoints are not supported', __FUNCTION__); - } - - $query = 'COMMIT TRANSACTION '.$this->options['base_transaction_name']; - $result =$this->_doQuery($query, true); - if (PEAR::isError($result)) { - return $result; - } - $this->in_transaction = false; - return MDB2_OK; - } - - // }}} - // {{{ - - /** - * Cancel any database changes done during a transaction or since a specific - * savepoint that is in progress. This function may only be called when - * auto-committing is disabled, otherwise it will fail. Therefore, a new - * transaction is implicitly started after canceling the pending changes. - * - * @param string name of a savepoint to rollback to - * @return mixed MDB2_OK on success, a MDB2 error on failure - * - * @access public - */ - function rollback($savepoint = null) - { - $this->debug('Rolling back transaction/savepoint', __FUNCTION__, array('is_manip' => true, 'savepoint' => $savepoint)); - if (!$this->in_transaction) { - return $this->raiseError(MDB2_ERROR_INVALID, null, null, - 'rollback cannot be done changes are auto committed', __FUNCTION__); - } - if (!is_null($savepoint)) { - return $this->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, - 'savepoints are not supported', __FUNCTION__); - } - - $query = 'ROLLBACK TRANSACTION '.$this->options['base_transaction_name']; - $result =$this->_doQuery($query, true); - if (PEAR::isError($result)) { - return $result; - } - $this->in_transaction = false; - return MDB2_OK; - } - - // }}} - // {{{ function setTransactionIsolation() - - /** - * Set the transacton isolation level. - * - * @param string standard isolation level - * READ UNCOMMITTED (allows dirty reads) - * READ COMMITTED (prevents dirty reads) - * REPEATABLE READ (prevents nonrepeatable reads) - * SERIALIZABLE (prevents phantom reads) - * @return mixed MDB2_OK on success, a MDB2 error on failure - * - * @access public - * @since 2.1.1 - */ - function setTransactionIsolation($isolation, $options=array()) - { - $this->debug('Setting transaction isolation level', __FUNCTION__, array('is_manip' => true)); - switch ($isolation) { - case 'READ UNCOMMITTED': - $isolation = 0; - break; - case 'READ COMMITTED': - case 'REPEATABLE READ': - case 'SERIALIZABLE': - $isolation = 1; - break; - default: - return $this->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, - 'isolation level is not supported: '.$isolation, __FUNCTION__); - } - - $query = "PRAGMA read_uncommitted=$isolation"; - return $this->_doQuery($query, true); - } - - // }}} - // {{{ getDatabaseFile() - - /** - * Builds the string with path+dbname+extension - * - * @return string full database path+file - * @access protected - */ - function _getDatabaseFile($database_name) - { - if ($database_name === '' || $database_name === ':memory:') { - return $database_name; - } - return $this->options['database_path'].$database_name.$this->options['database_extension']; - } - - // }}} - // {{{ connect() - - /** - * Connect to the database - * - * @return true on success, MDB2 Error Object on failure - **/ - function connect() - { - if($this->connection instanceof SQLite3) { - return MDB2_OK; - } - $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ); - $database_file = $this->_getDatabaseFile($this->database_name); - if (is_resource($this->connection)) { - //if (count(array_diff($this->connected_dsn, $this->dsn)) == 0 - if (MDB2::areEquals($this->connected_dsn, $this->dsn) - && $this->connected_database_name == $database_file - && $this->opened_persistent == $this->options['persistent'] - ) { - return MDB2_OK; - } - $this->disconnect(false); - } - - if (!PEAR::loadExtension($this->phptype)) { - return $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null, - 'extension '.$this->phptype.' is not compiled into PHP', __FUNCTION__); - } - - if (empty($this->database_name)) { - return $this->raiseError(MDB2_ERROR_CONNECT_FAILED, null, null, - 'unable to establish a connection', __FUNCTION__); - } - - if ($database_file !== ':memory:') { - if(!strpos($database_file, '.db')) { - $database_file="$datadir/$database_file.db"; - } - if (!file_exists($database_file)) { - if (!touch($database_file)) { - return $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null, - 'Could not create database file', __FUNCTION__); - } - if (!isset($this->dsn['mode']) - || !is_numeric($this->dsn['mode']) - ) { - $mode = 0644; - } else { - $mode = octdec($this->dsn['mode']); - } - if (!chmod($database_file, $mode)) { - return $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null, - 'Could not be chmodded database file', __FUNCTION__); - } - if (!file_exists($database_file)) { - return $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null, - 'Could not be found database file', __FUNCTION__); - } - } - if (!is_file($database_file)) { - return $this->raiseError(MDB2_ERROR_INVALID, null, null, - 'Database is a directory name', __FUNCTION__); - } - if (!is_readable($database_file)) { - return $this->raiseError(MDB2_ERROR_ACCESS_VIOLATION, null, null, - 'Could not read database file', __FUNCTION__); - } - } - - $php_errormsg = ''; - $this->connection = new SQLite3($database_file); - if(is_callable(array($this->connection, 'busyTimeout'))) {//busy timout is only available in php>=5.3 - $this->connection->busyTimeout(60000); - } - $this->_lasterror = $this->connection->lastErrorMsg(); - if (!$this->connection) { - return $this->raiseError(MDB2_ERROR_CONNECT_FAILED, null, null, - 'unable to establish a connection', __FUNCTION__); - } - - if ($this->fix_assoc_fields_names || - $this->options['portability'] & MDB2_PORTABILITY_FIX_ASSOC_FIELD_NAMES) { - $this->connection->exec("PRAGMA short_column_names = 1"); - $this->fix_assoc_fields_names = true; - } - - $this->connected_dsn = $this->dsn; - $this->connected_database_name = $database_file; - $this->opened_persistent = $this->getoption('persistent'); - $this->dbsyntax = $this->dsn['dbsyntax'] ? $this->dsn['dbsyntax'] : $this->phptype; - - return MDB2_OK; - } - - // }}} - // {{{ databaseExists() - - /** - * check if given database name is exists? - * - * @param string $name name of the database that should be checked - * - * @return mixed true/false on success, a MDB2 error on failure - * @access public - */ - function databaseExists($name) - { - $database_file = $this->_getDatabaseFile($name); - $result = file_exists($database_file); - return $result; - } - - // }}} - // {{{ disconnect() - - /** - * Log out and disconnect from the database. - * - * @param boolean $force if the disconnect should be forced even if the - * connection is opened persistently - * @return mixed true on success, false if not connected and error - * object on error - * @access public - */ - function disconnect($force = true) - { - if ($this->connection instanceof SQLite3) { - if ($this->in_transaction) { - $dsn = $this->dsn; - $database_name = $this->database_name; - $persistent = $this->options['persistent']; - $this->dsn = $this->connected_dsn; - $this->database_name = $this->connected_database_name; - $this->options['persistent'] = $this->opened_persistent; - $this->rollback(); - $this->dsn = $dsn; - $this->database_name = $database_name; - $this->options['persistent'] = $persistent; - } - - if (!$this->opened_persistent || $force) { - $this->connection->close(); - } - } else { - return false; - } - return parent::disconnect($force); - } - - // }}} - // {{{ _doQuery() - - /** - * Execute a query - * @param string $query query - * @param boolean $is_manip if the query is a manipulation query - * @param resource $connection - * @param string $database_name - * @return result or error object - * @access protected - */ - function _doQuery($query, $is_manip = false, $connection = null, $database_name = null) - { - $this->last_query = $query; - $result = $this->debug($query, 'query', array('is_manip' => $is_manip, 'when' => 'pre')); - if ($result) { - if (PEAR::isError($result)) { - return $result; - } - $query = $result; - } - if ($this->options['disable_query']) { - $result = $is_manip ? 0 : null; - return $result; - } - $result=$this->connection->query($query.';'); - $this->_lasterror = $this->connection->lastErrorMsg(); - - if (!$result) { - $err =$this->raiseError(null, null, null, - 'Could not execute statement', __FUNCTION__); - return $err; - } - - $this->debug($query, 'query', array('is_manip' => $is_manip, 'when' => 'post', 'result' => $result)); - return $result; - } - - // }}} - // {{{ _affectedRows() - - /** - * Returns the number of rows affected - * - * @param resource $result - * @param resource $connection - * @return mixed MDB2 Error Object or the number of rows affected - * @access private - */ - function _affectedRows($connection, $result = null) - { - return $this->connection->changes(); - } - - // }}} - // {{{ _modifyQuery() - - /** - * Changes a query string for various DBMS specific reasons - * - * @param string $query query to modify - * @param boolean $is_manip if it is a DML query - * @param integer $limit limit the number of rows - * @param integer $offset start reading from given offset - * @return string modified query - * @access protected - */ - function _modifyQuery($query, $is_manip, $limit, $offset) - { - if ($this->options['portability'] & MDB2_PORTABILITY_DELETE_COUNT) { - if (preg_match('/^\s*DELETE\s+FROM\s+(\S+)\s*$/i', $query)) { - $query = preg_replace('/^\s*DELETE\s+FROM\s+(\S+)\s*$/', - 'DELETE FROM \1 WHERE 1=1', $query); - } - } - if ($limit > 0 - && !preg_match('/LIMIT\s*\d(?:\s*(?:,|OFFSET)\s*\d+)?(?:[^\)]*)?$/i', $query) - ) { - $query = rtrim($query); - if (substr($query, -1) == ';') { - $query = substr($query, 0, -1); - } - if ($is_manip) { - $query.= " LIMIT $limit"; - } else { - $query.= " LIMIT $offset,$limit"; - } - } - return $query; - } - - // }}} - // {{{ getServerVersion() - - /** - * return version information about the server - * - * @param bool $native determines if the raw version string should be returned - * @return mixed array/string with version information or MDB2 error object - * @access public - */ - function getServerVersion($native = false) - { - $server_info = false; - if ($this->connected_server_info) { - $server_info = $this->connected_server_info; - } elseif ($this->options['server_version']) { - $server_info = $this->options['server_version']; - } elseif (function_exists('sqlite_libversion')) { - $server_info = @sqlite_libversion(); - } - if (!$server_info) { - return $this->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, - 'Requires either the "server_version" option or the sqlite_libversion() function', __FUNCTION__); - } - // cache server_info - $this->connected_server_info = $server_info; - if (!$native) { - $tmp = explode('.', $server_info, 3); - $server_info = array( - 'major' => isset($tmp[0]) ? $tmp[0] : null, - 'minor' => isset($tmp[1]) ? $tmp[1] : null, - 'patch' => isset($tmp[2]) ? $tmp[2] : null, - 'extra' => null, - 'native' => $server_info, - ); - } - return $server_info; - } - - // }}} - // {{{ replace() - - /** - * Execute a SQL REPLACE query. A REPLACE query is identical to a INSERT - * query, except that if there is already a row in the table with the same - * key field values, the old row is deleted before the new row is inserted. - * - * The REPLACE type of query does not make part of the SQL standards. Since - * practically only SQLite implements it natively, this type of query is - * emulated through this method for other DBMS using standard types of - * queries inside a transaction to assure the atomicity of the operation. - * - * @access public - * - * @param string $table name of the table on which the REPLACE query will - * be executed. - * @param array $fields associative array that describes the fields and the - * values that will be inserted or updated in the specified table. The - * indexes of the array are the names of all the fields of the table. The - * values of the array are also associative arrays that describe the - * values and other properties of the table fields. - * - * Here follows a list of field properties that need to be specified: - * - * value: - * Value to be assigned to the specified field. This value may be - * of specified in database independent type format as this - * function can perform the necessary datatype conversions. - * - * Default: - * this property is required unless the Null property - * is set to 1. - * - * type - * Name of the type of the field. Currently, all types Metabase - * are supported except for clob and blob. - * - * Default: no type conversion - * - * null - * Boolean property that indicates that the value for this field - * should be set to null. - * - * The default value for fields missing in INSERT queries may be - * specified the definition of a table. Often, the default value - * is already null, but since the REPLACE may be emulated using - * an UPDATE query, make sure that all fields of the table are - * listed in this function argument array. - * - * Default: 0 - * - * key - * Boolean property that indicates that this field should be - * handled as a primary key or at least as part of the compound - * unique index of the table that will determine the row that will - * updated if it exists or inserted a new row otherwise. - * - * This function will fail if no key field is specified or if the - * value of a key field is set to null because fields that are - * part of unique index they may not be null. - * - * Default: 0 - * - * @return mixed MDB2_OK on success, a MDB2 error on failure - */ - function replace($table, $fields) - { - $count = count($fields); - $query = $values = ''; - $keys = $colnum = 0; - for (reset($fields); $colnum < $count; next($fields), $colnum++) { - $name = key($fields); - if ($colnum > 0) { - $query .= ','; - $values.= ','; - } - $query.= $this->quoteIdentifier($name, true); - if (isset($fields[$name]['null']) && $fields[$name]['null']) { - $value = 'NULL'; - } else { - $type = isset($fields[$name]['type']) ? $fields[$name]['type'] : null; - $value = $this->quote($fields[$name]['value'], $type); - if (PEAR::isError($value)) { - return $value; - } - } - $values.= $value; - if (isset($fields[$name]['key']) && $fields[$name]['key']) { - if ($value === 'NULL') { - return $this->raiseError(MDB2_ERROR_CANNOT_REPLACE, null, null, - 'key value '.$name.' may not be NULL', __FUNCTION__); - } - $keys++; - } - } - if ($keys == 0) { - return $this->raiseError(MDB2_ERROR_CANNOT_REPLACE, null, null, - 'not specified which fields are keys', __FUNCTION__); - } - - $connection = $this->getConnection(); - if (PEAR::isError($connection)) { - return $connection; - } - - $table = $this->quoteIdentifier($table, true); - $query = "REPLACE INTO $table ($query) VALUES ($values)"; - $result =$this->_doQuery($query, true, $connection); - if (PEAR::isError($result)) { - return $result; - } - return $this->_affectedRows($connection, $result); - } - - // }}} - // {{{ nextID() - - /** - * Returns the next free id of a sequence - * - * @param string $seq_name name of the sequence - * @param boolean $ondemand when true the sequence is - * automatic created, if it - * not exists - * - * @return mixed MDB2 Error Object or id - * @access public - */ - function nextID($seq_name, $ondemand = true) - { - $sequence_name = $this->quoteIdentifier($this->getSequenceName($seq_name), true); - $seqcol_name = $this->options['seqcol_name']; - $query = "INSERT INTO $sequence_name ($seqcol_name) VALUES (NULL)"; - $this->pushErrorHandling(PEAR_ERROR_RETURN); - $this->expectError(MDB2_ERROR_NOSUCHTABLE); - $result =$this->_doQuery($query, true); - $this->popExpect(); - $this->popErrorHandling(); - if (PEAR::isError($result)) { - if ($ondemand && $result->getCode() == MDB2_ERROR_NOSUCHTABLE) { - $this->loadModule('Manager', null, true); - $result = $this->manager->createSequence($seq_name); - if (PEAR::isError($result)) { - return $this->raiseError($result, null, null, - 'on demand sequence '.$seq_name.' could not be created', __FUNCTION__); - } else { - return $this->nextID($seq_name, false); - } - } - return $result; - } - $value = $this->lastInsertID(); - if (is_numeric($value)) { - $query = "DELETE FROM $sequence_name WHERE $seqcol_name < $value"; - $result =$this->_doQuery($query, true); - if (PEAR::isError($result)) { - $this->warnings[] = 'nextID: could not delete previous sequence table values from '.$seq_name; - } - } - return $value; - } - - // }}} - // {{{ lastInsertID() - - /** - * Returns the autoincrement ID if supported or $id or fetches the current - * ID in a sequence called: $table.(empty($field) ? '' : '_'.$field) - * - * @param string $table name of the table into which a new row was inserted - * @param string $field name of the field into which a new row was inserted - * @return mixed MDB2 Error Object or id - * @access public - */ - function lastInsertID($table = null, $field = null) - { - return $this->connection->lastInsertRowID(); - } - - // }}} - // {{{ currID() - - /** - * Returns the current id of a sequence - * - * @param string $seq_name name of the sequence - * @return mixed MDB2 Error Object or id - * @access public - */ - function currID($seq_name) - { - $sequence_name = $this->quoteIdentifier($this->getSequenceName($seq_name), true); - $seqcol_name = $this->quoteIdentifier($this->options['seqcol_name'], true); - $query = "SELECT MAX($seqcol_name) FROM $sequence_name"; - return $this->queryOne($query, 'integer'); - } - - /** - * Prepares a query for multiple execution with execute(). - * With some database backends, this is emulated. - * prepare() requires a generic query as string like - * 'INSERT INTO numbers VALUES(?,?)' or - * 'INSERT INTO numbers VALUES(:foo,:bar)'. - * The ? and :name and are placeholders which can be set using - * bindParam() and the query can be sent off using the execute() method. - * The allowed format for :name can be set with the 'bindname_format' option. - * - * @param string $query the query to prepare - * @param mixed $types array that contains the types of the placeholders - * @param mixed $result_types array that contains the types of the columns in - * the result set or MDB2_PREPARE_RESULT, if set to - * MDB2_PREPARE_MANIP the query is handled as a manipulation query - * @param mixed $lobs key (field) value (parameter) pair for all lob placeholders - * @return mixed resource handle for the prepared query on success, a MDB2 - * error on failure - * @access public - * @see bindParam, execute - */ - function prepare($query, $types = null, $result_types = null, $lobs = array()) - { - if ($this->options['emulate_prepared'] - || $this->supported['prepared_statements'] !== true - ) { - $obj =& parent::prepare($query, $types, $result_types, $lobs); - return $obj; - } - $this->last_query = $query; - $is_manip = ($result_types === MDB2_PREPARE_MANIP); - $offset = $this->offset; - $limit = $this->limit; - $this->offset = $this->limit = 0; - $query = $this->_modifyQuery($query, $is_manip, $limit, $offset); - $result = $this->debug($query, __FUNCTION__, array('is_manip' => $is_manip, 'when' => 'pre')); - if ($result) { - if (PEAR::isError($result)) { - return $result; - } - $query = $result; - } - $placeholder_type_guess = $placeholder_type = null; - $question = '?'; - $colon = ':'; - $positions = array(); - $position = 0; - while ($position < strlen($query)) { - $q_position = strpos($query, $question, $position); - $c_position = strpos($query, $colon, $position); - if ($q_position && $c_position) { - $p_position = min($q_position, $c_position); - } elseif ($q_position) { - $p_position = $q_position; - } elseif ($c_position) { - $p_position = $c_position; - } else { - break; - } - if (is_null($placeholder_type)) { - $placeholder_type_guess = $query[$p_position]; - } - - $new_pos = $this->_skipDelimitedStrings($query, $position, $p_position); - if (PEAR::isError($new_pos)) { - return $new_pos; - } - if ($new_pos != $position) { - $position = $new_pos; - continue; //evaluate again starting from the new position - } - - - if ($query[$position] == $placeholder_type_guess) { - if (is_null($placeholder_type)) { - $placeholder_type = $query[$p_position]; - $question = $colon = $placeholder_type; - } - if ($placeholder_type == ':') { - $regexp = '/^.{'.($position+1).'}('.$this->options['bindname_format'].').*$/s'; - $parameter = preg_replace($regexp, '\\1', $query); - if ($parameter === '') { - $err =& $this->raiseError(MDB2_ERROR_SYNTAX, null, null, - 'named parameter name must match "bindname_format" option', __FUNCTION__); - return $err; - } - $positions[$p_position] = $parameter; - $query = substr_replace($query, '?', $position, strlen($parameter)+1); - } else { - $positions[$p_position] = count($positions); - } - $position = $p_position + 1; - } else { - $position = $p_position; - } - } - $connection = $this->getConnection(); - if (PEAR::isError($connection)) { - return $connection; - } - $statement =$this->connection->prepare($query); - if (!$statement) { - return $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null, - 'unable to prepare statement: '.$query); - } - - $class_name = 'MDB2_Statement_'.$this->phptype; - $obj = new $class_name($this, $statement, $positions, $query, $types, $result_types, $is_manip, $limit, $offset); - $this->debug($query, __FUNCTION__, array('is_manip' => $is_manip, 'when' => 'post', 'result' => $obj)); - return $obj; - } -} - -/** - * MDB2 SQLite result driver - * - * @package MDB2 - * @category Database - * @author Lukas Smith <smith@pooteeweet.org> - */ -class MDB2_Result_sqlite3 extends MDB2_Result_Common -{ - // }}} - // {{{ fetchRow() - - /** - * Fetch a row and insert the data into an existing array. - * - * @param int $fetchmode how the array data should be indexed - * @param int $rownum number of the row where the data can be found - * @return int data array on success, a MDB2 error on failure - * @access public - */ - function fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null) - { - if (!is_null($rownum)) { - $seek = $this->seek($rownum); - if (PEAR::isError($seek)) { - return $seek; - } - } - if ($fetchmode == MDB2_FETCHMODE_DEFAULT) { - $fetchmode = $this->db->fetchmode; - } - if ($fetchmode & MDB2_FETCHMODE_ASSOC) { - //$row = @sqlite_fetch_array($this->result, SQLITE_ASSOC); - $row=$this->result->fetchArray(SQLITE3_ASSOC); - if (is_array($row) - && $this->db->options['portability'] & MDB2_PORTABILITY_FIX_CASE - ) { - $row = array_change_key_case($row, $this->db->options['field_case']); - } - } else { - $row=$this->result->fetchArray(SQLITE3_NUM); - } - if (!$row) { - if ($this->result === false) { - $err =$this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null, - 'resultset has already been freed', __FUNCTION__); - return $err; - } - $null = null; - return $null; - } - $mode = $this->db->options['portability'] & MDB2_PORTABILITY_EMPTY_TO_NULL; - $rtrim = false; - if ($this->db->options['portability'] & MDB2_PORTABILITY_RTRIM) { - if (empty($this->types)) { - $mode += MDB2_PORTABILITY_RTRIM; - } else { - $rtrim = true; - } - } - if ($mode) { - $this->db->_fixResultArrayValues($row, $mode); - } - if (!empty($this->types)) { - $row = $this->db->datatype->convertResultRow($this->types, $row, $rtrim); - } - if (!empty($this->values)) { - $this->_assignBindColumns($row); - } - if ($fetchmode === MDB2_FETCHMODE_OBJECT) { - $object_class = $this->db->options['fetch_class']; - if ($object_class == 'stdClass') { - $row = (object) $row; - } else { - $row = new $object_class($row); - } - } - ++$this->rownum; - return $row; - } - - // }}} - // {{{ _getColumnNames() - - /** - * Retrieve the names of columns returned by the DBMS in a query result. - * - * @return mixed Array variable that holds the names of columns as keys - * or an MDB2 error on failure. - * Some DBMS may not return any columns when the result set - * does not contain any rows. - * @access private - */ - function _getColumnNames() - { - $columns = array(); - $numcols = $this->numCols(); - if (PEAR::isError($numcols)) { - return $numcols; - } - for ($column = 0; $column < $numcols; $column++) { - $column_name = $this->result->getColumnName($column); - $columns[$column_name] = $column; - } - if ($this->db->options['portability'] & MDB2_PORTABILITY_FIX_CASE) { - $columns = array_change_key_case($columns, $this->db->options['field_case']); - } - return $columns; - } - - // }}} - // {{{ numCols() - - /** - * Count the number of columns returned by the DBMS in a query result. - * - * @access public - * @return mixed integer value with the number of columns, a MDB2 error - * on failure - */ - function numCols() - { - $this->result->numColumns(); - } -} - -/** - * MDB2 SQLite buffered result driver - * - * @package MDB2 - * @category Database - * @author Lukas Smith <smith@pooteeweet.org> - */ -class MDB2_BufferedResult_sqlite3 extends MDB2_Result_sqlite3 -{ - // {{{ seek() - - /** - * Seek to a specific row in a result set - * - * @param int $rownum number of the row where the data can be found - * @return mixed MDB2_OK on success, a MDB2 error on failure - * @access public - */ - function seek($rownum = 0) - { - $this->result->reset(); - for($i=0;$i<$rownum;$i++) { - $this->result->fetchArray(); - } - $this->rownum = $rownum - 1; - return MDB2_OK; - } - - // }}} - // {{{ valid() - - /** - * Check if the end of the result set has been reached - * - * @return mixed true or false on sucess, a MDB2 error on failure - * @access public - */ - function valid() - { - $numrows = $this->numRows(); - if (PEAR::isError($numrows)) { - return $numrows; - } - return $this->rownum < ($numrows - 1); - } - - // }}} - // {{{ numRows() - - /** - * Returns the number of rows in a result object - * - * @return mixed MDB2 Error Object or the number of rows - * @access public - */ - function numRows() - { - $rows = 0; - $this->result->reset(); - while($this->result->fetchArray()) { - $rows++; - } - $this->result->reset(); - return $rows; - } -} - -/** - * MDB2 SQLite statement driver - * - * @package MDB2 - * @category Database - * @author Lukas Smith <smith@pooteeweet.org> - */ -class MDB2_Statement_sqlite3 extends MDB2_Statement_Common -{ - // }}} - // {{{ function bindValue($parameter, &$value, $type = null) - - private function getParamType($type) { - switch(strtolower($type)) { - case 'text': - return SQLITE3_TEXT; - case 'boolean': - case 'integer': - return SQLITE3_INTEGER; - case 'float': - return SQLITE3_FLOAT; - case 'blob': - return SQLITE3_BLOB; - } - } - /** - * Set the value of a parameter of a prepared query. - * - * @param int the order number of the parameter in the query - * statement. The order number of the first parameter is 1. - * @param mixed value that is meant to be assigned to specified - * parameter. The type of the value depends on the $type argument. - * @param string specifies the type of the field - * - * @return mixed MDB2_OK on success, a MDB2 error on failure - * - * @access public - */ - function bindValue($parameter, $value, $type = null) { - if($type) { - $type=$this->getParamType($type); - $this->statement->bindValue($parameter, $value, $type); - }else{ - $this->statement->bindValue($parameter, $value); - } - return MDB2_OK; - } - - /** - * Bind a variable to a parameter of a prepared query. - * - * @param int the order number of the parameter in the query - * statement. The order number of the first parameter is 1. - * @param mixed variable that is meant to be bound to specified - * parameter. The type of the value depends on the $type argument. - * @param string specifies the type of the field - * - * @return mixed MDB2_OK on success, a MDB2 error on failure - * - * @access public - */ - function bindParam($parameter, &$value, $type = null) { - if($type) { - $type=$this->getParamType($type); - $this->statement->bindParam($parameter, $value, $type); - }else{ - $this->statement->bindParam($parameter, $value); - } - return MDB2_OK; - } - - /** - * Release resources allocated for the specified prepared query. - * - * @return mixed MDB2_OK on success, a MDB2 error on failure - * @access public - */ - function free() - { - $this->statement->close(); - } - - /** - * Execute a prepared query statement helper method. - * - * @param mixed $result_class string which specifies which result class to use - * @param mixed $result_wrap_class string which specifies which class to wrap results in - * - * @return mixed MDB2_Result or integer (affected rows) on success, - * a MDB2 error on failure - * @access private - */ - function _execute($result_class = true, $result_wrap_class = false) { - if (is_null($this->statement)) { - $result =& parent::_execute($result_class, $result_wrap_class); - return $result; - } - $this->db->last_query = $this->query; - $this->db->debug($this->query, 'execute', array('is_manip' => $this->is_manip, 'when' => 'pre', 'parameters' => $this->values)); - if ($this->db->getOption('disable_query')) { - $result = $this->is_manip ? 0 : null; - return $result; - } - - $connection = $this->db->getConnection(); - if (PEAR::isError($connection)) { - return $connection; - } - - $result = $this->statement->execute(); - if ($result==false) { - $err =$this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null, - 'cant execute statement', __FUNCTION__); - } - - if ($this->is_manip) { - $affected_rows = $this->db->_affectedRows($connection, $result); - return $affected_rows; - } - - $result = $this->db->_wrapResult($result, $this->result_types, - $result_class, $result_wrap_class, $this->limit, $this->offset); - $this->db->debug($this->query, 'execute', array('is_manip' => $this->is_manip, 'when' => 'post', 'result' => $result)); - return $result; - } - - /** - * Set the values of multiple a parameter of a prepared query in bulk. - * - * @param array specifies all necessary information - * for bindValue() the array elements must use keys corresponding to - * the number of the position of the parameter. - * @param array specifies the types of the fields - * - * @return mixed MDB2_OK on success, a MDB2 error on failure - * - * @access public - * @see bindParam() - */ - function bindValueArray($values, $types = null) - { - $types = is_array($types) ? array_values($types) : array_fill(0, count($values), null); - $parameters = array_keys($values); - foreach ($parameters as $key => $parameter) { - $this->db->pushErrorHandling(PEAR_ERROR_RETURN); - $this->db->expectError(MDB2_ERROR_NOT_FOUND); - $err = $this->bindValue($parameter+1, $values[$parameter], $types[$key]); - $this->db->popExpect(); - $this->db->popErrorHandling(); - if (PEAR::isError($err)) { - if ($err->getCode() == MDB2_ERROR_NOT_FOUND) { - //ignore (extra value for missing placeholder) - continue; - } - return $err; - } - } - return MDB2_OK; - } - // }}} - // {{{ function bindParamArray(&$values, $types = null) - - /** - * Bind the variables of multiple a parameter of a prepared query in bulk. - * - * @param array specifies all necessary information - * for bindParam() the array elements must use keys corresponding to - * the number of the position of the parameter. - * @param array specifies the types of the fields - * - * @return mixed MDB2_OK on success, a MDB2 error on failure - * - * @access public - * @see bindParam() - */ - function bindParamArray(&$values, $types = null) - { - $types = is_array($types) ? array_values($types) : array_fill(0, count($values), null); - $parameters = array_keys($values); - foreach ($parameters as $key => $parameter) { - $err = $this->bindParam($parameter+1, $values[$parameter], $types[$key]); - if (PEAR::isError($err)) { - return $err; - } - } - return MDB2_OK; - } - - // }}} - // {{{ function &execute($values = null, $result_class = true, $result_wrap_class = false) - - /** - * Execute a prepared query statement. - * - * @param array specifies all necessary information - * for bindParam() the array elements must use keys corresponding - * to the number of the position of the parameter. - * @param mixed specifies which result class to use - * @param mixed specifies which class to wrap results in - * - * @return mixed MDB2_Result or integer (affected rows) on success, - * a MDB2 error on failure - * @access public - */ - function execute($values = null, $result_class = true, $result_wrap_class = false) - { - if (is_null($this->positions)) { - return $this->db->raiseError(MDB2_ERROR, null, null, - 'Prepared statement has already been freed', __FUNCTION__); - } - $values = (array)$values; - if (!empty($values)) { - if(count($this->types)) { - $types=$this->types; - }else{ - $types=null; - } - $err = $this->bindValueArray($values, $types); - if (PEAR::isError($err)) { - return $this->db->raiseError(MDB2_ERROR, null, null, - 'Binding Values failed with message: ' . $err->getMessage(), __FUNCTION__); - } - } - $result =$this->_execute($result_class, $result_wrap_class); - return $result; - } - - function __destruct() { - $this->free(); - } -} diff --git a/lib/app.php b/lib/app.php index f9b1c5ca7b5..baacf508d8e 100644 --- a/lib/app.php +++ b/lib/app.php @@ -424,7 +424,7 @@ class OC_App{ return $navigation; } - /// This is private as well. It simply works, so don't ask for more details + // This is private as well. It simply works, so don't ask for more details private static function proceedNavigation( $list ) { foreach( $list as &$naventry ) { if( $naventry['id'] == self::$activeapp ) { @@ -473,7 +473,7 @@ class OC_App{ } /** * Get the directory for the given app. - * If the app is defined in multiple directory, the first one is taken. (false if not found) + * If the app is defined in multiple directories, the first one is taken. (false if not found) */ public static function getAppPath($appid) { if( ($dir = self::findAppInDirectories($appid)) != false) { @@ -484,7 +484,7 @@ class OC_App{ /** * Get the path for the given app on the access - * If the app is defined in multiple directory, the first one is taken. (false if not found) + * If the app is defined in multiple directories, the first one is taken. (false if not found) */ public static function getAppWebPath($appid) { if( ($dir = self::findAppInDirectories($appid)) != false) { @@ -818,7 +818,7 @@ class OC_App{ } /** - * check if the app need updating and update when needed + * check if the app needs updating and update when needed */ public static function checkUpgrade($app) { if (in_array($app, self::$checkedApps)) { diff --git a/lib/archive.php b/lib/archive.php index 61239c82076..70615db714e 100644 --- a/lib/archive.php +++ b/lib/archive.php @@ -8,7 +8,7 @@ abstract class OC_Archive{ /** - * open any of the supporeted archive types + * open any of the supported archive types * @param string path * @return OC_Archive */ @@ -69,7 +69,7 @@ abstract class OC_Archive{ */ abstract function getFolder($path); /** - *get all files in the archive + * get all files in the archive * @return array */ abstract function getFiles(); @@ -113,7 +113,7 @@ abstract class OC_Archive{ */ abstract function getStream($path, $mode); /** - * add a folder and all it's content + * add a folder and all its content * @param string $path * @param string source * @return bool diff --git a/lib/archive/tar.php b/lib/archive/tar.php index e7c81389619..a1c0535b1c3 100644 --- a/lib/archive/tar.php +++ b/lib/archive/tar.php @@ -182,7 +182,7 @@ class OC_Archive_TAR extends OC_Archive{ return $folderContent; } /** - *get all files in the archive + * get all files in the archive * @return array */ function getFiles() { diff --git a/lib/archive/zip.php b/lib/archive/zip.php index 8e31795ded1..8a866716a79 100644 --- a/lib/archive/zip.php +++ b/lib/archive/zip.php @@ -94,7 +94,7 @@ class OC_Archive_ZIP extends OC_Archive{ return $folderContent; } /** - *get all files in the archive + * get all files in the archive * @return array */ function getFiles() { diff --git a/lib/base.php b/lib/base.php index af54f439155..53aa7b09fd5 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(); @@ -433,9 +434,8 @@ class OC { } if (!defined('PHPUNIT_RUN') and !(defined('DEBUG') and DEBUG)) { - register_shutdown_function(array('OC_Log', 'onShutdown')); - set_error_handler(array('OC_Log', 'onError')); - set_exception_handler(array('OC_Log', 'onException')); + OC\Log\ErrorHandler::register(); + OC\Log\ErrorHandler::setLogger(OC_Log::$object); } // register the stream wrappers @@ -597,6 +597,9 @@ class OC { self::checkUpgrade(); } + // Test it the user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP + OC::tryBasicAuthLogin(); + if (!self::$CLI) { try { if (!OC_Config::getValue('maintenance', false)) { @@ -698,15 +701,11 @@ class OC { // remember was checked after last login if (OC::tryRememberLogin()) { $error[] = 'invalidcookie'; - // Someone wants to log in : } elseif (OC::tryFormLogin()) { $error[] = 'invalidpassword'; - - // The user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP - } elseif (OC::tryBasicAuthLogin()) { - $error[] = 'invalidpassword'; } + OC_Util::displayLoginPage(array_unique($error)); } @@ -804,8 +803,7 @@ class OC { if (OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) { //OC_Log::write('core',"Logged in with HTTP Authentication", OC_Log::DEBUG); OC_User::unsetMagicInCookie(); - $_REQUEST['redirect_url'] = OC_Request::requestUri(); - OC_Util::redirectToDefaultPage(); + $_SERVER['HTTP_REQUESTTOKEN'] = OC_Util::callRegister(); } return true; } diff --git a/lib/cache.php b/lib/cache.php index bc74ed83f8b..48b9964ba9d 100644 --- a/lib/cache.php +++ b/lib/cache.php @@ -15,41 +15,14 @@ class OC_Cache { * @var OC_Cache $global_cache */ static protected $global_cache; - /** - * @var OC_Cache $global_cache_fast - */ - static protected $global_cache_fast; - /** - * @var OC_Cache $user_cache_fast - */ - static protected $user_cache_fast; - static protected $isFast=null; /** * get the global cache * @return OC_Cache */ - static public function getGlobalCache($fast=false) { + static public function getGlobalCache() { if (!self::$global_cache) { - self::$global_cache_fast = null; - if (!self::$global_cache_fast && function_exists('xcache_set')) { - self::$global_cache_fast = new OC_Cache_XCache(true); - } - if (!self::$global_cache_fast && function_exists('apc_store')) { - self::$global_cache_fast = new OC_Cache_APC(true); - } - self::$global_cache = new OC_Cache_FileGlobal(); - if (self::$global_cache_fast) { - self::$global_cache = new OC_Cache_Broker(self::$global_cache_fast, self::$global_cache); - } - } - if($fast) { - if(self::$global_cache_fast) { - return self::$global_cache_fast; - }else{ - return false; - } } return self::$global_cache; } @@ -58,34 +31,16 @@ class OC_Cache { * get the user cache * @return OC_Cache */ - static public function getUserCache($fast=false) { + static public function getUserCache() { if (!self::$user_cache) { - self::$user_cache_fast = null; - if (!self::$user_cache_fast && function_exists('xcache_set')) { - self::$user_cache_fast = new OC_Cache_XCache(); - } - if (!self::$user_cache_fast && function_exists('apc_store')) { - self::$user_cache_fast = new OC_Cache_APC(); - } - self::$user_cache = new OC_Cache_File(); - if (self::$user_cache_fast) { - self::$user_cache = new OC_Cache_Broker(self::$user_cache_fast, self::$user_cache); - } - } - - if($fast) { - if(self::$user_cache_fast) { - return self::$user_cache_fast; - }else{ - return false; - } } return self::$user_cache; } /** * get a value from the user cache + * @param string $key * @return mixed */ static public function get($key) { @@ -95,6 +50,9 @@ class OC_Cache { /** * set a value in the user cache + * @param string $key + * @param mixed $value + * @param int $ttl * @return bool */ static public function set($key, $value, $ttl=0) { @@ -107,6 +65,7 @@ class OC_Cache { /** * check if a value is set in the user cache + * @param string $key * @return bool */ static public function hasKey($key) { @@ -116,6 +75,7 @@ class OC_Cache { /** * remove an item from the user cache + * @param string $key * @return bool */ static public function remove($key) { @@ -133,17 +93,6 @@ class OC_Cache { return $user_cache->clear($prefix); } - /** - * check if a fast memory based cache is available - * @return true - */ - static public function isFast() { - if(is_null(self::$isFast)) { - self::$isFast=function_exists('xcache_set') || function_exists('apc_store'); - } - return self::$isFast; - } - static public function generateCacheKeyFromFiles($files) { $key = ''; sort($files); diff --git a/lib/cache/apc.php b/lib/cache/apc.php deleted file mode 100644 index 895d307ea26..00000000000 --- a/lib/cache/apc.php +++ /dev/null @@ -1,64 +0,0 @@ -<?php -/** - * Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl> - * This file is licensed under the Affero General Public License version 3 or - * later. - * See the COPYING-README file. - */ - -class OC_Cache_APC { - protected $prefix; - - public function __construct($global = false) { - $this->prefix = OC_Util::getInstanceId().'/'; - if (!$global) { - $this->prefix .= OC_User::getUser().'/'; - } - } - - /** - * entries in APC gets namespaced to prevent collisions between owncloud instances and users - */ - protected function getNameSpace() { - return $this->prefix; - } - - public function get($key) { - $result = apc_fetch($this->getNamespace().$key, $success); - if (!$success) { - return null; - } - return $result; - } - - public function set($key, $value, $ttl=0) { - return apc_store($this->getNamespace().$key, $value, $ttl); - } - - public function hasKey($key) { - return apc_exists($this->getNamespace().$key); - } - - public function remove($key) { - return apc_delete($this->getNamespace().$key); - } - - public function clear($prefix='') { - $ns = $this->getNamespace().$prefix; - $cache = apc_cache_info('user'); - foreach($cache['cache_list'] as $entry) { - if (strpos($entry['info'], $ns) === 0) { - apc_delete($entry['info']); - } - } - return true; - } -} -if(!function_exists('apc_exists')) { - function apc_exists($keys) - { - $result=false; - apc_fetch($keys, $result); - return $result; - } -} diff --git a/lib/config.php b/lib/config.php index fcd0a9d7c3c..00d9f5b4247 100644 --- a/lib/config.php +++ b/lib/config.php @@ -34,16 +34,34 @@ * */ +namespace OC; + /** * This class is responsible for reading and writing config.php, the very basic - * configuration file of owncloud. + * configuration file of ownCloud. */ -class OC_Config{ +class Config { // associative array key => value - private static $cache = array(); + protected $cache = array(); + + protected $configDir; + protected $configFilename; + + protected $debugMode; + + /** + * @param $configDir path to the config dir, needs to end with '/' + */ + public function __construct($configDir) { + $this->configDir = $configDir; + $this->configFilename = $this->configDir.'config.php'; + $this->readData(); + $this->setDebugMode(defined('DEBUG') && DEBUG); + } - // Is the cache filled? - private static $init = false; + public function setDebugMode($enable) { + $this->debugMode = $enable; + } /** * @brief Lists all available config keys @@ -52,10 +70,8 @@ class OC_Config{ * This function returns all keys saved in config.php. Please note that it * does not return the values. */ - public static function getKeys() { - self::readData(); - - return array_keys( self::$cache ); + public function getKeys() { + return array_keys($this->cache); } /** @@ -67,11 +83,9 @@ class OC_Config{ * This function gets the value from config.php. If it does not exist, * $default will be returned. */ - public static function getValue( $key, $default = null ) { - self::readData(); - - if( array_key_exists( $key, self::$cache )) { - return self::$cache[$key]; + public function getValue($key, $default = null) { + if (isset($this->cache[$key])) { + return $this->cache[$key]; } return $default; @@ -81,113 +95,90 @@ class OC_Config{ * @brief Sets a value * @param string $key key * @param string $value value - * @return bool * - * This function sets the value and writes the config.php. If the file can - * not be written, false will be returned. + * This function sets the value and writes the config.php. + * */ - public static function setValue( $key, $value ) { - self::readData(); - + public function setValue($key, $value) { // Add change - self::$cache[$key] = $value; + $this->cache[$key] = $value; // Write changes - self::writeData(); - return true; + $this->writeData(); } /** * @brief Removes a key from the config * @param string $key key - * @return bool * - * This function removes a key from the config.php. If owncloud has no - * write access to config.php, the function will return false. + * This function removes a key from the config.php. + * */ - public static function deleteKey( $key ) { - self::readData(); - - if( array_key_exists( $key, self::$cache )) { + public function deleteKey($key) { + if (isset($this->cache[$key])) { // Delete key from cache - unset( self::$cache[$key] ); + unset($this->cache[$key]); // Write changes - self::writeData(); + $this->writeData(); } - - return true; } /** * @brief Loads the config file - * @return bool * * Reads the config file and saves it to the cache */ - private static function readData() { - if( self::$init ) { - return true; + private function readData() { + // Default config + $configFiles = array($this->configFilename); + // Add all files in the config dir ending with config.php + $extra = glob($this->configDir.'*.config.php'); + if (is_array($extra)) { + natsort($extra); + $configFiles = array_merge($configFiles, $extra); } - - // read all file in config dir ending by config.php - $config_files = glob( OC::$SERVERROOT."/config/*.config.php"); - - //Filter only regular files - $config_files = array_filter($config_files, 'is_file'); - - //Sort array naturally : - natsort($config_files); - - // Add default config - array_unshift($config_files,OC::$SERVERROOT."/config/config.php"); - - //Include file and merge config - foreach($config_files as $file){ - @include $file; - if( isset( $CONFIG ) && is_array( $CONFIG )) { - self::$cache = array_merge(self::$cache, $CONFIG); + // Include file and merge config + foreach ($configFiles as $file) { + if (!file_exists($file)) { + continue; + } + unset($CONFIG); + include $file; + if (isset($CONFIG) && is_array($CONFIG)) { + $this->cache = array_merge($this->cache, $CONFIG); } } - - // We cached everything - self::$init = true; - - return true; } /** * @brief Writes the config file - * @return bool * * Saves the config to the config file. * */ - public static function writeData() { + private function writeData() { // Create a php file ... - $content = "<?php\n "; - if (defined('DEBUG') && DEBUG) { + $defaults = new \OC_Defaults; + $content = "<?php\n"; + if ($this->debugMode) { $content .= "define('DEBUG',true);\n"; } - $content .= "\$CONFIG = "; - $content .= var_export(self::$cache, true); + $content .= '$CONFIG = '; + $content .= var_export($this->cache, true); $content .= ";\n"; - $filename = OC::$SERVERROOT."/config/config.php"; // Write the file - $result=@file_put_contents( $filename, $content ); - if(!$result) { - $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'))); - $tmpl->printPage(); - exit; + $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'", + '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($filename, 0640); - OC_Util::clearOpcodeCache(); - return true; + @chmod($this->configFilename, 0640); + \OC_Util::clearOpcodeCache(); } } diff --git a/lib/connector/sabre/auth.php b/lib/connector/sabre/auth.php index 6990d928cff..bf3a49593cb 100644 --- a/lib/connector/sabre/auth.php +++ b/lib/connector/sabre/auth.php @@ -60,4 +60,25 @@ class OC_Connector_Sabre_Auth extends Sabre_DAV_Auth_Backend_AbstractBasic { } return $user; } + + /** + * Override function here. We want to cache authentication cookies + * in the syncing client to avoid HTTP-401 roundtrips. + * If the sync client supplies the cookies, then OC_User::isLoggedIn() + * will return true and we can see this WebDAV request as already authenticated, + * even if there are no HTTP Basic Auth headers. + * In other case, just fallback to the parent implementation. + * + * @return bool + */ + public function authenticate(Sabre_DAV_Server $server, $realm) { + if (OC_User::isLoggedIn()) { + $user = OC_User::getUser(); + OC_Util::setupFS($user); + $this->currentUser = $user; + return true; + } + + return parent::authenticate($server, $realm); + } } diff --git a/lib/db.php b/lib/db.php index a93b9eccbdf..e70d66fc2ba 100644 --- a/lib/db.php +++ b/lib/db.php @@ -20,7 +20,9 @@ * */ -class DatabaseException extends Exception{ +define('MDB2_SCHEMA_DUMP_STRUCTURE', '1'); + +class DatabaseException extends Exception { private $query; //FIXME getQuery seems to be unused, maybe use parent constructor with $message, $code and $previous @@ -29,61 +31,41 @@ class DatabaseException extends Exception{ $this->query = $query; } - public function getQuery(){ + public function getQuery() { return $this->query; } } /** * This class manages the access to the database. It basically is a wrapper for - * MDB2 with some adaptions. + * Doctrine with some adaptions. */ class OC_DB { - const BACKEND_PDO=0; - const BACKEND_MDB2=1; + const BACKEND_DOCTRINE=2; static private $preparedQueries = array(); static private $cachingEnabled = true; /** - * @var MDB2_Driver_Common + * @var \Doctrine\DBAL\Connection */ - static private $connection; //the prefered connection to use, either PDO or MDB2 + static private $connection; //the preferred connection to use, only Doctrine static private $backend=null; /** - * @var MDB2_Driver_Common - */ - static private $MDB2=null; - /** - * @var PDO + * @var \Doctrine\DBAL\Connection */ - static private $PDO=null; - /** - * @var MDB2_Schema - */ - static private $schema=null; + static private $DOCTRINE=null; + static private $inTransaction=false; static private $prefix=null; static private $type=null; /** * check which backend we should use - * @return int BACKEND_MDB2 or BACKEND_PDO + * @return int BACKEND_DOCTRINE */ private static function getDBBackend() { - //check if we can use PDO, else use MDB2 (installation always needs to be done my mdb2) - if(class_exists('PDO') && OC_Config::getValue('installed', false)) { - $type = OC_Config::getValue( "dbtype", "sqlite" ); - if($type=='oci') { //oracle also always needs mdb2 - return self::BACKEND_MDB2; - } - if($type=='sqlite3') $type='sqlite'; - $drivers=PDO::getAvailableDrivers(); - if(array_search($type, $drivers)!==false) { - return self::BACKEND_PDO; - } - } - return self::BACKEND_MDB2; + return self::BACKEND_DOCTRINE; } /** @@ -100,28 +82,24 @@ class OC_DB { if(is_null($backend)) { $backend=self::getDBBackend(); } - if($backend==self::BACKEND_PDO) { - $success = self::connectPDO(); - self::$connection=self::$PDO; - self::$backend=self::BACKEND_PDO; - }else{ - $success = self::connectMDB2(); - self::$connection=self::$MDB2; - self::$backend=self::BACKEND_MDB2; + if($backend==self::BACKEND_DOCTRINE) { + $success = self::connectDoctrine(); + self::$connection=self::$DOCTRINE; + self::$backend=self::BACKEND_DOCTRINE; } return $success; } /** - * connect to the database using pdo + * connect to the database using doctrine * * @return bool */ - public static function connectPDO() { + public static function connectDoctrine() { if(self::$connection) { - if(self::$backend==self::BACKEND_MDB2) { + if(self::$backend!=self::BACKEND_DOCTRINE) { self::disconnect(); - }else{ + } else { return true; } } @@ -134,169 +112,85 @@ class OC_DB { $type = OC_Config::getValue( "dbtype", "sqlite" ); if(strpos($host, ':')) { list($host, $port)=explode(':', $host, 2); - }else{ + } else { $port=false; } - $opts = array(); - $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ); // do nothing if the connection already has been established - if(!self::$PDO) { - // Add the dsn according to the database type - switch($type) { - case 'sqlite': - $dsn='sqlite2:'.$datadir.'/'.$name.'.db'; - break; - case 'sqlite3': - $dsn='sqlite:'.$datadir.'/'.$name.'.db'; - break; - case 'mysql': - if($port) { - $dsn='mysql:dbname='.$name.';host='.$host.';port='.$port; - }else{ - $dsn='mysql:dbname='.$name.';host='.$host; - } - $opts[PDO::MYSQL_ATTR_INIT_COMMAND] = "SET NAMES 'UTF8'"; - break; - case 'pgsql': - if($port) { - $dsn='pgsql:dbname='.$name.';host='.$host.';port='.$port; - }else{ - $dsn='pgsql:dbname='.$name.';host='.$host; - } - /** - * Ugly fix for pg connections pbm when password use spaces - */ - $e_user = addslashes($user); - $e_password = addslashes($pass); - $pass = $user = null; - $dsn .= ";user='$e_user';password='$e_password'"; - /** END OF FIX***/ - break; - case 'oci': // Oracle with PDO is unsupported - if ($port) { - $dsn = 'oci:dbname=//' . $host . ':' . $port . '/' . $name; - } else { - $dsn = 'oci:dbname=//' . $host . '/' . $name; - } - break; - case 'mssql': - if ($port) { - $dsn='sqlsrv:Server='.$host.','.$port.';Database='.$name; - } else { - $dsn='sqlsrv:Server='.$host.';Database='.$name; - } - break; - default: - return false; - } - self::$PDO=new PDO($dsn, $user, $pass, $opts); - - // We always, really always want associative arrays - self::$PDO->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC); - self::$PDO->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); - } - return true; - } - - /** - * connect to the database using mdb2 - */ - public static function connectMDB2() { - if(self::$connection) { - if(self::$backend==self::BACKEND_PDO) { - self::disconnect(); - }else{ - return true; - } - } - self::$preparedQueries = array(); - // The global data we need - $name = OC_Config::getValue( "dbname", "owncloud" ); - $host = OC_Config::getValue( "dbhost", "" ); - $user = OC_Config::getValue( "dbuser", "" ); - $pass = OC_Config::getValue( "dbpassword", "" ); - $type = OC_Config::getValue( "dbtype", "sqlite" ); - $SERVERROOT=OC::$SERVERROOT; - $datadir=OC_Config::getValue( "datadirectory", "$SERVERROOT/data" ); - - // do nothing if the connection already has been established - if(!self::$MDB2) { - // Require MDB2.php (not required in the head of the file so we only load it when needed) - require_once 'MDB2.php'; - - // Prepare options array - $options = array( - 'portability' => MDB2_PORTABILITY_ALL - MDB2_PORTABILITY_FIX_CASE, - 'log_line_break' => '<br>', - 'idxname_format' => '%s', - 'debug' => true, - 'quote_identifier' => true - ); - - // Add the dsn according to the database type + if(!self::$DOCTRINE) { + $config = new \Doctrine\DBAL\Configuration(); switch($type) { case 'sqlite': case 'sqlite3': - $dsn = array( - 'phptype' => $type, - 'database' => "$datadir/$name.db", - 'mode' => '0644' + $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ); + $connectionParams = array( + 'user' => $user, + 'password' => $pass, + 'path' => $datadir.'/'.$name.'.db', + 'driver' => 'pdo_sqlite', ); break; case 'mysql': - $dsn = array( - 'phptype' => 'mysql', - 'username' => $user, - 'password' => $pass, - 'hostspec' => $host, - 'database' => $name + $connectionParams = array( + 'user' => $user, + 'password' => $pass, + 'host' => $host, + 'port' => $port, + 'dbname' => $name, + 'charset' => 'UTF8', + 'driver' => 'pdo_mysql', ); break; case 'pgsql': - $dsn = array( - 'phptype' => 'pgsql', - 'username' => $user, - 'password' => $pass, - 'hostspec' => $host, - 'database' => $name + $connectionParams = array( + 'user' => $user, + 'password' => $pass, + 'host' => $host, + 'port' => $port, + 'dbname' => $name, + 'driver' => 'pdo_pgsql', ); break; case 'oci': - $dsn = array( - 'phptype' => 'oci8', - 'username' => $user, - 'password' => $pass, - 'service' => $name, - 'hostspec' => $host, - 'charset' => 'AL32UTF8', + $connectionParams = array( + 'user' => $user, + 'password' => $pass, + 'host' => $host, + 'dbname' => $name, + 'charset' => 'AL32UTF8', + 'driver' => 'oci8', ); + if (!empty($port)) { + $connectionParams['port'] = $port; + } break; case 'mssql': - $dsn = array( - 'phptype' => 'sqlsrv', - 'username' => $user, - 'password' => $pass, - 'hostspec' => $host, - 'database' => $name, - 'charset' => 'UTF-8' + $connectionParams = array( + 'user' => $user, + 'password' => $pass, + 'host' => $host, + 'port' => $port, + 'dbname' => $name, + 'charset' => 'UTF8', + 'driver' => 'pdo_sqlsrv', ); - $options['portability'] = $options['portability'] - MDB2_PORTABILITY_EMPTY_TO_NULL; break; default: return false; } + try { + self::$DOCTRINE = \Doctrine\DBAL\DriverManager::getConnection($connectionParams, $config); + } catch(\Doctrine\DBAL\DBALException $e) { + OC_Log::write('core', $e->getMessage(), OC_Log::FATAL); + OC_User::setUserId(null); - // Try to establish connection - self::$MDB2 = MDB2::factory( $dsn, $options ); - - self::raiseExceptionOnError( self::$MDB2 ); - - // We always, really always want associative arrays - self::$MDB2->setFetchMode(MDB2_FETCHMODE_ASSOC); + // send http status 503 + header('HTTP/1.1 503 Service Temporarily Unavailable'); + header('Status: 503 Service Temporarily Unavailable'); + OC_Template::printErrorPage('Failed to connect to database'); + die(); + } } - - // we are done. great! return true; } @@ -306,34 +200,19 @@ class OC_DB { * @param int $limit * @param int $offset * @param bool $isManipulation - * @return MDB2_Statement_Common prepared SQL query + * @throws DatabaseException + * @return \Doctrine\DBAL\Statement prepared SQL query * - * SQL query via MDB2 prepare(), needs to be execute()'d! + * SQL query via Doctrine prepare(), needs to be execute()'d! */ static public function prepare( $query , $limit = null, $offset = null, $isManipulation = null) { if (!is_null($limit) && $limit != -1) { - if (self::$backend == self::BACKEND_MDB2) { - //MDB2 uses or emulates limits & offset internally - self::$MDB2->setLimit($limit, $offset); - } else { - //PDO does not handle limit and offset. - //FIXME: check limit notation for other dbs - //the following sql thus might needs to take into account db ways of representing it - //(oracle has no LIMIT / OFFSET) - $limit = (int)$limit; - $limitsql = ' LIMIT ' . $limit; - if (!is_null($offset)) { - $offset = (int)$offset; - $limitsql .= ' OFFSET ' . $offset; - } - //insert limitsql - if (substr($query, -1) == ';') { //if query ends with ; - $query = substr($query, 0, -1) . $limitsql . ';'; - } else { - $query.=$limitsql; - } + if ($limit === -1) { + $limit = null; } + $platform = self::$connection->getDatabasePlatform(); + $query = $platform->modifyLimitQuery($query, $limit, $offset); } else { if (isset(self::$preparedQueries[$query]) and self::$cachingEnabled) { return self::$preparedQueries[$query]; @@ -354,26 +233,14 @@ class OC_DB { } // return the result - if(self::$backend==self::BACKEND_MDB2) { - // differentiate between query and manipulation - if ($isManipulation) { - $result = self::$connection->prepare( $query, null, MDB2_PREPARE_MANIP ); - } else { - $result = self::$connection->prepare( $query, null, MDB2_PREPARE_RESULT ); - } - - // Die if we have an error (error means: bad query, not 0 results!) - if( self::isError($result)) { - throw new DatabaseException($result->getMessage(), $query); - } - }else{ - try{ + if (self::$backend == self::BACKEND_DOCTRINE) { + try { $result=self::$connection->prepare($query); - }catch(PDOException $e) { - throw new DatabaseException($e->getMessage(), $query); + } catch(\Doctrine\DBAL\DBALException $e) { + throw new \DatabaseException($e->getMessage(), $query); } // differentiate between query and manipulation - $result = new PDOStatementWrapper($result, $isManipulation); + $result=new OC_DB_StatementWrapper($result, $isManipulation); } if ((is_null($limit) || $limit == -1) and self::$cachingEnabled ) { $type = OC_Config::getValue( "dbtype", "sqlite" ); @@ -412,7 +279,7 @@ class OC_DB { /** * @brief execute a prepared statement, on error write log and throw exception - * @param mixed $stmt PDOStatementWrapper | MDB2_Statement_Common , + * @param mixed $stmt OC_DB_StatementWrapper, * an array with 'sql' and optionally 'limit' and 'offset' keys * .. or a simple sql query string * @param array $parameters @@ -445,7 +312,7 @@ class OC_DB { $stmt = self::prepare($stmt['sql'], $stmt['limit'], $stmt['offset']); } self::raiseExceptionOnError($stmt, 'Could not prepare statement'); - if ($stmt instanceof PDOStatementWrapper || $stmt instanceof MDB2_Statement_Common) { + if ($stmt instanceof OC_DB_StatementWrapper) { $result = $stmt->execute($parameters); self::raiseExceptionOnError($result, 'Could not execute statement'); } else { @@ -465,7 +332,7 @@ class OC_DB { * @return int id * @throws DatabaseException * - * MDB2 lastInsertID() + * \Doctrine\DBAL\Connection lastInsertId * * Call this method right after the insert command or other functions may * cause trouble! @@ -478,12 +345,20 @@ class OC_DB { $row = $result->fetchRow(); self::raiseExceptionOnError($row, 'fetching row for insertid failed'); return $row['id']; - } else if( $type === 'mssql' || $type === 'oci') { + } else if( $type === 'mssql') { if($table !== null) { $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); $table = str_replace( '*PREFIX*', $prefix, $table ); } - $result = self::$connection->lastInsertId($table); + return self::$connection->lastInsertId($table); + } + if( $type === 'oci' ) { + if($table !== null) { + $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); + $suffix = '_SEQ'; + $table = '"'.str_replace( '*PREFIX*', $prefix, $table ).$suffix.'"'; + } + return self::$connection->lastInsertId($table); } else { if($table !== null) { $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); @@ -505,18 +380,14 @@ class OC_DB { public static function disconnect() { // Cut connection if required if(self::$connection) { - if(self::$backend==self::BACKEND_MDB2) { - self::$connection->disconnect(); - } self::$connection=false; - self::$MDB2=false; - self::$PDO=false; + self::$DOCTRINE=false; } return true; } - /** + /** else { * @brief saves database scheme to xml file * @param string $file name of file * @param int $mode @@ -525,18 +396,8 @@ class OC_DB { * TODO: write more documentation */ public static function getDbStructure( $file, $mode=MDB2_SCHEMA_DUMP_STRUCTURE) { - self::connectScheme(); - - // write the scheme - $definition = self::$schema->getDefinitionFromDatabase(); - $dump_options = array( - 'output_mode' => 'file', - 'output' => $file, - 'end_of_line' => "\n" - ); - self::$schema->dumpDatabase( $definition, $dump_options, $mode ); - - return true; + self::connectDoctrine(); + return OC_DB_Schema::getDbStructure(self::$DOCTRINE, $file); } /** @@ -547,141 +408,32 @@ class OC_DB { * TODO: write more documentation */ public static function createDbFromStructure( $file ) { - $CONFIG_DBNAME = OC_Config::getValue( "dbname", "owncloud" ); - $CONFIG_DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); - $CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" ); - - // cleanup the cached queries - self::$preparedQueries = array(); - - self::connectScheme(); - - // read file - $content = file_get_contents( $file ); - - // Make changes and save them to an in-memory file - $file2 = 'static://db_scheme'; - $content = str_replace( '*dbname*', $CONFIG_DBNAME, $content ); - $content = str_replace( '*dbprefix*', $CONFIG_DBTABLEPREFIX, $content ); - /* FIXME: use CURRENT_TIMESTAMP for all databases. mysql supports it as a default for DATETIME since 5.6.5 [1] - * as a fallback we could use <default>0000-01-01 00:00:00</default> everywhere - * [1] http://bugs.mysql.com/bug.php?id=27645 - * http://dev.mysql.com/doc/refman/5.0/en/timestamp-initialization.html - * http://www.postgresql.org/docs/8.1/static/functions-datetime.html - * http://www.sqlite.org/lang_createtable.html - * http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions037.htm - */ - if( $CONFIG_DBTYPE == 'pgsql' ) { //mysql support it too but sqlite doesn't - $content = str_replace( '<default>0000-00-00 00:00:00</default>', - '<default>CURRENT_TIMESTAMP</default>', $content ); - } - - file_put_contents( $file2, $content ); - - // Try to create tables - $definition = self::$schema->parseDatabaseDefinitionFile( $file2 ); - - //clean up memory - unlink( $file2 ); - - self::raiseExceptionOnError($definition,'Failed to parse the database definition'); - - if(OC_Config::getValue('dbtype', 'sqlite')==='oci') { - unset($definition['charset']); //or MDB2 tries SHUTDOWN IMMEDIATE - $oldname = $definition['name']; - $definition['name']=OC_Config::getValue( "dbuser", $oldname ); - } - - // we should never drop a database - $definition['overwrite'] = false; - - $ret=self::$schema->createDatabase( $definition ); - - self::raiseExceptionOnError($ret,'Failed to create the database structure'); - - return true; + self::connectDoctrine(); + return OC_DB_Schema::createDbFromStructure(self::$DOCTRINE, $file); } /** * @brief update the database scheme * @param string $file file to read structure from + * @throws Exception * @return bool */ public static function updateDbFromStructure($file) { - $CONFIG_DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); - $CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" ); - - self::connectScheme(); - - if(OC_Config::getValue('dbtype', 'sqlite')==='oci') { - //set dbname, it is unset because oci uses 'service' to connect - self::$schema->db->database_name=self::$schema->db->dsn['username']; - } - - // read file - $content = file_get_contents( $file ); - - $previousSchema = self::$schema->getDefinitionFromDatabase(); - self::raiseExceptionOnError($previousSchema,'Failed to get existing database structure for updating'); - - // Make changes and save them to an in-memory file - $file2 = 'static://db_scheme'; - $content = str_replace( '*dbname*', $previousSchema['name'], $content ); - $content = str_replace( '*dbprefix*', $CONFIG_DBTABLEPREFIX, $content ); - /* FIXME: use CURRENT_TIMESTAMP for all databases. mysql supports it as a default for DATETIME since 5.6.5 [1] - * as a fallback we could use <default>0000-01-01 00:00:00</default> everywhere - * [1] http://bugs.mysql.com/bug.php?id=27645 - * http://dev.mysql.com/doc/refman/5.0/en/timestamp-initialization.html - * http://www.postgresql.org/docs/8.1/static/functions-datetime.html - * http://www.sqlite.org/lang_createtable.html - * http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions037.htm - */ - if( $CONFIG_DBTYPE == 'pgsql' ) { //mysql support it too but sqlite doesn't - $content = str_replace( '<default>0000-00-00 00:00:00</default>', - '<default>CURRENT_TIMESTAMP</default>', $content ); - } - if(OC_Config::getValue('dbtype', 'sqlite')==='oci') { - unset($previousSchema['charset']); //or MDB2 tries SHUTDOWN IMMEDIATE - $oldname = $previousSchema['name']; - $previousSchema['name']=OC_Config::getValue( "dbuser", $oldname ); - //TODO check identifiers are at most 30 chars long - } - file_put_contents( $file2, $content ); - $op = self::$schema->updateDatabase($file2, $previousSchema, array(), false); - - //clean up memory - unlink( $file2 ); - - self::raiseExceptionOnError($op,'Failed to update database structure'); - return true; - } - - /** - * @brief connects to a MDB2 database scheme - * @returns bool - * - * Connects to a MDB2 database scheme - */ - private static function connectScheme() { - // We need a mdb2 database connection - self::connectMDB2(); - self::$MDB2->loadModule('Manager'); - self::$MDB2->loadModule('Reverse'); - - // Connect if this did not happen before - if(!self::$schema) { - require_once 'MDB2/Schema.php'; - self::$schema=MDB2_Schema::factory(self::$MDB2); + self::connectDoctrine(); + try { + $result = OC_DB_Schema::updateDbFromStructure(self::$DOCTRINE, $file); + } catch (Exception $e) { + OC_Log::write('core', 'Failed to update database structure ('.$e.')', OC_Log::FATAL); + throw $e; } - - return true; + return $result; } /** * @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 +467,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 . '` (`' @@ -733,12 +485,9 @@ class OC_DB { try { $result = self::executeAudited($query, $inserts); - } catch(PDOException $e) { + } catch(\Doctrine\DBAL\DBALException $e) { OC_Template::printExceptionErrorPage( $e ); } - if ($result === 0) { - return true; - } return $result; } @@ -768,20 +517,20 @@ class OC_DB { $query = str_replace( '`', '"', $query ); $query = str_ireplace( 'NOW()', 'datetime(\'now\')', $query ); $query = str_ireplace( 'UNIX_TIMESTAMP()', 'strftime(\'%s\',\'now\')', $query ); - }elseif( $type == 'pgsql' ) { + } elseif( $type == 'pgsql' ) { $query = str_replace( '`', '"', $query ); $query = str_ireplace( 'UNIX_TIMESTAMP()', 'cast(extract(epoch from current_timestamp) as integer)', $query ); - }elseif( $type == 'oci' ) { + } elseif( $type == 'oci' ) { $query = str_replace( '`', '"', $query ); $query = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); - $query = str_ireplace( 'UNIX_TIMESTAMP()', '((CAST(SYS_EXTRACT_UTC(systimestamp) AS DATE))-TO_DATE(\'1970101000000\',\'YYYYMMDDHH24MiSS\'))*24*3600', $query ); + $query = str_ireplace( 'UNIX_TIMESTAMP()', "(cast(sys_extract_utc(systimestamp) as date) - date'1970-01-01') * 86400", $query ); }elseif( $type == 'mssql' ) { $query = preg_replace( "/\`(.*?)`/", "[$1]", $query ); - $query = str_replace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); - $query = str_replace( 'now()', 'CURRENT_TIMESTAMP', $query ); + $query = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); $query = str_replace( 'LENGTH(', 'LEN(', $query ); $query = str_replace( 'SUBSTR(', 'SUBSTRING(', $query ); + $query = str_ireplace( 'UNIX_TIMESTAMP()', 'DATEDIFF(second,{d \'1970-01-01\'},GETDATE())', $query ); $query = self::fixLimitClauseForMSSQL($query); } @@ -851,9 +600,8 @@ class OC_DB { * @param string $tableName the table to drop */ public static function dropTable($tableName) { - self::connectMDB2(); - self::$MDB2->loadModule('Manager'); - self::$MDB2->dropTable($tableName); + self::connectDoctrine(); + OC_DB_Schema::dropTable(self::$DOCTRINE, $tableName); } /** @@ -861,50 +609,17 @@ class OC_DB { * @param string $file the xml file describing the tables */ public static function removeDBStructure($file) { - $CONFIG_DBNAME = OC_Config::getValue( "dbname", "owncloud" ); - $CONFIG_DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); - self::connectScheme(); - - // read file - $content = file_get_contents( $file ); - - // Make changes and save them to a temporary file - $file2 = tempnam( get_temp_dir(), 'oc_db_scheme_' ); - $content = str_replace( '*dbname*', $CONFIG_DBNAME, $content ); - $content = str_replace( '*dbprefix*', $CONFIG_DBTABLEPREFIX, $content ); - file_put_contents( $file2, $content ); - - // get the tables - $definition = self::$schema->parseDatabaseDefinitionFile( $file2 ); - - // Delete our temporary file - unlink( $file2 ); - $tables=array_keys($definition['tables']); - foreach($tables as $table) { - self::dropTable($table); - } + self::connectDoctrine(); + OC_DB_Schema::removeDBStructure(self::$DOCTRINE, $file); } /** - * @brief replaces the owncloud tables with a new set + * @brief replaces the ownCloud tables with a new set * @param $file string path to the MDB2 xml db export file */ public static function replaceDB( $file ) { - $apps = OC_App::getAllApps(); - self::beginTransaction(); - // Delete the old tables - self::removeDBStructure( OC::$SERVERROOT . '/db_structure.xml' ); - - foreach($apps as $app) { - $path = OC_App::getAppPath($app).'/appinfo/database.xml'; - if(file_exists($path)) { - self::removeDBStructure( $path ); - } - } - - // Create new tables - self::createDBFromStructure( $file ); - self::commit(); + self::connectDoctrine(); + OC_DB_Schema::replaceDB(self::$DOCTRINE, $file); } /** @@ -913,9 +628,6 @@ class OC_DB { */ public static function beginTransaction() { self::connect(); - if (self::$backend==self::BACKEND_MDB2 && !self::$connection->supports('transactions')) { - return false; - } self::$connection->beginTransaction(); self::$inTransaction=true; return true; @@ -936,24 +648,16 @@ class OC_DB { } /** - * check if a result is an error, works with MDB2 and PDOException + * check if a result is an error, works with Doctrine * @param mixed $result * @return bool */ public static function isError($result) { - //MDB2 returns an MDB2_Error object - if (class_exists('PEAR') === true && PEAR::isError($result)) { - return true; - } - //PDO returns false on error (and throws an exception) - if (self::$backend===self::BACKEND_PDO and $result === false) { - return true; - } - - return false; + //Doctrine returns false on error (and throws an exception) + return $result === false; } /** - * check if a result is an error and throws an exception, works with MDB2 and PDOException + * check if a result is an error and throws an exception, works with \Doctrine\DBAL\DBALException * @param mixed $result * @param string $message * @return void @@ -971,32 +675,19 @@ class OC_DB { } public static function getErrorCode($error) { - if ( class_exists('PEAR') === true && PEAR::isError($error) ) { - /** @var $error PEAR_Error */ - return $error->getCode(); - } - if ( self::$backend==self::BACKEND_PDO and self::$PDO ) { - return self::$PDO->errorCode(); - } - - return -1; + $code = self::$connection->errorCode(); + return $code; } /** * returns the error code and message as a string for logging - * works with MDB2 and PDOException + * works with DoctrineException * @param mixed $error * @return string */ public static function getErrorMessage($error) { - if ( class_exists('PEAR') === true && PEAR::isError($error) ) { - $msg = $error->getCode() . ': ' . $error->getMessage(); - $msg .= ' (' . $error->getDebugInfo() . ')'; - - return $msg; - } - if (self::$backend==self::BACKEND_PDO and self::$PDO) { - $msg = self::$PDO->errorCode() . ': '; - $errorInfo = self::$PDO->errorInfo(); + if (self::$backend==self::BACKEND_DOCTRINE and self::$DOCTRINE) { + $msg = self::$DOCTRINE->errorCode() . ': '; + $errorInfo = self::$DOCTRINE->errorInfo(); if (is_array($errorInfo)) { $msg .= 'SQLSTATE = '.$errorInfo[0] . ', '; $msg .= 'Driver Code = '.$errorInfo[1] . ', '; @@ -1018,180 +709,3 @@ class OC_DB { self::$cachingEnabled = $enabled; } } - -/** - * small wrapper around PDOStatement to make it behave ,more like an MDB2 Statement - */ -class PDOStatementWrapper{ - /** - * @var PDOStatement - */ - private $statement = null; - private $isManipulation = false; - private $lastArguments = array(); - - public function __construct($statement, $isManipulation = false) { - $this->statement = $statement; - $this->isManipulation = $isManipulation; - } - - /** - * make execute return the result instead of a bool - */ - public function execute($input=array()) { - if(OC_Config::getValue( "log_query", false)) { - $params_str = str_replace("\n"," ",var_export($input,true)); - OC_Log::write('core', 'DB execute with arguments : '.$params_str, OC_Log::DEBUG); - } - $this->lastArguments = $input; - if (count($input) > 0) { - - if (!isset($type)) { - $type = OC_Config::getValue( "dbtype", "sqlite" ); - } - - if ($type == 'mssql') { - $input = $this->tryFixSubstringLastArgumentDataForMSSQL($input); - } - - $result = $this->statement->execute($input); - } else { - $result = $this->statement->execute(); - } - - if ($result === false) { - return false; - } - if ($this->isManipulation) { - return $this->statement->rowCount(); - } else { - return $this; - } - } - - private function tryFixSubstringLastArgumentDataForMSSQL($input) { - $query = $this->statement->queryString; - $pos = stripos ($query, 'SUBSTRING'); - - if ( $pos === false) { - return; - } - - try { - $newQuery = ''; - - $cArg = 0; - - $inSubstring = false; - - // Create new query - for ($i = 0; $i < strlen ($query); $i++) { - if ($inSubstring == false) { - // Defines when we should start inserting values - if (substr ($query, $i, 9) == 'SUBSTRING') { - $inSubstring = true; - } - } else { - // Defines when we should stop inserting values - if (substr ($query, $i, 1) == ')') { - $inSubstring = false; - } - } - - if (substr ($query, $i, 1) == '?') { - // We found a question mark - if ($inSubstring) { - $newQuery .= $input[$cArg]; - - // - // Remove from input array - // - array_splice ($input, $cArg, 1); - } else { - $newQuery .= substr ($query, $i, 1); - $cArg++; - } - } else { - $newQuery .= substr ($query, $i, 1); - } - } - - // The global data we need - $name = OC_Config::getValue( "dbname", "owncloud" ); - $host = OC_Config::getValue( "dbhost", "" ); - $user = OC_Config::getValue( "dbuser", "" ); - $pass = OC_Config::getValue( "dbpassword", "" ); - if (strpos($host,':')) { - list($host, $port) = explode(':', $host, 2); - } else { - $port = false; - } - $opts = array(); - - if ($port) { - $dsn = 'sqlsrv:Server='.$host.','.$port.';Database='.$name; - } else { - $dsn = 'sqlsrv:Server='.$host.';Database='.$name; - } - - $PDO = new PDO($dsn, $user, $pass, $opts); - $PDO->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC); - $PDO->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); - - $this->statement = $PDO->prepare($newQuery); - - $this->lastArguments = $input; - - return $input; - } catch (PDOException $e){ - $entry = 'PDO DB Error: "'.$e->getMessage().'"<br />'; - $entry .= 'Offending command was: '.$this->statement->queryString .'<br />'; - $entry .= 'Input parameters: ' .print_r($input, true).'<br />'; - $entry .= 'Stack trace: ' .$e->getTraceAsString().'<br />'; - OC_Log::write('core', $entry, OC_Log::FATAL); - OC_User::setUserId(null); - - // send http status 503 - header('HTTP/1.1 503 Service Temporarily Unavailable'); - header('Status: 503 Service Temporarily Unavailable'); - OC_Template::printErrorPage('Failed to connect to database'); - die ($entry); - } - } - - /** - * provide numRows - */ - public function numRows() { - $regex = '/^SELECT\s+(?:ALL\s+|DISTINCT\s+)?(?:.*?)\s+FROM\s+(.*)$/i'; - if (preg_match($regex, $this->statement->queryString, $output) > 0) { - $query = OC_DB::prepare("SELECT COUNT(*) FROM {$output[1]}"); - return $query->execute($this->lastArguments)->fetchColumn(); - }else{ - return $this->statement->rowCount(); - } - } - - /** - * provide an alias for fetch - */ - public function fetchRow() { - return $this->statement->fetch(); - } - - /** - * pass all other function directly to the PDOStatement - */ - public function __call($name, $arguments) { - return call_user_func_array(array($this->statement, $name), $arguments); - } - - /** - * Provide a simple fetchOne. - * fetch single column from the next row - * @param int $colnum the column number to fetch - */ - public function fetchOne($colnum = 0) { - return $this->statement->fetchColumn($colnum); - } -} diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php new file mode 100644 index 00000000000..0ead9528c93 --- /dev/null +++ b/lib/db/mdb2schemareader.php @@ -0,0 +1,241 @@ +<?php +/** + * Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class OC_DB_MDB2SchemaReader { + static protected $DBNAME; + static protected $DBTABLEPREFIX; + static protected $platform; + + /** + * @param $file + * @param $platform + * @return \Doctrine\DBAL\Schema\Schema + * @throws DomainException + */ + public static function loadSchemaFromFile($file, $platform) { + self::$DBNAME = OC_Config::getValue( "dbname", "owncloud" ); + self::$DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); + self::$platform = $platform; + $schema = new \Doctrine\DBAL\Schema\Schema(); + $xml = simplexml_load_file($file); + foreach($xml->children() as $child) { + switch($child->getName()) { + case 'name': + case 'create': + case 'overwrite': + case 'charset': + break; + case 'table': + self::loadTable($schema, $child); + break; + default: + throw new DomainException('Unknown element: '.$child->getName()); + + } + } + return $schema; + } + + /** + * @param\Doctrine\DBAL\Schema\Schema $schema + * @param $xml + * @throws DomainException + */ + private static function loadTable($schema, $xml) { + foreach($xml->children() as $child) { + switch($child->getName()) { + case 'name': + $name = (string)$child; + $name = str_replace( '*dbprefix*', self::$DBTABLEPREFIX, $name ); + $name = self::$platform->quoteIdentifier($name); + $table = $schema->createTable($name); + break; + case 'create': + case 'overwrite': + case 'charset': + break; + case 'declaration': + self::loadDeclaration($table, $child); + break; + default: + throw new DomainException('Unknown element: '.$child->getName()); + + } + } + } + + /** + * @param \Doctrine\DBAL\Schema\Table $table + * @param $xml + * @throws DomainException + */ + private static function loadDeclaration($table, $xml) { + foreach($xml->children() as $child) { + switch($child->getName()) { + case 'field': + self::loadField($table, $child); + break; + case 'index': + self::loadIndex($table, $child); + break; + default: + throw new DomainException('Unknown element: '.$child->getName()); + + } + } + } + + private static function loadField($table, $xml) { + $options = array(); + foreach($xml->children() as $child) { + switch($child->getName()) { + case 'name': + $name = (string)$child; + $name = self::$platform->quoteIdentifier($name); + break; + case 'type': + $type = (string)$child; + switch($type) { + case 'text': + $type = 'string'; + break; + case 'clob': + $type = 'text'; + break; + case 'timestamp': + $type = 'datetime'; + break; + // TODO + return; + } + break; + case 'length': + $length = (string)$child; + $options['length'] = $length; + break; + case 'unsigned': + $unsigned = self::asBool($child); + $options['unsigned'] = $unsigned; + break; + case 'notnull': + $notnull = self::asBool($child); + $options['notnull'] = $notnull; + break; + case 'autoincrement': + $autoincrement = self::asBool($child); + $options['autoincrement'] = $autoincrement; + break; + case 'default': + $default = (string)$child; + $options['default'] = $default; + break; + case 'comments': + $comment = (string)$child; + $options['comment'] = $comment; + break; + default: + throw new DomainException('Unknown element: '.$child->getName()); + + } + } + if (isset($name) && isset($type)) { + if (empty($options['default'])) { + if (empty($options['notnull']) || !$options['notnull']) { + unset($options['default']); + $options['notnull'] = false; + } else { + $options['default'] = ''; + } + if ($type == 'integer') { + $options['default'] = 0; + } + if (!empty($options['autoincrement']) && $options['autoincrement']) { + unset($options['default']); + } + } + if ($type == 'integer' && isset($options['length'])) { + $length = $options['length']; + if ($length < 4) { + $type = 'smallint'; + } + else if ($length > 4) { + $type = 'bigint'; + } + } + if (!empty($options['autoincrement']) + && !empty($options['notnull'])) { + $options['primary'] = true; + } + $table->addColumn($name, $type, $options); + if (!empty($options['primary']) && $options['primary']) { + $table->setPrimaryKey(array($name)); + } + } + } + + private static function loadIndex($table, $xml) { + $name = null; + $fields = array(); + foreach($xml->children() as $child) { + switch($child->getName()) { + case 'name': + $name = (string)$child; + break; + case 'primary': + $primary = self::asBool($child); + break; + case 'unique': + $unique = self::asBool($child); + break; + case 'field': + foreach($child->children() as $field) { + switch($field->getName()) { + case 'name': + $field_name = (string)$field; + $field_name = self::$platform->quoteIdentifier($field_name); + $fields[] = $field_name; + break; + case 'sorting': + break; + default: + throw new DomainException('Unknown element: '.$field->getName()); + + } + } + break; + default: + throw new DomainException('Unknown element: '.$child->getName()); + + } + } + if (!empty($fields)) { + if (isset($primary) && $primary) { + $table->setPrimaryKey($fields, $name); + } else + if (isset($unique) && $unique) { + $table->addUniqueIndex($fields, $name); + } else { + $table->addIndex($fields, $name); + } + } else { + throw new DomainException('Empty index definition: '.$name.' options:'. print_r($fields, true)); + } + } + + private static function asBool($xml) { + $result = (string)$xml; + if ($result == 'true') { + $result = true; + } else + if ($result == 'false') { + $result = false; + } + return (bool)$result; + } + +} diff --git a/lib/db/mdb2schemawriter.php b/lib/db/mdb2schemawriter.php new file mode 100644 index 00000000000..21b43cbfe80 --- /dev/null +++ b/lib/db/mdb2schemawriter.php @@ -0,0 +1,133 @@ +<?php +/** + * Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class OC_DB_MDB2SchemaWriter { + + /** + * @param $file + * @param \Doctrine\DBAL\Schema\AbstractSchemaManager $sm + * @return bool + */ + static public function saveSchemaToFile($file, $sm) { + $xml = new SimpleXMLElement('<database/>'); + $xml->addChild('name', OC_Config::getValue( "dbname", "owncloud" )); + $xml->addChild('create', 'true'); + $xml->addChild('overwrite', 'false'); + $xml->addChild('charset', 'utf8'); + foreach ($sm->listTables() as $table) { + self::saveTable($table, $xml->addChild('table')); + } + file_put_contents($file, $xml->asXML()); + return true; + } + + private static function saveTable($table, $xml) { + $xml->addChild('name', $table->getName()); + $declaration = $xml->addChild('declaration'); + foreach($table->getColumns() as $column) { + self::saveColumn($column, $declaration->addChild('field')); + } + foreach($table->getIndexes() as $index) { + if ($index->getName() == 'PRIMARY') { + $autoincrement = false; + foreach($index->getColumns() as $column) { + if ($table->getColumn($column)->getAutoincrement()) { + $autoincrement = true; + } + } + if ($autoincrement) { + continue; + } + } + self::saveIndex($index, $declaration->addChild('index')); + } + } + + private static function saveColumn($column, $xml) { + $xml->addChild('name', $column->getName()); + switch($column->getType()) { + case 'SmallInt': + case 'Integer': + case 'BigInt': + $xml->addChild('type', 'integer'); + $default = $column->getDefault(); + if (is_null($default) && $column->getAutoincrement()) { + $default = '0'; + } + $xml->addChild('default', $default); + $xml->addChild('notnull', self::toBool($column->getNotnull())); + if ($column->getAutoincrement()) { + $xml->addChild('autoincrement', '1'); + } + if ($column->getUnsigned()) { + $xml->addChild('unsigned', 'true'); + } + $length = '4'; + if ($column->getType() == 'SmallInt') { + $length = '2'; + } + elseif ($column->getType() == 'BigInt') { + $length = '8'; + } + $xml->addChild('length', $length); + break; + case 'String': + $xml->addChild('type', 'text'); + $default = trim($column->getDefault()); + if ($default === '') { + $default = false; + } + $xml->addChild('default', $default); + $xml->addChild('notnull', self::toBool($column->getNotnull())); + $xml->addChild('length', $column->getLength()); + break; + case 'Text': + $xml->addChild('type', 'clob'); + $xml->addChild('notnull', self::toBool($column->getNotnull())); + break; + case 'Decimal': + $xml->addChild('type', 'decimal'); + $xml->addChild('default', $column->getDefault()); + $xml->addChild('notnull', self::toBool($column->getNotnull())); + $xml->addChild('length', '15'); + break; + case 'Boolean': + $xml->addChild('type', 'integer'); + $xml->addChild('default', $column->getDefault()); + $xml->addChild('notnull', self::toBool($column->getNotnull())); + $xml->addChild('length', '1'); + break; + case 'DateTime': + $xml->addChild('type', 'timestamp'); + $xml->addChild('default', $column->getDefault()); + $xml->addChild('notnull', self::toBool($column->getNotnull())); + break; + + } + } + + private static function saveIndex($index, $xml) { + $xml->addChild('name', $index->getName()); + if ($index->isPrimary()) { + $xml->addChild('primary', 'true'); + } + elseif ($index->isUnique()) { + $xml->addChild('unique', 'true'); + } + foreach($index->getColumns() as $column) { + $field = $xml->addChild('field'); + $field->addChild('name', $column); + $field->addChild('sorting', 'ascending'); + + } + } + + private static function toBool($bool) { + return $bool ? 'true' : 'false'; + } +} diff --git a/lib/db/schema.php b/lib/db/schema.php new file mode 100644 index 00000000000..fa053c64ef0 --- /dev/null +++ b/lib/db/schema.php @@ -0,0 +1,136 @@ +<?php +/** + * Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class OC_DB_Schema { + /** + * @brief saves database scheme to xml file + * @param \Doctrine\DBAL\Connection $conn + * @param string $file name of file + * @param int|string $mode + * @return bool + * + * TODO: write more documentation + */ + public static function getDbStructure( $conn, $file, $mode=MDB2_SCHEMA_DUMP_STRUCTURE) { + $sm = $conn->getSchemaManager(); + + return OC_DB_MDB2SchemaWriter::saveSchemaToFile($file, $sm); + } + + /** + * @brief Creates tables from XML file + * @param string $file file to read structure from + * @return bool + * + * TODO: write more documentation + */ + public static function createDbFromStructure( $conn, $file ) { + $toSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform()); + return self::executeSchemaChange($conn, $toSchema); + } + + /** + * @brief update the database scheme + * @param string $file file to read structure from + * @return bool + */ + public static function updateDbFromStructure($conn, $file) { + $sm = $conn->getSchemaManager(); + $fromSchema = $sm->createSchema(); + + $toSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform()); + + // remove tables we don't know about + foreach($fromSchema->getTables() as $table) { + if (!$toSchema->hasTable($table->getName())) { + $fromSchema->dropTable($table->getName()); + } + } + // remove sequences we don't know about + foreach($fromSchema->getSequences() as $table) { + if (!$toSchema->hasSequence($table->getName())) { + $fromSchema->dropSequence($table->getName()); + } + } + + $comparator = new \Doctrine\DBAL\Schema\Comparator(); + $schemaDiff = $comparator->compare($fromSchema, $toSchema); + + $platform = $conn->getDatabasePlatform(); + $tables = $schemaDiff->newTables + $schemaDiff->changedTables + $schemaDiff->removedTables; + foreach($tables as $tableDiff) { + $tableDiff->name = $platform->quoteIdentifier($tableDiff->name); + } + + + //$from = $fromSchema->toSql($conn->getDatabasePlatform()); + //$to = $toSchema->toSql($conn->getDatabasePlatform()); + //echo($from[9]); + //echo '<br>'; + //echo($to[9]); + //var_dump($from, $to); + return self::executeSchemaChange($conn, $schemaDiff); + } + + /** + * @brief drop a table + * @param string $tableName the table to drop + */ + public static function dropTable($conn, $tableName) { + $sm = $conn->getSchemaManager(); + $fromSchema = $sm->createSchema(); + $toSchema = clone $fromSchema; + $toSchema->dropTable($tableName); + $sql = $fromSchema->getMigrateToSql($toSchema, $conn->getDatabasePlatform()); + $conn->execute($sql); + } + + /** + * remove all tables defined in a database structure xml file + * @param string $file the xml file describing the tables + */ + public static function removeDBStructure($conn, $file) { + $fromSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform()); + $toSchema = clone $fromSchema; + foreach($toSchema->getTables() as $table) { + $toSchema->dropTable($table->getName()); + } + $comparator = new \Doctrine\DBAL\Schema\Comparator(); + $schemaDiff = $comparator->compare($fromSchema, $toSchema); + self::executeSchemaChange($conn, $schemaDiff); + } + + /** + * @brief replaces the ownCloud tables with a new set + * @param $file string path to the MDB2 xml db export file + */ + public static function replaceDB( $conn, $file ) { + $apps = OC_App::getAllApps(); + self::beginTransaction(); + // Delete the old tables + self::removeDBStructure( $conn, OC::$SERVERROOT . '/db_structure.xml' ); + + foreach($apps as $app) { + $path = OC_App::getAppPath($app).'/appinfo/database.xml'; + if(file_exists($path)) { + self::removeDBStructure( $conn, $path ); + } + } + + // Create new tables + self::commit(); + } + + private static function executeSchemaChange($conn, $schema) { + $conn->beginTransaction(); + foreach($schema->toSql($conn->getDatabasePlatform()) as $sql) { + $conn->query($sql); + } + $conn->commit(); + } +} diff --git a/lib/db/statementwrapper.php b/lib/db/statementwrapper.php new file mode 100644 index 00000000000..f7bc45e068f --- /dev/null +++ b/lib/db/statementwrapper.php @@ -0,0 +1,191 @@ +<?php +/** + * Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +/** + * small wrapper around \Doctrine\DBAL\Driver\Statement to make it behave, more like an MDB2 Statement + */ +class OC_DB_StatementWrapper { + /** + * @var \Doctrine\DBAL\Driver\Statement + */ + private $statement = null; + private $isManipulation = false; + private $lastArguments = array(); + + public function __construct($statement, $isManipulation) { + $this->statement = $statement; + $this->isManipulation = $isManipulation; + } + + /** + * pass all other function directly to the \Doctrine\DBAL\Driver\Statement + */ + public function __call($name,$arguments) { + return call_user_func_array(array($this->statement,$name), $arguments); + } + + /** + * provide numRows + */ + public function numRows() { + $type = OC_Config::getValue( "dbtype", "sqlite" ); + if ($type == 'oci') { + // OCI doesn't have a queryString, just do a rowCount for now + return $this->statement->rowCount(); + } + $regex = '/^SELECT\s+(?:ALL\s+|DISTINCT\s+)?(?:.*?)\s+FROM\s+(.*)$/i'; + $queryString = $this->statement->getWrappedStatement()->queryString; + if (preg_match($regex, $queryString, $output) > 0) { + $query = OC_DB::prepare("SELECT COUNT(*) FROM {$output[1]}"); + return $query->execute($this->lastArguments)->fetchColumn(); + }else{ + return $this->statement->rowCount(); + } + } + + /** + * make execute return the result instead of a bool + */ + public function execute($input=array()) { + if(OC_Config::getValue( "log_query", false)) { + $params_str = str_replace("\n"," ",var_export($input,true)); + OC_Log::write('core', 'DB execute with arguments : '.$params_str, OC_Log::DEBUG); + } + $this->lastArguments = $input; + if (count($input) > 0) { + + if (!isset($type)) { + $type = OC_Config::getValue( "dbtype", "sqlite" ); + } + + if ($type == 'mssql') { + $input = $this->tryFixSubstringLastArgumentDataForMSSQL($input); + } + + $result = $this->statement->execute($input); + } else { + $result = $this->statement->execute(); + } + + if ($result === false) { + return false; + } + if ($this->isManipulation) { + return $this->statement->rowCount(); + } else { + return $this; + } + } + + private function tryFixSubstringLastArgumentDataForMSSQL($input) { + $query = $this->statement->getWrappedStatement()->queryString; + $pos = stripos ($query, 'SUBSTRING'); + + if ( $pos === false) { + return $input; + } + + try { + $newQuery = ''; + + $cArg = 0; + + $inSubstring = false; + + // Create new query + for ($i = 0; $i < strlen ($query); $i++) { + if ($inSubstring == false) { + // Defines when we should start inserting values + if (substr ($query, $i, 9) == 'SUBSTRING') { + $inSubstring = true; + } + } else { + // Defines when we should stop inserting values + if (substr ($query, $i, 1) == ')') { + $inSubstring = false; + } + } + + if (substr ($query, $i, 1) == '?') { + // We found a question mark + if ($inSubstring) { + $newQuery .= $input[$cArg]; + + // + // Remove from input array + // + array_splice ($input, $cArg, 1); + } else { + $newQuery .= substr ($query, $i, 1); + $cArg++; + } + } else { + $newQuery .= substr ($query, $i, 1); + } + } + + // The global data we need + $name = OC_Config::getValue( "dbname", "owncloud" ); + $host = OC_Config::getValue( "dbhost", "" ); + $user = OC_Config::getValue( "dbuser", "" ); + $pass = OC_Config::getValue( "dbpassword", "" ); + if (strpos($host,':')) { + list($host, $port) = explode(':', $host, 2); + } else { + $port = false; + } + $opts = array(); + + if ($port) { + $dsn = 'sqlsrv:Server='.$host.','.$port.';Database='.$name; + } else { + $dsn = 'sqlsrv:Server='.$host.';Database='.$name; + } + + $PDO = new PDO($dsn, $user, $pass, $opts); + $PDO->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC); + $PDO->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + + $this->statement = $PDO->prepare($newQuery); + + $this->lastArguments = $input; + + return $input; + } catch (PDOException $e){ + $entry = 'PDO DB Error: "'.$e->getMessage().'"<br />'; + $entry .= 'Offending command was: '.$this->statement->queryString .'<br />'; + $entry .= 'Input parameters: ' .print_r($input, true).'<br />'; + $entry .= 'Stack trace: ' .$e->getTraceAsString().'<br />'; + OC_Log::write('core', $entry, OC_Log::FATAL); + OC_User::setUserId(null); + + // send http status 503 + header('HTTP/1.1 503 Service Temporarily Unavailable'); + header('Status: 503 Service Temporarily Unavailable'); + OC_Template::printErrorPage('Failed to connect to database'); + die ($entry); + } + } + + /** + * provide an alias for fetch + */ + public function fetchRow() { + return $this->statement->fetch(); + } + + /** + * Provide a simple fetchOne. + * fetch single column from the next row + * @param int $colnum the column number to fetch + * @return string + */ + public function fetchOne($colnum = 0) { + return $this->statement->fetchColumn($colnum); + } +} diff --git a/lib/eventsource.php b/lib/eventsource.php index 63f19792529..31d6edc1874 100644 --- a/lib/eventsource.php +++ b/lib/eventsource.php @@ -25,7 +25,7 @@ * wrapper for server side events (http://en.wikipedia.org/wiki/Server-sent_events) * includes a fallback for older browsers and IE * - * use server side events with causion, to many open requests can hang the server + * use server side events with caution, to many open requests can hang the server */ class OC_EventSource{ private $fallback; @@ -43,6 +43,7 @@ class OC_EventSource{ header("Content-Type: text/event-stream"); } if( !OC_Util::isCallRegistered()) { + $this->send('error', 'Possible CSRF attack. Connection will be closed.'); exit(); } flush(); @@ -51,10 +52,10 @@ class OC_EventSource{ /** * send a message to the client - * @param string type - * @param object data + * @param string $type + * @param object $data * - * if only one paramater is given, a typeless message will be send with that paramater as data + * if only one parameter is given, a typeless message will be send with that parameter as data */ public function send($type, $data=null) { if(is_null($data)) { diff --git a/lib/files.php b/lib/files.php index abb1617c25e..f5dffd970d2 100644 --- a/lib/files.php +++ b/lib/files.php @@ -46,6 +46,7 @@ class OC_Files { public static function get($dir, $files, $only_header = false) { $xsendfile = false; if (isset($_SERVER['MOD_X_SENDFILE_ENABLED']) || + isset($_SERVER['MOD_X_SENDFILE2_ENABLED']) || isset($_SERVER['MOD_X_ACCEL_REDIRECT_ENABLED'])) { $xsendfile = true; } @@ -170,7 +171,22 @@ class OC_Files { private static function addSendfileHeader($filename) { if (isset($_SERVER['MOD_X_SENDFILE_ENABLED'])) { header("X-Sendfile: " . $filename); + } + if (isset($_SERVER['MOD_X_SENDFILE2_ENABLED'])) { + if (isset($_SERVER['HTTP_RANGE']) && + preg_match("/^bytes=([0-9]+)-([0-9]*)$/", $_SERVER['HTTP_RANGE'], $range)) { + $filelength = filesize($filename); + if ($range[2] == "") { + $range[2] = $filelength - 1; + } + header("Content-Range: bytes $range[1]-$range[2]/" . $filelength); + header("HTTP/1.1 206 Partial content"); + header("X-Sendfile2: " . str_replace(",", "%2c", rawurlencode($filename)) . " $range[1]-$range[2]"); + } else { + header("X-Sendfile: " . $filename); + } } + if (isset($_SERVER['MOD_X_ACCEL_REDIRECT_ENABLED'])) { header("X-Accel-Redirect: " . $filename); } diff --git a/lib/files/cache/updater.php b/lib/files/cache/updater.php index 87c33a313a4..1f30173a8f8 100644 --- a/lib/files/cache/updater.php +++ b/lib/files/cache/updater.php @@ -26,7 +26,7 @@ class Updater { } /** - * preform a write update + * perform a write update * * @param string $path the relative path of the file */ @@ -46,7 +46,7 @@ class Updater { } /** - * preform a delete update + * perform a delete update * * @param string $path the relative path of the file */ diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index 3d7d5abf8fe..1bf7270c7f1 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -8,7 +8,7 @@ /** * Class for abstraction of filesystem functions - * This class won't call any filesystem functions for itself but but will pass them to the correct OC_Filestorage object + * This class won't call any filesystem functions for itself but will pass them to the correct OC_Filestorage object * this class should also handle all the file permission related stuff * * Hooks provided: @@ -717,7 +717,7 @@ class Filesystem { /** * Get the path of a file by id * - * Note that the resulting path is not guarantied to be unique for the id, multiple paths can point to the same file + * Note that the resulting path is not guaranteed to be unique for the id, multiple paths can point to the same file * * @param int $id * @return string diff --git a/lib/helper.php b/lib/helper.php index 1860a55fc8f..df0d120976d 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -636,6 +636,18 @@ class OC_Helper { * @return string */ public static function buildNotExistingFileName($path, $filename) { + $view = \OC\Files\Filesystem::getView(); + return self::buildNotExistingFileNameForView($path, $filename, $view); + } + + /** + * Adds a suffix to the name in case the file exists + * + * @param $path + * @param $filename + * @return string + */ + public static function buildNotExistingFileNameForView($path, $filename, \OC\Files\View $view) { if($path==='/') { $path=''; } @@ -648,11 +660,27 @@ class OC_Helper { } $newpath = $path . '/' . $filename; - $counter = 2; - while (\OC\Files\Filesystem::file_exists($newpath)) { - $newname = $name . ' (' . $counter . ')' . $ext; - $newpath = $path . '/' . $newname; - $counter++; + if ($view->file_exists($newpath)) { + if(preg_match_all('/\((\d+)\)/', $name, $matches, PREG_OFFSET_CAPTURE)) { + //Replace the last "(number)" with "(number+1)" + $last_match = count($matches[0])-1; + $counter = $matches[1][$last_match][0]+1; + $offset = $matches[0][$last_match][1]; + $match_length = strlen($matches[0][$last_match][0]); + } else { + $counter = 2; + $offset = false; + } + do { + if($offset) { + //Replace the last "(number)" with "(number+1)" + $newname = substr_replace($name, '('.$counter.')', $offset, $match_length); + } else { + $newname = $name . ' (' . $counter . ')'; + } + $newpath = $path . '/' . $newname . $ext; + $counter++; + } while ($view->file_exists($newpath)); } return $newpath; diff --git a/lib/hintexception.php b/lib/hintexception.php new file mode 100644 index 00000000000..3934ae2a4c2 --- /dev/null +++ b/lib/hintexception.php @@ -0,0 +1,27 @@ +<?php +/** + * Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC; + +class HintException extends \Exception { + + private $hint; + + public function __construct($message, $hint = '', $code = 0, Exception $previous = null) { + $this->hint = $hint; + parent::__construct($message, $code, $previous); + } + + public function __toString() { + return __CLASS__ . ": [{$this->code}]: {$this->message} ({$this->hint})\n"; + } + + public function getHint() { + return $this->hint; + } +} diff --git a/lib/hooks/basicemitter.php b/lib/hooks/basicemitter.php index e615a58cfe8..9ffe1af2314 100644 --- a/lib/hooks/basicemitter.php +++ b/lib/hooks/basicemitter.php @@ -13,7 +13,7 @@ abstract class BasicEmitter implements Emitter { /** * @var (callable[])[] $listeners */ - private $listeners = array(); + protected $listeners = array(); /** * @param string $scope diff --git a/lib/hooks/forwardingemitter.php b/lib/hooks/forwardingemitter.php new file mode 100644 index 00000000000..1aacc4012e0 --- /dev/null +++ b/lib/hooks/forwardingemitter.php @@ -0,0 +1,50 @@ +<?php +/** + * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Hooks; + +/** + * Class ForwardingEmitter + * + * allows forwarding all listen calls to other emitters + * + * @package OC\Hooks + */ +abstract class ForwardingEmitter extends BasicEmitter { + /** + * @var \OC\Hooks\Emitter[] array + */ + private $forwardEmitters = array(); + + /** + * @param string $scope + * @param string $method + * @param callable $callback + */ + public function listen($scope, $method, $callback) { + parent::listen($scope, $method, $callback); + foreach ($this->forwardEmitters as $emitter) { + $emitter->listen($scope, $method, $callback); + } + } + + /** + * @param \OC\Hooks\Emitter $emitter + */ + protected function forward($emitter) { + $this->forwardEmitters[] = $emitter; + + //forward all previously connected hooks + foreach ($this->listeners as $key => $listeners) { + list($scope, $method) = explode('::', $key, 2); + foreach ($listeners as $listener) { + $emitter->listen($scope, $method, $listener); + } + } + } +} 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..40a778e2126 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -5,15 +5,36 @@ "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\"", +"Offending command was: \"%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" => "نام کاربری و / یا رمزعبور اراکل معتبر نیست.", +"Offending command was: \"%s\", name: %s, password: %s" => "دستور متخلف عبارت است از: \"%s\"، نام: \"%s\"، رمزعبور:\"%s\"", +"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 325e3bfa998..867b0a37409 100644 --- a/lib/l10n/lb.php +++ b/lib/l10n/lb.php @@ -5,6 +5,7 @@ "Users" => "Benotzer", "Apps" => "Applikatiounen", "Admin" => "Admin", +"web services under your control" => "Web-Servicer ënnert denger Kontroll", "Authentication error" => "Authentifikatioun's Fehler", "Files" => "Dateien", "Text" => "SMS", 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/legacy/config.php b/lib/legacy/config.php new file mode 100644 index 00000000000..5294a48ea44 --- /dev/null +++ b/lib/legacy/config.php @@ -0,0 +1,103 @@ +<?php +/** + * ownCloud + * + * @author Frank Karlitschek + * @author Jakob Sack + * @copyright 2012 Frank Karlitschek frank@owncloud.org + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + * + */ +/* + * + * An example of config.php + * + * <?php + * $CONFIG = array( + * "database" => "mysql", + * "firstrun" => false, + * "pi" => 3.14 + * ); + * ?> + * + */ + +/** + * This class is responsible for reading and writing config.php, the very basic + * configuration file of ownCloud. + */ +OC_Config::$object = new \OC\Config(OC::$SERVERROOT.'/config/'); +class OC_Config { + + /** + * @var \OC\Config + */ + public static $object; + + /** + * @brief Lists all available config keys + * @return array with key names + * + * This function returns all keys saved in config.php. Please note that it + * does not return the values. + */ + public static function getKeys() { + return self::$object->getKeys(); + } + + /** + * @brief Gets a value from config.php + * @param string $key key + * @param string $default = null default value + * @return string the value or $default + * + * This function gets the value from config.php. If it does not exist, + * $default will be returned. + */ + public static function getValue($key, $default = null) { + return self::$object->getValue($key, $default); + } + + /** + * @brief Sets a value + * @param string $key key + * @param string $value value + * + * This function sets the value and writes the config.php. + * + */ + public static function setValue($key, $value) { + try { + self::$object->setValue($key, $value); + } catch (\OC\HintException $e) { + \OC_Template::printErrorPage($e->getMessage(), $e->getHint()); + } + } + + /** + * @brief Removes a key from the config + * @param string $key key + * + * This function removes a key from the config.php. + * + */ + public static function deleteKey($key) { + try { + self::$object->deleteKey($key); + } catch (\OC\HintException $e) { + \OC_Template::printErrorPage($e->getMessage(), $e->getHint()); + } + } +} diff --git a/lib/legacy/log.php b/lib/legacy/log.php index 7802ead2412..027cb89e97c 100644 --- a/lib/legacy/log.php +++ b/lib/legacy/log.php @@ -47,31 +47,4 @@ class OC_Log { call_user_func($func, $message, $context); } } - - //Fatal errors handler - public static function onShutdown() { - $error = error_get_last(); - if($error) { - //ob_end_clean(); - self::write('PHP', $error['message'] . ' at ' . $error['file'] . '#' . $error['line'], self::FATAL); - } else { - return true; - } - } - - // Uncaught exception handler - public static function onException($exception) { - self::write('PHP', - $exception->getMessage() . ' at ' . $exception->getFile() . '#' . $exception->getLine(), - self::FATAL); - } - - //Recoverable errors handler - public static function onError($number, $message, $file, $line) { - if (error_reporting() === 0) { - return; - } - self::write('PHP', $message . ' at ' . $file . '#' . $line, self::WARN); - - } } diff --git a/lib/legacy/updater.php b/lib/legacy/updater.php new file mode 100644 index 00000000000..eea7bb129cf --- /dev/null +++ b/lib/legacy/updater.php @@ -0,0 +1,14 @@ +<?php +/** + * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class OC_Updater { + public static function check() { + $updater = new \OC\Updater(); + return $updater->check('http://apps.owncloud.com/updater.php'); + } +} diff --git a/lib/log/errorhandler.php b/lib/log/errorhandler.php new file mode 100644 index 00000000000..69cb960de91 --- /dev/null +++ b/lib/log/errorhandler.php @@ -0,0 +1,54 @@ +<?php +/** + * Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Log; + +use OC\Log as LoggerInterface; + +class ErrorHandler { + /** @var LoggerInterface */ + private static $logger; + + public static function register() { + $handler = new ErrorHandler(); + + set_error_handler(array($handler, 'onError')); + register_shutdown_function(array($handler, 'onShutdown')); + set_exception_handler(array($handler, 'onException')); + } + + public static function setLogger(LoggerInterface $logger) { + self::$logger = $logger; + } + + //Fatal errors handler + public static function onShutdown() { + $error = error_get_last(); + if($error && self::$logger) { + //ob_end_clean(); + $msg = $error['message'] . ' at ' . $error['file'] . '#' . $error['line']; + self::$logger->critical($msg, array('app' => 'PHP')); + } + } + + // Uncaught exception handler + public static function onException($exception) { + $msg = $exception->getMessage() . ' at ' . $exception->getFile() . '#' . $exception->getLine(); + self::$logger->critical($msg, array('app' => 'PHP')); + } + + //Recoverable errors handler + public static function onError($number, $message, $file, $line) { + if (error_reporting() === 0) { + return; + } + $msg = $message . ' at ' . $file . '#' . $line; + self::$logger->warning($msg, array('app' => 'PHP')); + + } +} diff --git a/lib/memcache/apc.php b/lib/memcache/apc.php new file mode 100644 index 00000000000..575ee4427db --- /dev/null +++ b/lib/memcache/apc.php @@ -0,0 +1,67 @@ +<?php +/** + * Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Memcache; + +class APC extends Cache { + /** + * entries in APC gets namespaced to prevent collisions between owncloud instances and users + */ + protected function getNameSpace() { + return $this->prefix; + } + + public function get($key) { + $result = apc_fetch($this->getNamespace() . $key, $success); + if (!$success) { + return null; + } + return $result; + } + + public function set($key, $value, $ttl = 0) { + return apc_store($this->getNamespace() . $key, $value, $ttl); + } + + public function hasKey($key) { + return apc_exists($this->getNamespace() . $key); + } + + public function remove($key) { + return apc_delete($this->getNamespace() . $key); + } + + public function clear($prefix = '') { + $ns = $this->getNamespace() . $prefix; + $cache = apc_cache_info('user'); + foreach ($cache['cache_list'] as $entry) { + if (strpos($entry['info'], $ns) === 0) { + apc_delete($entry['info']); + } + } + return true; + } + + static public function isAvailable() { + if (!extension_loaded('apc')) { + return false; + } elseif (!ini_get('apc.enable_cli') && \OC::$CLI) { + return false; + } else { + return true; + } + } +} + +if (!function_exists('apc_exists')) { + function apc_exists($keys) { + $result = false; + apc_fetch($keys, $result); + return $result; + } +} diff --git a/lib/memcache/cache.php b/lib/memcache/cache.php new file mode 100644 index 00000000000..0ad1cc7ec03 --- /dev/null +++ b/lib/memcache/cache.php @@ -0,0 +1,77 @@ +<?php +/** + * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Memcache; + +abstract class Cache implements \ArrayAccess { + /** + * @var string $prefix + */ + protected $prefix; + + /** + * @param string $prefix + */ + public function __construct($prefix = '') { + $this->prefix = \OC_Util::getInstanceId() . '/' . $prefix; + } + + public function getPrefix() { + return $this->prefix; + } + + /** + * @param string $key + * @return mixed + */ + abstract public function get($key); + + /** + * @param string $key + * @param mixed $value + * @param int $ttl + * @return mixed + */ + abstract public function set($key, $value, $ttl = 0); + + /** + * @param string $key + * @return mixed + */ + abstract public function hasKey($key); + + /** + * @param string $key + * @return mixed + */ + abstract public function remove($key); + + /** + * @param string $prefix + * @return mixed + */ + abstract public function clear($prefix = ''); + + //implement the ArrayAccess interface + + public function offsetExists($offset) { + return $this->hasKey($offset); + } + + public function offsetSet($offset, $value) { + $this->set($offset, $value); + } + + public function offsetGet($offset) { + return $this->get($offset); + } + + public function offsetUnset($offset) { + $this->remove($offset); + } +} diff --git a/lib/memcache/factory.php b/lib/memcache/factory.php new file mode 100644 index 00000000000..b1b49971031 --- /dev/null +++ b/lib/memcache/factory.php @@ -0,0 +1,38 @@ +<?php +/** + * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Memcache; + +class Factory { + /** + * get a cache instance, will return null if no backend is available + * + * @param string $prefix + * @return \OC\Memcache\Cache + */ + function create($prefix = '') { + if (XCache::isAvailable()) { + return new XCache($prefix); + } elseif (APC::isAvailable()) { + return new APC($prefix); + } elseif (Memcached::isAvailable()) { + return new Memcached($prefix); + } else { + return null; + } + } + + /** + * check if there is a memcache backend available + * + * @return bool + */ + public function isAvailable() { + return XCache::isAvailable() || APC::isAvailable() || Memcached::isAvailable(); + } +} diff --git a/lib/memcache/memcached.php b/lib/memcache/memcached.php new file mode 100644 index 00000000000..978e6c2eff1 --- /dev/null +++ b/lib/memcache/memcached.php @@ -0,0 +1,76 @@ +<?php +/** + * Copyright (c) 2012 Bart Visscher <bartv@thisnet.nl> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Memcache; + +class Memcached extends Cache { + /** + * @var \Memcached $cache + */ + private static $cache = null; + + public function __construct($prefix = '') { + parent::__construct($prefix); + if (is_null(self::$cache)) { + self::$cache = new \Memcached(); + list($host, $port) = \OC_Config::getValue('memcached_server', array('localhost', 11211)); + self::$cache->addServer($host, $port); + } + } + + /** + * entries in XCache gets namespaced to prevent collisions between owncloud instances and users + */ + protected function getNameSpace() { + return $this->prefix; + } + + public function get($key) { + $result = self::$cache->get($this->getNamespace() . $key); + if ($result === false and self::$cache->getResultCode() == \Memcached::RES_NOTFOUND) { + return null; + } else { + return $result; + } + } + + public function set($key, $value, $ttl = 0) { + if ($ttl > 0) { + return self::$cache->set($this->getNamespace() . $key, $value, $ttl); + } else { + return self::$cache->set($this->getNamespace() . $key, $value); + } + } + + public function hasKey($key) { + self::$cache->get($this->getNamespace() . $key); + return self::$cache->getResultCode() !== \Memcached::RES_NOTFOUND; + } + + public function remove($key) { + return self::$cache->delete($this->getNamespace() . $key); + } + + public function clear($prefix = '') { + $prefix = $this->getNamespace() . $prefix; + $allKeys = self::$cache->getAllKeys(); + $keys = array(); + $prefixLength = strlen($prefix); + foreach ($allKeys as $key) { + if (substr($key, 0, $prefixLength) === $prefix) { + $keys[] = $key; + } + } + self::$cache->deleteMulti($keys); + return true; + } + + static public function isAvailable() { + return extension_loaded('memcached'); + } +} diff --git a/lib/cache/xcache.php b/lib/memcache/xcache.php index 9f380f870b9..33de30562f9 100644 --- a/lib/cache/xcache.php +++ b/lib/memcache/xcache.php @@ -6,16 +6,9 @@ * See the COPYING-README file. */ -class OC_Cache_XCache { - protected $prefix; - - public function __construct($global = false) { - $this->prefix = OC_Util::getInstanceId().'/'; - if (!$global) { - $this->prefix .= OC_User::getUser().'/'; - } - } +namespace OC\Memcache; +class XCache extends Cache { /** * entries in XCache gets namespaced to prevent collisions between owncloud instances and users */ @@ -44,13 +37,24 @@ class OC_Cache_XCache { } public function clear($prefix='') { - if(!function_exists('xcache_unset_by_prefix')) { - function xcache_unset_by_prefix($prefix) { - // Since we can't clear targetted cache, we'll clear all. :( - xcache_clear_cache(XC_TYPE_VAR, 0); - } - } xcache_unset_by_prefix($this->getNamespace().$prefix); return true; } + + static public function isAvailable(){ + if (!extension_loaded('xcache')) { + return false; + } elseif (\OC::$CLI) { + return false; + }else{ + return true; + } + } +} + +if(!function_exists('xcache_unset_by_prefix')) { + function xcache_unset_by_prefix($prefix) { + // Since we can't clear targetted cache, we'll clear all. :( + xcache_clear_cache(\XC_TYPE_VAR, 0); + } } diff --git a/lib/preferences.php b/lib/preferences.php index 5f6434bcf9c..11ca760830e 100644 --- a/lib/preferences.php +++ b/lib/preferences.php @@ -59,7 +59,7 @@ class OC_Preferences{ } /** - * @brief Get all apps of a user + * @brief Get all apps of an user * @param string $user user * @return array with app ids * diff --git a/lib/public/config.php b/lib/public/config.php index 8076d640b49..73476d7551d 100644 --- a/lib/public/config.php +++ b/lib/public/config.php @@ -49,7 +49,7 @@ class Config { * $default will be returned. */ public static function getSystemValue( $key, $default = null ) { - return(\OC_Config::getValue( $key, $default )); + return \OC_Config::getValue( $key, $default ); } /** @@ -62,7 +62,12 @@ class Config { * not be written, false will be returned. */ public static function setSystemValue( $key, $value ) { - return(\OC_Config::setValue( $key, $value )); + try { + \OC_Config::setValue( $key, $value ); + } catch (Exception $e) { + return false; + } + return true; } /** @@ -76,7 +81,7 @@ class Config { * not exist the default value will be returned */ public static function getAppValue( $app, $key, $default = null ) { - return(\OC_Appconfig::getValue( $app, $key, $default )); + return \OC_Appconfig::getValue( $app, $key, $default ); } /** @@ -89,7 +94,12 @@ class Config { * Sets a value. If the key did not exist before it will be created. */ public static function setAppValue( $app, $key, $value ) { - return(\OC_Appconfig::setValue( $app, $key, $value )); + try { + \OC_Appconfig::setValue( $app, $key, $value ); + } catch (Exception $e) { + return false; + } + return true; } /** @@ -104,7 +114,7 @@ class Config { * not exist the default value will be returned */ public static function getUserValue( $user, $app, $key, $default = null ) { - return(\OC_Preferences::getValue( $user, $app, $key, $default )); + return \OC_Preferences::getValue( $user, $app, $key, $default ); } /** @@ -119,6 +129,11 @@ class Config { * will be added automagically. */ public static function setUserValue( $user, $app, $key, $value ) { - return(\OC_Preferences::setValue( $user, $app, $key, $value )); + try { + \OC_Preferences::setValue( $user, $app, $key, $value ); + } catch (Exception $e) { + return false; + } + return true; } } diff --git a/lib/public/share.php b/lib/public/share.php index de7025d7b15..596a729a47d 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); } @@ -634,6 +657,17 @@ class Share { } $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); $query->execute(array($permissions, $item['id'])); + if ($itemType === 'file' || $itemType === 'folder') { + \OC_Hook::emit('OCP\Share', 'post_update_permissions', array( + 'itemType' => $itemType, + 'itemSource' => $itemSource, + 'shareType' => $shareType, + 'shareWith' => $shareWith, + 'uidOwner' => \OC_User::getUser(), + 'permissions' => $permissions, + 'path' => $item['path'], + )); + } // Check if permissions were removed if ($item['permissions'] & ~$permissions) { // If share permission is removed all reshares must be deleted diff --git a/lib/public/util.php b/lib/public/util.php index 6744c2d37bd..d69602f4507 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -355,6 +355,20 @@ class Util { public static function sanitizeHTML( $value ) { return(\OC_Util::sanitizeHTML($value)); } + + /** + * @brief Public function to encode url parameters + * + * This function is used to encode path to file before output. + * Encoding is done according to RFC 3986 with one exception: + * Character '/' is preserved as is. + * + * @param string $component part of URI to encode + * @return string + */ + public static function encodePath($component) { + return(\OC_Util::encodePath($component)); + } /** * @brief Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is. diff --git a/lib/setup.php b/lib/setup.php index d8f4cbfbcbd..59f4cab75de 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -1,21 +1,7 @@ <?php -class DatabaseSetupException extends Exception +class DatabaseSetupException extends \OC\HintException { - private $hint; - - public function __construct($message, $hint = '', $code = 0, Exception $previous = null) { - $this->hint = $hint; - parent::__construct($message, $code, $previous); - } - - public function __toString() { - return __CLASS__ . ": [{$this->code}]: {$this->message} ({$this->hint})\n"; - } - - public function getHint() { - return $this->hint; - } } class OC_Setup { diff --git a/lib/setup/oci.php b/lib/setup/oci.php index 577948766bd..86b53de45a4 100644 --- a/lib/setup/oci.php +++ b/lib/setup/oci.php @@ -9,8 +9,8 @@ class OCI extends AbstractDatabase { public function initialize($config) { parent::initialize($config); - if (array_key_exists('dbtablespace', $options)) { - $this->dbtablespace = $options['dbtablespace']; + if (array_key_exists('dbtablespace', $config)) { + $this->dbtablespace = $config['dbtablespace']; } else { $this->dbtablespace = 'USERS'; } @@ -31,14 +31,14 @@ class OCI extends AbstractDatabase { if(!$connection) { $e = oci_error(); if (is_array ($e) && isset ($e['message'])) { - throw new DatabaseSetupException($l->t('Oracle connection could not be established'), + throw new \DatabaseSetupException($this->trans->t('Oracle connection could not be established'), $e['message'].' Check environment: ORACLE_HOME='.getenv('ORACLE_HOME') .' ORACLE_SID='.getenv('ORACLE_SID') .' LD_LIBRARY_PATH='.getenv('LD_LIBRARY_PATH') .' NLS_LANG='.getenv('NLS_LANG') .' tnsnames.ora is '.(is_readable(getenv('ORACLE_HOME').'/network/admin/tnsnames.ora')?'':'not ').'readable'); } - throw new DatabaseSetupException($l->t('Oracle username and/or password not valid'), + throw new \DatabaseSetupException($this->trans->t('Oracle username and/or password not valid'), 'Check environment: ORACLE_HOME='.getenv('ORACLE_HOME') .' ORACLE_SID='.getenv('ORACLE_SID') .' LD_LIBRARY_PATH='.getenv('LD_LIBRARY_PATH') diff --git a/lib/updater.php b/lib/updater.php index 9081bfc4be8..df7332a96a9 100644 --- a/lib/updater.php +++ b/lib/updater.php @@ -1,56 +1,67 @@ <?php /** - * ownCloud - * - * @author Frank Karlitschek - * @copyright 2012 Frank Karlitschek frank@owncloud.org - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see <http://www.gnu.org/licenses/>. - * + * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. */ +namespace OC; +use OC\Hooks\BasicEmitter; + /** - * Class that handels autoupdating of ownCloud + * Class that handles autoupdating of ownCloud + * + * Hooks provided in scope \OC\Updater + * - maintenanceStart() + * - maintenanceEnd() + * - dbUpgrade() + * - filecacheStart() + * - filecacheProgress(int $percentage) + * - filecacheDone() + * - failure(string $message) */ -class OC_Updater{ +class Updater extends BasicEmitter { + + /** + * @var \OC\Log $log + */ + private $log; + + /** + * @param \OC\Log $log + */ + public function __construct($log = null) { + $this->log = $log; + } /** * Check if a new version is available + * @param string $updateUrl the url to check, i.e. 'http://apps.owncloud.com/updater.php' + * @return array | bool */ - public static function check() { + public function check($updaterUrl) { // Look up the cache - it is invalidated all 30 minutes - if((OC_Appconfig::getValue('core', 'lastupdatedat') + 1800) > time()) { - return json_decode(OC_Appconfig::getValue('core', 'lastupdateResult'), true); + if ((\OC_Appconfig::getValue('core', 'lastupdatedat') + 1800) > time()) { + return json_decode(\OC_Appconfig::getValue('core', 'lastupdateResult'), true); } - OC_Appconfig::setValue('core', 'lastupdatedat', time()); + \OC_Appconfig::setValue('core', 'lastupdatedat', time()); - if(OC_Appconfig::getValue('core', 'installedat', '')=='') { - OC_Appconfig::setValue('core', 'installedat', microtime(true)); + if (\OC_Appconfig::getValue('core', 'installedat', '') == '') { + \OC_Appconfig::setValue('core', 'installedat', microtime(true)); } - $updaterurl='http://apps.owncloud.com/updater.php'; - $version=OC_Util::getVersion(); - $version['installed']=OC_Appconfig::getValue('core', 'installedat'); - $version['updated']=OC_Appconfig::getValue('core', 'lastupdatedat'); - $version['updatechannel']='stable'; - $version['edition']=OC_Util::getEditionString(); - $versionstring=implode('x', $version); + $version = \OC_Util::getVersion(); + $version['installed'] = \OC_Appconfig::getValue('core', 'installedat'); + $version['updated'] = \OC_Appconfig::getValue('core', 'lastupdatedat'); + $version['updatechannel'] = 'stable'; + $version['edition'] = \OC_Util::getEditionString(); + $versionString = implode('x', $version); //fetch xml data from updater - $url=$updaterurl.'?version='.$versionstring; + $url = $updaterUrl . '?version=' . $versionString; // set a sensible timeout of 10 sec to stay responsive even if the update server is down. $ctx = stream_context_create( @@ -60,21 +71,89 @@ class OC_Updater{ ) ) ); - $xml=@file_get_contents($url, 0, $ctx); - if($xml==false) { + $xml = @file_get_contents($url, 0, $ctx); + if ($xml == false) { return array(); } - $data=@simplexml_load_string($xml); + $data = @simplexml_load_string($xml); - $tmp=array(); + $tmp = array(); $tmp['version'] = $data->version; $tmp['versionstring'] = $data->versionstring; $tmp['url'] = $data->url; $tmp['web'] = $data->web; // Cache the result - OC_Appconfig::setValue('core', 'lastupdateResult', json_encode($data)); + \OC_Appconfig::setValue('core', 'lastupdateResult', json_encode($data)); return $tmp; } -}
\ No newline at end of file + + /** + * runs the update actions in maintenance mode, does not upgrade the source files + */ + public function upgrade() { + \OC_DB::enableCaching(false); + \OC_Config::setValue('maintenance', true); + $installedVersion = \OC_Config::getValue('version', '0.0.0'); + $currentVersion = implode('.', \OC_Util::getVersion()); + if ($this->log) { + $this->log->debug('starting upgrade from ' . $installedVersion . ' to ' . $currentVersion, array('app' => 'core')); + } + $this->emit('\OC\Updater', 'maintenanceStart'); + try { + \OC_DB::updateDbFromStructure(\OC::$SERVERROOT . '/db_structure.xml'); + $this->emit('\OC\Updater', 'dbUpgrade'); + + // do a file cache upgrade for users with files + // this can take loooooooooooooooooooooooong + $this->upgradeFileCache(); + } catch (\Exception $exception) { + $this->emit('\OC\Updater', 'failure', array($exception->getMessage())); + } + \OC_Config::setValue('version', implode('.', \OC_Util::getVersion())); + \OC_App::checkAppsRequirements(); + // load all apps to also upgrade enabled apps + \OC_App::loadApps(); + \OC_Config::setValue('maintenance', false); + $this->emit('\OC\Updater', 'maintenanceEnd'); + } + + private function upgradeFileCache() { + try { + $query = \OC_DB::prepare(' + SELECT DISTINCT `user` + FROM `*PREFIX*fscache` + '); + $result = $query->execute(); + } catch (\Exception $e) { + return; + } + $users = $result->fetchAll(); + if (count($users) == 0) { + return; + } + $step = 100 / count($users); + $percentCompleted = 0; + $lastPercentCompletedOutput = 0; + $startInfoShown = false; + foreach ($users as $userRow) { + $user = $userRow['user']; + \OC\Files\Filesystem::initMountPoints($user); + \OC\Files\Cache\Upgrade::doSilentUpgrade($user); + if (!$startInfoShown) { + //We show it only now, because otherwise Info about upgraded apps + //will appear between this and progress info + $this->emit('\OC\Updater', 'filecacheStart'); + $startInfoShown = true; + } + $percentCompleted += $step; + $out = floor($percentCompleted); + if ($out != $lastPercentCompletedOutput) { + $this->emit('\OC\Updater', 'filecacheProgress', array($out)); + $lastPercentCompletedOutput = $out; + } + } + $this->emit('\OC\Updater', 'filecacheDone'); + } +} diff --git a/lib/user/session.php b/lib/user/session.php index cf93d9593af..9a6c669e935 100644 --- a/lib/user/session.php +++ b/lib/user/session.php @@ -166,8 +166,8 @@ class Session implements Emitter { unset($_COOKIE["oc_username"]); //TODO: DI unset($_COOKIE["oc_token"]); unset($_COOKIE["oc_remember_login"]); - setcookie("oc_username", null, -1); - setcookie("oc_token", null, -1); - setcookie("oc_remember_login", null, -1); + setcookie('oc_username', '', time()-3600, \OC::$WEBROOT); + setcookie('oc_token', '', time()-3600, \OC::$WEBROOT); + setcookie('oc_remember_login', '', time()-3600, \OC::$WEBROOT); } } diff --git a/lib/util.php b/lib/util.php index 4bc02daf36e..981b05b2b46 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', @@ -531,7 +539,22 @@ class OC_Util { } return $value; } - + + /** + * @brief Public function to encode url parameters + * + * This function is used to encode path to file before output. + * Encoding is done according to RFC 3986 with one exception: + * Character '/' is preserved as is. + * + * @param string $component part of URI to encode + * @return string + */ + public static function encodePath($component) { + $encoded = rawurlencode($component); + $encoded = str_replace('%2F', '/', $encoded); + return $encoded; + } /** * Check if the htaccess file is working by creating a test file in the data directory and trying to access via http diff --git a/search/css/results.css b/search/css/results.css index c6329a2c02a..2f092f3789c 100644 --- a/search/css/results.css +++ b/search/css/results.css @@ -17,6 +17,10 @@ width:26.5em; z-index:75; } + + .ie8 #searchresults { + border: 1px solid #666 !important; + } #searchresults li.resultHeader { background-color:#eee; diff --git a/settings/js/users.js b/settings/js/users.js index 9fe593214f2..5d890db65b8 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -76,7 +76,7 @@ var UserList = { ready(); } } else { - oc.dialogs.alert(result.data.message, t('settings', 'Unable to remove user')); + OC.dialogs.alert(result.data.message, t('settings', 'Unable to remove user')); } } }); diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 73eb4127749..0f23111abbb 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -97,7 +97,6 @@ "Language" => "اللغة", "Help translate" => "ساعد في الترجمه", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات", "Login Name" => "اسم الدخول", "Create" => "انشئ", "Default Storage" => "وحدة التخزين الافتراضية", diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index d5cecb60aa4..c5116af7463 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -53,7 +53,6 @@ "Language" => "ভাষা", "Help translate" => "অনুবাদ করতে সহায়তা করুন", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন", "Create" => "তৈরী কর", "Default Storage" => "পূর্বনির্ধারিত সংরক্ষণাগার", "Unlimited" => "অসীম", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 5125fa6ee6e..ca75653bf85 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -98,7 +98,7 @@ "Language" => "Idioma", "Help translate" => "Ajudeu-nos amb la traducció", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Useu aquesta adreça per connectar amb ownCloud des del gestor de fitxers", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Useu aquesta adreça per <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">accedir als fitxers via WebDAV</a>", "Login Name" => "Nom d'accés", "Create" => "Crea", "Admin Recovery Password" => "Recuperació de contrasenya d'administrador", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 24dd1964691..2c4cd545233 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -98,7 +98,7 @@ "Language" => "Jazyk", "Help translate" => "Pomoci s překladem", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Použijte <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">tuto adresu pro přístup k vašim souborům přes WebDAV</a>", "Login Name" => "Přihlašovací jméno", "Create" => "Vytvořit", "Admin Recovery Password" => "Heslo obnovy správce", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index d20ce6b1401..94312fce495 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -98,7 +98,7 @@ "Language" => "Sprog", "Help translate" => "Hjælp med oversættelsen", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Brug denne adresse til at oprette forbindelse til din ownCloud i din filstyring", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Anvend denne adresse til at <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">tilgå dine filer via WebDAV</a>", "Login Name" => "Loginnavn", "Create" => "Ny", "Admin Recovery Password" => "Administrator gendannelse kodeord", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index c8fdc253e9c..d1b5ceb888a 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -98,7 +98,7 @@ "Language" => "Sprache", "Help translate" => "Hilf bei der Übersetzung", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Verwenden Sie diese Adresse, um <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">via WebDAV auf Ihre Dateien zuzugreifen</a>", "Login Name" => "Loginname", "Create" => "Anlegen", "Admin Recovery Password" => "Admin-Wiederherstellungspasswort", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 700eda6c586..ff71cbdd0fa 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -98,10 +98,10 @@ "Language" => "Sprache", "Help translate" => "Helfen Sie bei der Übersetzung", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Verwenden Sie diese Adresse, um <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">auf ihre Dateien per WebDAV zuzugreifen</a>.", "Login Name" => "Loginname", "Create" => "Erstellen", -"Admin Recovery Password" => "Admin-Paswort-Wiederherstellung", +"Admin Recovery Password" => "Admin-Passwort-Wiederherstellung", "Enter the recovery password in order to recover the users files during password change" => "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen", "Default Storage" => "Standard-Speicher", "Unlimited" => "Unbegrenzt", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index eee768db5cf..7ef677bc746 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -98,7 +98,6 @@ "Language" => "Γλώσσα", "Help translate" => "Βοηθήστε στη μετάφραση", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας", "Login Name" => "Όνομα Σύνδεσης", "Create" => "Δημιουργία", "Admin Recovery Password" => "Κωδικός Επαναφοράς Διαχειριστή ", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index 83e03f2f5df..5ca1cea1135 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -68,7 +68,6 @@ "Language" => "Lingvo", "Help translate" => "Helpu traduki", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Uzu ĉi tiun adreson por konekti al via ownCloud vian dosieradministrilon", "Create" => "Krei", "Default Storage" => "Defaŭlta konservejo", "Unlimited" => "Senlima", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 9d6a2bedae9..786266f5630 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -98,7 +98,7 @@ "Language" => "Idioma", "Help translate" => "Ayúdnos a traducir", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Use esta dirección para conectarse a su cuenta de ownCloud en el administrador de archivos", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilice esta dirección para<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">acceder a sus archivos a través de WebDAV</a>", "Login Name" => "Nombre de usuario", "Create" => "Crear", "Admin Recovery Password" => "Recuperación de la contraseña de administración", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 9f147f8f2d8..78c0c9ecbed 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -98,7 +98,7 @@ "Language" => "Idioma", "Help translate" => "Ayudanos a traducir", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Usá esta dirección para conectarte con ownCloud en tu Administrador de Archivos", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Usá esta dirección para <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">acceder a tus archivos a través de WebDAV</a>", "Login Name" => "Nombre de Usuario", "Create" => "Crear", "Admin Recovery Password" => "Recuperación de contraseña de administrador", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 68cee88cf2e..30d0956a7e9 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -98,7 +98,7 @@ "Language" => "Keel", "Help translate" => "Aita tõlkida", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Kasuta seda aadressi ühendamaks oma ownCloudi failihalduriga", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Kasuta seda aadressi <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">oma failidele ligipääsuks WebDAV kaudu</a>", "Login Name" => "Kasutajanimi", "Create" => "Lisa", "Admin Recovery Password" => "Admin taasteparool", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index f02ce9d37db..4cf22c06a98 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -98,7 +98,6 @@ "Language" => "Hizkuntza", "Help translate" => "Lagundu itzultzen", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko", "Login Name" => "Sarrera Izena", "Create" => "Sortu", "Admin Recovery Password" => "Kudeatzaile pasahitz berreskuratzea", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index e0090996f2a..a8a5e338241 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,10 +43,14 @@ "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 می خواهید ما پیشنهاد می کنیم تا ارتباط اینترنتی مربوط به این سرور را فعال کنید.", +"Cron" => "زمانبند", "Execute one task with each page loaded" => "اجرای یک وظیفه با هر بار بارگذاری صفحه", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php در یک سرویس webcron ثبت شده است. تماس یک بار در دقیقه بر روی http با صفحه cron.php در ریشه owncloud .", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "استفاده از سیستم های سرویس cron . تماس یک بار در دقیقه با فایل cron.php در پوشه owncloud از طریق یک سیستم cronjob .", "Sharing" => "اشتراک گذاری", "Enable Share API" => "فعال کردن API اشتراک گذاری", "Allow apps to use the Share API" => "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری", @@ -58,7 +63,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" => "نسخه", @@ -90,9 +97,12 @@ "Fill in an email address to enable password recovery" => "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود", "Language" => "زبان", "Help translate" => "به ترجمه آن کمک کنید", -"Use this address to connect to your ownCloud in your file manager" => "از این نشانی برای اتصال به ownCloud خودتان در بخش مدیریت فایل خودتان استفاده کنید", +"WebDAV" => "WebDAV", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "استفاده ابن آدرس <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\"> برای دسترسی فایل های شما از طریق WebDAV </a>", "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/fi_FI.php b/settings/l10n/fi_FI.php index 80ce2a70764..282e619009a 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -32,7 +32,9 @@ "Group Admin" => "Ryhmän ylläpitäjä", "Delete" => "Poista", "add group" => "lisää ryhmä", +"A valid username must be provided" => "Anna kelvollinen käyttäjätunnus", "Error creating user" => "Virhe käyttäjää luotaessa", +"A valid password must be provided" => "Anna kelvollinen salasana", "__language_name__" => "_kielen_nimi_", "Security Warning" => "Turvallisuusvaroitus", "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." => "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.", @@ -70,6 +72,7 @@ "Forum" => "Keskustelupalsta", "Bugtracker" => "Ohjelmistovirheiden jäljitys", "Commercial Support" => "Kaupallinen tuki", +"Get the apps to sync your files" => "Aseta sovellukset synkronoimaan tiedostosi", "Show First Run Wizard again" => "Näytä ensimmäisen käyttökerran avustaja uudelleen", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Käytössäsi on <strong>%s</strong>/<strong>%s</strong>", "Password" => "Salasana", @@ -85,7 +88,7 @@ "Language" => "Kieli", "Help translate" => "Auta kääntämisessä", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Käytä tätä osoitetta yhdistäessäsi ownCloudiisi tiedostonhallintaa käyttäen", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Käytä tätä osoitetta <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">päästäksesi käsiksi tiedostoihisi WebDAVin kautta</a>", "Login Name" => "Kirjautumisnimi", "Create" => "Luo", "Default Storage" => "Oletustallennustila", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index fde0806aabb..3dd89edb90f 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -98,7 +98,7 @@ "Language" => "Langue", "Help translate" => "Aidez à traduire", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Utiliser cette adresse pour vous connecter à ownCloud dans votre gestionnaire de fichiers", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilisez cette adresse pour <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">accéder à vos fichiers via WebDAV</a>", "Login Name" => "Nom de la connexion", "Create" => "Créer", "Admin Recovery Password" => "Récupération du mot de passe administrateur", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 0d12e272f4a..16b10158c8c 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -98,7 +98,7 @@ "Language" => "Idioma", "Help translate" => "Axude na tradución", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Empregue esta ligazón <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">para acceder aos sus ficheiros mediante WebDAV</a>", "Login Name" => "Nome de acceso", "Create" => "Crear", "Admin Recovery Password" => "Contrasinal de recuperación do administrador", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 212bf1ed673..077bc9e97f9 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -90,7 +90,6 @@ "Language" => "פה", "Help translate" => "עזרה בתרגום", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "השתמש בכתובת זאת על מנת להתחבר אל ownCloud דרך סייר קבצים.", "Login Name" => "שם כניסה", "Create" => "יצירה", "Admin Recovery Password" => "ססמת השחזור של המנהל", 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/hu_HU.php b/settings/l10n/hu_HU.php index 57482afefc1..dba63166ef8 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -98,7 +98,7 @@ "Language" => "Nyelv", "Help translate" => "Segítsen a fordításban!", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "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.", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Ezt a címet használja, ha <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">WebDAV-on keresztül szeretné elérni az állományait</a>", "Login Name" => "Bejelentkezési név", "Create" => "Létrehozás", "Admin Recovery Password" => "A jelszóvisszaállítás adminisztrációja", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index f2e41221a9f..012f5885b42 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -97,7 +97,6 @@ "Language" => "Bahasa", "Help translate" => "Bantu menerjemahkan", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Gunakan alamat ini untuk terhubung ke ownCloud Anda pada manajer berkas ", "Login Name" => "Nama Masuk", "Create" => "Buat", "Default Storage" => "Penyimpanan Baku", diff --git a/settings/l10n/is.php b/settings/l10n/is.php index aa3df8c3c43..fecc82ec6d7 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -58,7 +58,6 @@ "Language" => "Tungumál", "Help translate" => "Hjálpa við þýðingu", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Notaðu þessa vefslóð til að tengjast ownCloud svæðinu þínu", "Create" => "Búa til", "Default Storage" => "Sjálfgefin gagnageymsla", "Unlimited" => "Ótakmarkað", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 85e78f5a21d..e95adbf3c71 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -98,7 +98,7 @@ "Language" => "Lingua", "Help translate" => "Migliora la traduzione", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilizza questo indirizzo per <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">accedere ai tuoi file via WebDAV</a>", "Login Name" => "Nome utente", "Create" => "Crea", "Admin Recovery Password" => "Password di ripristino amministrativa", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 1b2562261d6..2ec69194925 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -98,7 +98,7 @@ "Language" => "言語", "Help translate" => "翻訳に協力する", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "ファイルマネージャでownCloudに接続する際はこのアドレスを利用してください", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">WebDAV経由でファイルにアクセス</a>するにはこのアドレスを利用してください", "Login Name" => "ログイン名", "Create" => "作成", "Admin Recovery Password" => "管理者復旧パスワード", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 812ad46bd7c..302745052cc 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -98,7 +98,6 @@ "Language" => "ენა", "Help translate" => "თარგმნის დახმარება", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში", "Login Name" => "მომხმარებლის სახელი", "Create" => "შექმნა", "Default Storage" => "საწყისი საცავი", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index de837677eba..230a2185bfb 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -98,7 +98,6 @@ "Language" => "언어", "Help translate" => "번역 돕기", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오", "Login Name" => "로그인 이름", "Create" => "만들기", "Admin Recovery Password" => "관리자 복구 암호", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index eb628a530eb..1e54dcb6926 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -1,32 +1,57 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Neįmanoma įkelti sąrašo iš Programų Katalogo", "Authentication error" => "Autentikacijos klaida", +"Group already exists" => "Grupė jau egzistuoja", +"Unable to add group" => "Nepavyko pridėti grupės", "Could not enable app. " => "Nepavyksta įjungti aplikacijos.", "Email saved" => "El. paštas išsaugotas", "Invalid email" => "Netinkamas el. paštas", +"Unable to delete group" => "Nepavyko ištrinti grupės", +"Unable to delete user" => "Nepavyko ištrinti vartotojo", "Language changed" => "Kalba pakeista", "Invalid request" => "Klaidinga užklausa", +"Unable to add user to group %s" => "Nepavyko pridėti vartotojo prie grupės %s", +"Unable to remove user from group %s" => "Nepavyko ištrinti vartotojo iš grupės %s", +"Couldn't update app." => "Nepavyko atnaujinti programos.", +"Update to {appversion}" => "Atnaujinti iki {appversion}", "Disable" => "Išjungti", "Enable" => "Įjungti", +"Please wait...." => "Prašome palaukti...", "Error" => "Klaida", +"Updating...." => "Atnaujinama...", +"Error while updating app" => "Įvyko klaida atnaujinant programą", +"Updated" => "Atnaujinta", "Saving..." => "Saugoma...", +"deleted" => "ištrinta", "undo" => "anuliuoti", +"Unable to remove user" => "Nepavyko ištrinti vartotojo", "Groups" => "Grupės", "Delete" => "Ištrinti", +"add group" => "pridėti grupę", +"A valid username must be provided" => "Vartotojo vardas turi būti tinkamas", +"Error creating user" => "Klaida kuriant vartotoją", +"A valid password must be provided" => "Slaptažodis turi būti tinkamas", "__language_name__" => "Kalba", "Security Warning" => "Saugumo pranešimas", "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." => "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.", +"Module 'fileinfo' missing" => "Trūksta 'fileinfo' modulio", "Cron" => "Cron", "Sharing" => "Dalijimasis", +"Allow links" => "Lesti nuorodas", +"Allow resharing" => "Leisti dalintis", +"Security" => "Saugumas", "Log" => "Žurnalas", "Log level" => "Žurnalo išsamumas", "More" => "Daugiau", "Less" => "Mažiau", +"Version" => "Versija", "Add your App" => "Pridėti programėlę", "More Apps" => "Daugiau aplikacijų", "Select an App" => "Pasirinkite programą", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>- autorius<span class=\"author\"></span>", "Update" => "Atnaujinti", +"Forum" => "Forumas", +"Bugtracker" => "Klaidų sekimas", "Get the apps to sync your files" => "Atsisiųskite programėlių, kad sinchronizuotumėte savo failus", "Password" => "Slaptažodis", "Your password was changed" => "Jūsų slaptažodis buvo pakeistas", @@ -39,7 +64,12 @@ "Fill in an email address to enable password recovery" => "Pamiršto slaptažodžio atkūrimui įveskite savo el. pašto adresą", "Language" => "Kalba", "Help translate" => "Padėkite išversti", +"WebDAV" => "WebDAV", +"Login Name" => "Vartotojo vardas", "Create" => "Sukurti", +"Unlimited" => "Neribota", "Other" => "Kita", -"Username" => "Prisijungimo vardas" +"Username" => "Prisijungimo vardas", +"set new password" => "nustatyti naują slaptažodį", +"Default" => "Numatytasis" ); diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index ae2a3b28385..b9836634a03 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -97,7 +97,6 @@ "Language" => "Valoda", "Help translate" => "Palīdzi tulkot", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Izmanto šo adresi, lai, izmantojot datņu pārvaldnieku, savienotos ar savu ownCloud", "Login Name" => "Ierakstīšanās vārds", "Create" => "Izveidot", "Default Storage" => "Noklusējuma krātuve", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index f42e5b07de2..f36bb8c7fce 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -54,7 +54,6 @@ "Language" => "Јазик", "Help translate" => "Помогни во преводот", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Користете ја оваа адреса да ", "Create" => "Создај", "Other" => "Останато", "Username" => "Корисничко име" diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 8b1c577e885..408b8570fd2 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -98,7 +98,7 @@ "Language" => "Språk", "Help translate" => "Bidra til oversettelsen", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Bruk denne adressen for å kople til ownCloud i din filbehandler", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Bruk denne adressen for å <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">få tilgang til filene dine via WebDAV</a>", "Login Name" => "Logginn navn", "Create" => "Opprett", "Default Storage" => "Standard lager", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 40220cbbd2e..d51d1d3af5c 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -98,7 +98,6 @@ "Language" => "Taal", "Help translate" => "Help met vertalen", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Gebruik dit adres om te verbinden met uw ownCloud in uw bestandsbeheer", "Login Name" => "Inlognaam", "Create" => "Creëer", "Admin Recovery Password" => "Beheer herstel wachtwoord", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 4ec8d51db68..642f5230061 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -98,7 +98,6 @@ "Language" => "Språk", "Help translate" => "Hjelp oss å omsetja", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Bruk denne adressa for å kopla til din ownCloud frå filhandsamaren din", "Login Name" => "Innloggingsnamn", "Create" => "Lag", "Default Storage" => "Standardlagring", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 4fea6b68ca9..d5f4f5a155e 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -98,7 +98,6 @@ "Language" => "Język", "Help translate" => "Pomóż w tłumaczeniu", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików", "Login Name" => "Login", "Create" => "Utwórz", "Admin Recovery Password" => "Odzyskiwanie hasła administratora", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 48cc6200b3b..b33aa5ba50c 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -98,7 +98,7 @@ "Language" => "Idioma", "Help translate" => "Ajude a traduzir", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Usar este endereço para conectar-se ao seu ownCloud no seu gerenciador de arquivos", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Use esse endereço para <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">acessar seus arquivos via WebDAV</a>", "Login Name" => "Nome de Login", "Create" => "Criar", "Admin Recovery Password" => "Recuperação da Senha do Administrador", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 7a54ca74ba7..259b3032744 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -98,7 +98,7 @@ "Language" => "Idioma", "Help translate" => "Ajude a traduzir", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Use este endereço no seu gestor de ficheiros para ligar à sua ownCloud", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Use este endereço para <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">aceder aos seus ficheiros via WebDav</a>", "Login Name" => "Nome de utilizador", "Create" => "Criar", "Admin Recovery Password" => "Recuperar password de administrador", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 48f18070f3f..5fced879701 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", @@ -70,7 +93,6 @@ "Language" => "Limba", "Help translate" => "Ajută la traducere", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Folosește această adresă pentru a conecta ownCloud cu managerul de fișiere", "Create" => "Crează", "Default Storage" => "Stocare implicită", "Unlimited" => "Nelimitată", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index a179e3115a5..ed6d2075618 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -98,7 +98,7 @@ "Language" => "Язык", "Help translate" => "Помочь с переводом", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Используйте этот адрес для подключения файлового менеджера к этому хранилищу", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Используйте этот адрес чтобы получить доступ к вашим файлам через WebDav - <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">", "Login Name" => "Имя пользователя", "Create" => "Создать", "Admin Recovery Password" => "Восстановление Пароля Администратора", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 9164cbd9b0a..952df66d399 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -98,7 +98,7 @@ "Language" => "Jazyk", "Help translate" => "Pomôcť s prekladom", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Použite túto adresu pre pripojenie vášho ownCloud k súborovému správcovi", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Použite túto adresu <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">pre prístup k súborom cez WebDAV</a>", "Login Name" => "Prihlasovacie meno", "Create" => "Vytvoriť", "Admin Recovery Password" => "Obnovenie hesla administrátora", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 63fb86485c9..f9b6942b97e 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -98,7 +98,6 @@ "Language" => "Jezik", "Help translate" => "Sodelujte pri prevajanju", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Ta naslov uporabite za povezavo upravljalnika datotek z oblakom ownCloud.", "Login Name" => "Prijavno ime", "Create" => "Ustvari", "Admin Recovery Password" => "Obnovitev administratorjevega gesla", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 2b95ddcad43..1d1bcdddf5f 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -91,7 +91,6 @@ "Language" => "Језик", "Help translate" => " Помозите у превођењу", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Користите ову адресу да се повежете са ownCloud-ом у управљачу датотекама", "Login Name" => "Корисничко име", "Create" => "Направи", "Default Storage" => "Подразумевано складиште", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 8773fe0dc1d..7a9f341e4dd 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -98,7 +98,7 @@ "Language" => "Språk", "Help translate" => "Hjälp att översätta", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Använd denna adress för att ansluta till ownCloud i din filhanterare", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Använd denna adress för att <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">komma åt dina filer via WebDAV</a>", "Login Name" => "Inloggningsnamn", "Create" => "Skapa", "Admin Recovery Password" => "Admin återställningslösenord", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 7221cd73482..9725df23c24 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -77,7 +77,6 @@ "Language" => "ภาษา", "Help translate" => "ช่วยกันแปล", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "ใช้ที่อยู่นี้เพื่อเชื่อมต่อกับ ownCloud ในโปรแกรมจัดการไฟล์ของคุณ", "Login Name" => "ชื่อที่ใช้สำหรับเข้าสู่ระบบ", "Create" => "สร้าง", "Default Storage" => "พื้นที่จำกัดข้อมูลเริ่มต้น", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index ef7b797ef60..30b637ab94d 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -98,7 +98,6 @@ "Language" => "Dil", "Help translate" => "Çevirilere yardım edin", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Bu adresi kullanarak ownCloud 'unuza dosya yöneticinizde bağlanın", "Login Name" => "Giriş Adı", "Create" => "Oluştur", "Admin Recovery Password" => "Yönetici kurtarma parolası", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 1de01ec6a0d..8b567f3995a 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -97,7 +97,6 @@ "Language" => "Мова", "Help translate" => "Допомогти з перекладом", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Використовуйте цю адресу для під'єднання до вашого ownCloud у вашому файловому менеджері", "Login Name" => "Ім'я Логіну", "Create" => "Створити", "Default Storage" => "сховище за замовчуванням", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 7eb5df0edf1..4768e9b243e 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -78,7 +78,6 @@ "Language" => "Ngôn ngữ", "Help translate" => "Hỗ trợ dịch thuật", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "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", "Login Name" => "Tên đăng nhập", "Create" => "Tạo", "Default Storage" => "Bộ nhớ mặc định", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 0457de48a22..789c93de23b 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -46,6 +46,7 @@ "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." => "服务器没有可用的Internet连接。这意味着像挂载外部储存、更新提示和安装第三方插件等功能会失效。远程访问文件和发送邮件提醒也可能会失效。建议开启服务器的英特网网络。", "Cron" => "Cron", "Execute one task with each page loaded" => "在每个页面载入时执行一项任务", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。", @@ -62,7 +63,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访问本站以设置强制SSL的开关。", "Log" => "日志", +"Log level" => "日志等级", "More" => "更多", "Less" => "更少", "Version" => "版本", @@ -95,9 +98,11 @@ "Language" => "语言", "Help translate" => "帮助翻译", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "使用此地址来在您的文件管理器中连接您的ownCloud", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "访问WebDAV请点击 <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">此处</a>", "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/zh_CN.php b/settings/l10n/zh_CN.php index 9156c9e2700..7a11845404f 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -98,7 +98,6 @@ "Language" => "语言", "Help translate" => "帮助翻译", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "用该地址来连接文件管理器中的 ownCloud", "Login Name" => "登录名称", "Create" => "创建", "Admin Recovery Password" => "管理恢复密码", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 0d3ff7414bb..74040fcfa2d 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -98,10 +98,11 @@ "Language" => "語言", "Help translate" => "幫助翻譯", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "在您的檔案管理員中使用這個地址來連線到 ownCloud", +"Use this address to <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "使用<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">這個網址</a>來透過 WebDAV 存取您的檔案", "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/templates/personal.php b/settings/templates/personal.php index d4396407525..ee5ebae708f 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -96,7 +96,7 @@ if($_['passwordChangeSupported']) { <?php endforeach;?> </select> <?php if (OC_Util::getEditionString() === ''): ?> - <a href="https://www.transifex.net/projects/p/owncloud/team/<?php p($_['activelanguage']['code']);?>/" + <a href="https://www.transifex.com/projects/p/owncloud/team/<?php p($_['activelanguage']['code']);?>/" target="_blank"><em><?php p($l->t('Help translate'));?></em></a> <?php endif; ?> </fieldset> @@ -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/cache/apc.php b/tests/lib/cache/apc.php deleted file mode 100644 index bb5eb483dbf..00000000000 --- a/tests/lib/cache/apc.php +++ /dev/null @@ -1,35 +0,0 @@ -<?php -/** -* ownCloud -* -* @author Robin Appelman -* @copyright 2012 Robin Appelman icewind@owncloud.com -* -* This library is free software; you can redistribute it and/or -* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE -* License as published by the Free Software Foundation; either -* version 3 of the License, or any later version. -* -* This library is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU AFFERO GENERAL PUBLIC LICENSE for more details. -* -* You should have received a copy of the GNU Affero General Public -* License along with this library. If not, see <http://www.gnu.org/licenses/>. -* -*/ - -class Test_Cache_APC extends Test_Cache { - public function setUp() { - if(!extension_loaded('apc')) { - $this->markTestSkipped('The apc extension is not available.'); - return; - } - if(!ini_get('apc.enable_cli') && OC::$CLI) { - $this->markTestSkipped('apc not available in CLI.'); - return; - } - $this->instance=new OC_Cache_APC(); - } -} diff --git a/tests/lib/cache/xcache.php b/tests/lib/cache/xcache.php deleted file mode 100644 index 43bed2db037..00000000000 --- a/tests/lib/cache/xcache.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php -/** -* ownCloud -* -* @author Robin Appelman -* @copyright 2012 Robin Appelman icewind@owncloud.com -* -* This library is free software; you can redistribute it and/or -* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE -* License as published by the Free Software Foundation; either -* version 3 of the License, or any later version. -* -* This library is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU AFFERO GENERAL PUBLIC LICENSE for more details. -* -* You should have received a copy of the GNU Affero General Public -* License along with this library. If not, see <http://www.gnu.org/licenses/>. -* -*/ - -class Test_Cache_XCache extends Test_Cache { - public function setUp() { - if(!function_exists('xcache_get')) { - $this->markTestSkipped('The xcache extension is not available.'); - return; - } - $this->instance=new OC_Cache_XCache(); - } -} diff --git a/tests/lib/config.php b/tests/lib/config.php new file mode 100644 index 00000000000..c67a66c832e --- /dev/null +++ b/tests/lib/config.php @@ -0,0 +1,85 @@ +<?php +/** + * Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Config extends PHPUnit_Framework_TestCase { + const CONFIG_FILE = 'static://config.php'; + const CONFIG_DIR = 'static://'; + const TESTCONTENT = '<?php $CONFIG=array("foo"=>"bar");'; + + /** + * @var \OC\Config + */ + private $config; + + function setUp() { + file_put_contents(self::CONFIG_FILE, self::TESTCONTENT); + $this->config = new OC\Config(self::CONFIG_DIR); + } + + public function testReadData() { + $config = new OC\Config('/non-existing'); + $this->assertAttributeEquals(array(), 'cache', $config); + + $this->assertAttributeEquals(array('foo' => 'bar'), 'cache', $this->config); + } + + public function testGetKeys() { + $this->assertEquals(array('foo'), $this->config->getKeys()); + } + + public function testGetValue() { + $this->assertEquals('bar', $this->config->getValue('foo')); + $this->assertEquals(null, $this->config->getValue('bar')); + $this->assertEquals('moo', $this->config->getValue('bar', 'moo')); + } + + public function testSetValue() { + $this->config->setDebugMode(false); + $this->config->setValue('foo', 'moo'); + $this->assertAttributeEquals(array('foo' => 'moo'), 'cache', $this->config); + $content = file_get_contents(self::CONFIG_FILE); + + $expected = "<?php\n\$CONFIG = array (\n 'foo' => 'moo',\n);\n"; + $this->assertEquals($expected, $content); + $this->config->setValue('bar', 'red'); + $this->assertAttributeEquals(array('foo' => 'moo', 'bar' => 'red'), 'cache', $this->config); + $content = file_get_contents(self::CONFIG_FILE); + + $expected = "<?php\n\$CONFIG = array (\n 'foo' => 'moo',\n 'bar' => 'red',\n);\n"; + $this->assertEquals($expected, $content); + } + + public function testDeleteKey() { + $this->config->setDebugMode(false); + $this->config->deleteKey('foo'); + $this->assertAttributeEquals(array(), 'cache', $this->config); + $content = file_get_contents(self::CONFIG_FILE); + + $expected = "<?php\n\$CONFIG = array (\n);\n"; + $this->assertEquals($expected, $content); + } + + public function testSavingDebugMode() { + $this->config->setDebugMode(true); + $this->config->deleteKey('foo'); // change something so we save to the config file + $this->assertAttributeEquals(array(), 'cache', $this->config); + $this->assertAttributeEquals(true, 'debugMode', $this->config); + $content = file_get_contents(self::CONFIG_FILE); + + $expected = "<?php\ndefine('DEBUG',true);\n\$CONFIG = array (\n);\n"; + $this->assertEquals($expected, $content); + } + + /** + * @expectedException \OC\HintException + */ + public function testWriteData() { + $config = new OC\Config('/non-writable'); + $config->setValue('foo', 'bar'); + } +} diff --git a/tests/lib/db.php b/tests/lib/db.php index 0ba7d5d4b06..e817a2db5ed 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -37,10 +37,10 @@ class Test_DB extends PHPUnit_Framework_TestCase { $result = $query->execute(array('uri_1')); $this->assertTrue((bool)$result); $row = $result->fetchRow(); - $this->assertFalse((bool)$row); //PDO returns false, MDB2 returns null + $this->assertFalse($row); $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, count($result->fetchAll())); } 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']); diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index 830913a91ad..3bac9e770aa 100644 --- a/tests/lib/files/view.php +++ b/tests/lib/files/view.php @@ -20,10 +20,19 @@ class View extends \PHPUnit_Framework_TestCase { private $storages = array(); public function setUp() { + \OC_User::clearBackends(); + \OC_User::useBackend(new \OC_User_Dummy()); + + //login + \OC_User::createUser('test', 'test'); + $this->user=\OC_User::getUser(); + \OC_User::setUserId('test'); + \OC\Files\Filesystem::clearMounts(); } public function tearDown() { + \OC_User::setUserId($this->user); foreach ($this->storages as $storage) { $cache = $storage->getCache(); $ids = $cache->getAll(); diff --git a/tests/lib/helper.php b/tests/lib/helper.php index 6acb0dfaa6b..67b5a3d43ec 100644 --- a/tests/lib/helper.php +++ b/tests/lib/helper.php @@ -146,4 +146,64 @@ class Test_Helper extends PHPUnit_Framework_TestCase { $result = OC_Helper::recursiveArraySearch($haystack, "NotFound"); $this->assertFalse($result); } + + function testBuildNotExistingFileNameForView() { + $viewMock = $this->getMock('\OC\Files\View', array(), array(), '', false); + $this->assertEquals('/filename', OC_Helper::buildNotExistingFileNameForView('/', 'filename', $viewMock)); + $this->assertEquals('dir/filename.ext', OC_Helper::buildNotExistingFileNameForView('dir', 'filename.ext', $viewMock)); + + $viewMock->expects($this->at(0)) + ->method('file_exists') + ->will($this->returnValue(true)); // filename.ext exists + $this->assertEquals('dir/filename (2).ext', OC_Helper::buildNotExistingFileNameForView('dir', 'filename.ext', $viewMock)); + + $viewMock->expects($this->at(0)) + ->method('file_exists') + ->will($this->returnValue(true)); // filename.ext exists + $viewMock->expects($this->at(1)) + ->method('file_exists') + ->will($this->returnValue(true)); // filename (2).ext exists + $this->assertEquals('dir/filename (3).ext', OC_Helper::buildNotExistingFileNameForView('dir', 'filename.ext', $viewMock)); + + $viewMock->expects($this->at(0)) + ->method('file_exists') + ->will($this->returnValue(true)); // filename (1).ext exists + $this->assertEquals('dir/filename (2).ext', OC_Helper::buildNotExistingFileNameForView('dir', 'filename (1).ext', $viewMock)); + + $viewMock->expects($this->at(0)) + ->method('file_exists') + ->will($this->returnValue(true)); // filename (2).ext exists + $this->assertEquals('dir/filename (3).ext', OC_Helper::buildNotExistingFileNameForView('dir', 'filename (2).ext', $viewMock)); + + $viewMock->expects($this->at(0)) + ->method('file_exists') + ->will($this->returnValue(true)); // filename (2).ext exists + $viewMock->expects($this->at(1)) + ->method('file_exists') + ->will($this->returnValue(true)); // filename (3).ext exists + $this->assertEquals('dir/filename (4).ext', OC_Helper::buildNotExistingFileNameForView('dir', 'filename (2).ext', $viewMock)); + + $viewMock->expects($this->at(0)) + ->method('file_exists') + ->will($this->returnValue(true)); // filename(1).ext exists + $this->assertEquals('dir/filename(2).ext', OC_Helper::buildNotExistingFileNameForView('dir', 'filename(1).ext', $viewMock)); + + $viewMock->expects($this->at(0)) + ->method('file_exists') + ->will($this->returnValue(true)); // filename(1) (1).ext exists + $this->assertEquals('dir/filename(1) (2).ext', OC_Helper::buildNotExistingFileNameForView('dir', 'filename(1) (1).ext', $viewMock)); + + $viewMock->expects($this->at(0)) + ->method('file_exists') + ->will($this->returnValue(true)); // filename(1) (1).ext exists + $viewMock->expects($this->at(1)) + ->method('file_exists') + ->will($this->returnValue(true)); // filename(1) (2).ext exists + $this->assertEquals('dir/filename(1) (3).ext', OC_Helper::buildNotExistingFileNameForView('dir', 'filename(1) (1).ext', $viewMock)); + + $viewMock->expects($this->at(0)) + ->method('file_exists') + ->will($this->returnValue(true)); // filename(1) (2) (3).ext exists + $this->assertEquals('dir/filename(1) (2) (4).ext', OC_Helper::buildNotExistingFileNameForView('dir', 'filename(1) (2) (3).ext', $viewMock)); + } } diff --git a/tests/lib/hooks/forwardingemitter.php b/tests/lib/hooks/forwardingemitter.php new file mode 100644 index 00000000000..decf6bb354c --- /dev/null +++ b/tests/lib/hooks/forwardingemitter.php @@ -0,0 +1,74 @@ +<?php +/** + * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Hooks; +use OC\Hooks\PublicEmitter; + +class DummyForwardingEmitter extends \OC\Hooks\ForwardingEmitter { + public function emitEvent($scope, $method, $arguments = array()) { + $this->emit($scope, $method, $arguments); + } + + /** + * @param \OC\Hooks\Emitter $emitter + */ + public function forward($emitter) { + parent::forward($emitter); + } +} + +/** + * Class ForwardingEmitter + * + * allows forwarding all listen calls to other emitters + * + * @package OC\Hooks + */ +class ForwardingEmitter extends BasicEmitter { + public function testSingleForward() { + $baseEmitter = new PublicEmitter(); + $forwardingEmitter = new DummyForwardingEmitter(); + $forwardingEmitter->forward($baseEmitter); + $hookCalled = false; + $forwardingEmitter->listen('Test', 'test', function () use (&$hookCalled) { + $hookCalled = true; + }); + $baseEmitter->emit('Test', 'test'); + $this->assertTrue($hookCalled); + } + + public function testMultipleForwards() { + $baseEmitter1 = new PublicEmitter(); + $baseEmitter2 = new PublicEmitter(); + $forwardingEmitter = new DummyForwardingEmitter(); + $forwardingEmitter->forward($baseEmitter1); + $forwardingEmitter->forward($baseEmitter2); + $hookCalled = 0; + $forwardingEmitter->listen('Test', 'test1', function () use (&$hookCalled) { + $hookCalled++; + }); + $forwardingEmitter->listen('Test', 'test2', function () use (&$hookCalled) { + $hookCalled++; + }); + $baseEmitter1->emit('Test', 'test1'); + $baseEmitter1->emit('Test', 'test2'); + $this->assertEquals(2, $hookCalled); + } + + public function testForwardExistingHooks() { + $baseEmitter = new PublicEmitter(); + $forwardingEmitter = new DummyForwardingEmitter(); + $hookCalled = false; + $forwardingEmitter->listen('Test', 'test', function () use (&$hookCalled) { + $hookCalled = true; + }); + $forwardingEmitter->forward($baseEmitter); + $baseEmitter->emit('Test', 'test'); + $this->assertTrue($hookCalled); + } +} diff --git a/tests/lib/memcache/apc.php b/tests/lib/memcache/apc.php new file mode 100644 index 00000000000..6b2a49470ba --- /dev/null +++ b/tests/lib/memcache/apc.php @@ -0,0 +1,20 @@ +<?php + +/** + * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Memcache; + +class APC extends Cache { + public function setUp() { + if(!\OC\Memcache\APC::isAvailable()) { + $this->markTestSkipped('The apc extension is not available.'); + return; + } + $this->instance=new \OC\Memcache\APC(uniqid()); + } +} diff --git a/tests/lib/memcache/cache.php b/tests/lib/memcache/cache.php new file mode 100644 index 00000000000..d07c492cef0 --- /dev/null +++ b/tests/lib/memcache/cache.php @@ -0,0 +1,58 @@ +<?php + +/** + * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Memcache; + +abstract class Cache extends \Test_Cache { + public function testExistsAfterSet() { + $this->assertFalse($this->instance->hasKey('foo')); + $this->instance->set('foo', 'bar'); + $this->assertTrue($this->instance->hasKey('foo')); + } + + public function testGetAfterSet() { + $this->assertNull($this->instance->get('foo')); + $this->instance->set('foo', 'bar'); + $this->assertEquals('bar', $this->instance->get('foo')); + } + + public function testDoesNotExistAfterRemove() { + $this->instance->set('foo', 'bar'); + $this->instance->remove('foo'); + $this->assertFalse($this->instance->hasKey('foo')); + } + + public function testArrayAccessSet() { + $this->instance['foo'] = 'bar'; + $this->assertEquals('bar', $this->instance->get('foo')); + } + + public function testArrayAccessGet() { + $this->instance->set('foo', 'bar'); + $this->assertEquals('bar', $this->instance['foo']); + } + + public function testArrayAccessExists() { + $this->assertFalse(isset($this->instance['foo'])); + $this->instance->set('foo', 'bar'); + $this->assertTrue(isset($this->instance['foo'])); + } + + public function testArrayAccessUnset() { + $this->instance->set('foo', 'bar'); + unset($this->instance['foo']); + $this->assertFalse($this->instance->hasKey('foo')); + } + + public function tearDown() { + if ($this->instance) { + $this->instance->clear(); + } + } +} diff --git a/tests/lib/memcache/memcached.php b/tests/lib/memcache/memcached.php new file mode 100644 index 00000000000..4b38ae8ef3c --- /dev/null +++ b/tests/lib/memcache/memcached.php @@ -0,0 +1,20 @@ +<?php + +/** + * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Memcache; + +class Memcached extends Cache { + public function setUp() { + if (!\OC\Memcache\Memcached::isAvailable()) { + $this->markTestSkipped('The memcached extension is not available.'); + return; + } + $this->instance = new \OC\Memcache\Memcached(uniqid()); + } +} diff --git a/tests/lib/memcache/xcache.php b/tests/lib/memcache/xcache.php new file mode 100644 index 00000000000..f59afda3966 --- /dev/null +++ b/tests/lib/memcache/xcache.php @@ -0,0 +1,20 @@ +<?php + +/** + * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Memcache; + +class XCache extends Cache { + public function setUp() { + if (!\OC\Memcache\XCache::isAvailable()) { + $this->markTestSkipped('The xcache extension is not available.'); + return; + } + $this->instance = new \OC\Memcache\XCache(uniqid()); + } +} diff --git a/tests/lib/util.php b/tests/lib/util.php index 1f253825920..9742d57ac7a 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -37,6 +37,12 @@ class Test_Util extends PHPUnit_Framework_TestCase { $result = OC_Util::sanitizeHTML($goodString); $this->assertEquals("This is an harmless string.", $result); } + + function testEncodePath(){ + $component = '/§#@test%&^ä/-child'; + $result = OC_Util::encodePath($component); + $this->assertEquals("/%C2%A7%23%40test%25%26%5E%C3%A4/-child", $result); + } function testGenerate_random_bytes() { $result = strlen(OC_Util::generate_random_bytes(59)); |