diff --git a/3rdparty b/3rdparty index 217626723957161191572ea50172a3943c30696d..25e8568d41a9b9a6d1662ccf33058822a890e7f5 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit 217626723957161191572ea50172a3943c30696d +Subproject commit 25e8568d41a9b9a6d1662ccf33058822a890e7f5 diff --git a/README b/README deleted file mode 100644 index 5f5d190cb0152dc5d85541614b71de81468ea298..0000000000000000000000000000000000000000 --- 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 0000000000000000000000000000000000000000..ca7b04a925a940f808ea95efdacf2b2802816333 --- /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: [](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/scan.php b/apps/files/ajax/scan.php index 0706d4e78296b0afdd677e8072cd61266bdcdfce..5b32b6db9b72ad27b8c383ec3acc243c1b7fe891 100644 --- a/apps/files/ajax/scan.php +++ b/apps/files/ajax/scan.php @@ -16,72 +16,56 @@ if (isset($_GET['users'])) { } $eventSource = new OC_EventSource(); -ScanListener::$eventSource = $eventSource; -ScanListener::$view = \OC\Files\Filesystem::getView(); - -OC_Hook::connect('\OC\Files\Cache\Scanner', 'scan_folder', 'ScanListener', 'folder'); -OC_Hook::connect('\OC\Files\Cache\Scanner', 'scan_file', 'ScanListener', 'file'); +$listener = new ScanListener($eventSource); foreach ($users as $user) { $eventSource->send('user', $user); - OC_Util::tearDownFS(); - OC_Util::setupFS($user); - - $absolutePath = \OC\Files\Filesystem::getView()->getAbsolutePath($dir); - - $mountPoints = \OC\Files\Filesystem::getMountPoints($absolutePath); - $mountPoints[] = \OC\Files\Filesystem::getMountPoint($absolutePath); - $mountPoints = array_reverse($mountPoints); //start with the mount point of $dir - - foreach ($mountPoints as $mountPoint) { - $storage = \OC\Files\Filesystem::getStorage($mountPoint); - if ($storage) { - ScanListener::$mountPoints[$storage->getId()] = $mountPoint; - $scanner = $storage->getScanner(); - if ($force) { - $scanner->scan('', \OC\Files\Cache\Scanner::SCAN_RECURSIVE, \OC\Files\Cache\Scanner::REUSE_ETAG); - } else { - $scanner->backgroundScan(); - } - } + $scanner = new \OC\Files\Utils\Scanner($user); + $scanner->listen('\OC\Files\Utils\Scanner', 'scanFile', array($listener, 'file')); + $scanner->listen('\OC\Files\Utils\Scanner', 'scanFolder', array($listener, 'folder')); + if ($force) { + $scanner->scan($dir); + } else { + $scanner->backgroundScan($dir); } } -$eventSource->send('done', ScanListener::$fileCount); +$eventSource->send('done', $listener->getCount()); $eventSource->close(); class ScanListener { - static public $fileCount = 0; - static public $lastCount = 0; + private $fileCount = 0; + private $lastCount = 0; /** - * @var \OC\Files\View $view + * @var \OC_EventSource event source to pass events to */ - static public $view; + private $eventSource; /** - * @var array $mountPoints map storage ids to mountpoints + * @param \OC_EventSource $eventSource */ - static public $mountPoints = array(); + public function __construct($eventSource) { + $this->eventSource = $eventSource; + } /** - * @var \OC_EventSource event source to pass events to + * @param string $path */ - static public $eventSource; - - static function folder($params) { - $internalPath = $params['path']; - $mountPoint = self::$mountPoints[$params['storage']]; - $path = self::$view->getRelativePath($mountPoint . $internalPath); - self::$eventSource->send('folder', $path); + public function folder($path) { + $this->eventSource->send('folder', $path); } - static function file() { - self::$fileCount++; - if (self::$fileCount > self::$lastCount + 20) { //send a count update every 20 files - self::$lastCount = self::$fileCount; - self::$eventSource->send('count', self::$fileCount); + public function file() { + $this->fileCount++; + if ($this->fileCount > $this->lastCount + 20) { //send a count update every 20 files + $this->lastCount = $this->fileCount; + $this->eventSource->send('count', $this->fileCount); } } + + public function getCount() { + return $this->fileCount; + } } diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index c847e2eff8bd3b1b98977bb1377c4865406477fa..04a9fb91649d7d34ef3c23f56b4354f4e1317b3c 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -47,7 +47,7 @@ var FileList={ //size column if(size!=t('files', 'Pending')){ - simpleSize=simpleFileSize(size); + simpleSize = humanFileSize(size); }else{ simpleSize=t('files', 'Pending'); } @@ -55,7 +55,6 @@ var FileList={ var lastModifiedTime = Math.round(lastModified.getTime() / 1000); td = $('<td></td>').attr({ "class": "filesize", - "title": humanFileSize(size), "style": 'color:rgb('+sizeColor+','+sizeColor+','+sizeColor+')' }).text(simpleSize); tr.append(td); diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 51b3f31fb961f65d8f721311810bff937ac884d8..98fc53b71a9d91d85726a6782d80f0085c5da5bc 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -756,9 +756,7 @@ function procesSelection(){ for(var i=0;i<selectedFolders.length;i++){ totalSize+=selectedFolders[i].size; }; - simpleSize=simpleFileSize(totalSize); - $('#headerSize').text(simpleSize); - $('#headerSize').attr('title',humanFileSize(totalSize)); + $('#headerSize').text(humanFileSize(totalSize)); var selection=''; if(selectedFolders.length>0){ if(selectedFolders.length==1){ diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 435c821400df2cf15c0310d9b78f45ecb404be31..33430795ddde4423f3365299b12c670a846cd67d 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -68,7 +68,6 @@ "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.", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 3a323321ba81ac02deeb998c27350e12da96a435..3ce3b2a7fb5ae536a9fa57d9efd80f6d143bb64c 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,7 +68,6 @@ "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/es.php b/apps/files/l10n/es.php index 2d5ac06ff97a6197fada66c0f8b25e7ceb24cf6e..78740d5150726cad47c6d324c35e1b07aa75546c 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -68,7 +68,6 @@ "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 10bde4c3856d1fb8b0be46e0abae1d5794c3665c..3fc3be179822ee5467b78b25f6c85d01df813b9d 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -9,20 +9,20 @@ "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML", "The uploaded file was only partially uploaded" => "El archivo fue subido parcialmente", "No file was uploaded" => "No se subió ningún archivo ", -"Missing a temporary folder" => "Error en la carpera temporal", +"Missing a temporary folder" => "Falta un directorio temporal", "Failed to write to disk" => "Error al escribir en el disco", -"Not enough storage available" => "No hay suficiente capacidad de almacenamiento", -"Invalid directory." => "Directorio invalido.", +"Not enough storage available" => "No hay suficiente almacenamiento", +"Invalid directory." => "Directorio inválido.", "Files" => "Archivos", "Unable to upload your file as it is a directory or has 0 bytes" => "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes", "Not enough space available" => "No hay suficiente espacio disponible", "Upload cancelled." => "La subida fue cancelada", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.", "URL cannot be empty." => "La URL no puede estar vacía", -"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nombre de carpeta inválido. El uso de \"Shared\" está reservado por ownCloud", +"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Nombre de directorio inválido. El uso de \"Shared\" está reservado por ownCloud", "Error" => "Error", "Share" => "Compartir", -"Delete permanently" => "Borrar de manera permanente", +"Delete permanently" => "Borrar permanentemente", "Delete" => "Borrar", "Rename" => "Cambiar nombre", "Pending" => "Pendientes", @@ -30,9 +30,9 @@ "replace" => "reemplazar", "suggest name" => "sugerir nombre", "cancel" => "cancelar", -"replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", +"replaced {new_name} with {old_name}" => "se reemplazó {new_name} con {old_name}", "undo" => "deshacer", -"perform delete operation" => "Eliminar", +"perform delete operation" => "Llevar a cabo borrado", "1 file uploading" => "Subiendo 1 archivo", "files uploading" => "Subiendo archivos", "'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", @@ -40,7 +40,7 @@ "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos.", "Your storage is full, files can not be updated or synced anymore!" => "El almacenamiento está lleno, los archivos no se pueden seguir actualizando ni sincronizando", "Your storage is almost full ({usedSpacePercent}%)" => "El almacenamiento está casi lleno ({usedSpacePercent}%)", -"Your download is being prepared. This might take some time if the files are big." => "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes.", +"Your download is being prepared. This might take some time if the files are big." => "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud", "Name" => "Nombre", "Size" => "Tamaño", @@ -49,12 +49,12 @@ "{count} folders" => "{count} directorios", "1 file" => "1 archivo", "{count} files" => "{count} archivos", -"%s could not be renamed" => "%s no se pudo renombrar", +"%s could not be renamed" => "No se pudo renombrar %s", "Upload" => "Subir", "File handling" => "Tratamiento de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", -"Needed for multi-file and folder downloads." => "Es necesario para descargas multi-archivo y de carpetas", +"Needed for multi-file and folder downloads." => "Es necesario para descargas multi-archivo y de directorios.", "Enable ZIP-download" => "Habilitar descarga en formato ZIP", "0 is unlimited" => "0 significa ilimitado", "Maximum input size for ZIP files" => "Tamaño máximo para archivos ZIP de entrada", @@ -63,12 +63,11 @@ "Text file" => "Archivo de texto", "Folder" => "Carpeta", "From link" => "Desde enlace", -"Deleted files" => "Archivos Borrados", +"Deleted files" => "Archivos borrados", "Cancel upload" => "Cancelar subida", "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 ", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index c87e20b1ff66e4e322f97aeb1ac6e11d633f632e..96bfb2d1cc8e831cb6ba30afc6f8b13193bc299c 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da", "Could not move %s" => "Ezin dira fitxategiak mugitu %s", +"Unable to set upload directory." => "Ezin da igoera direktorioa ezarri.", +"Invalid Token" => "Lekuko baliogabea", "No file was uploaded. Unknown error" => "Ez da fitxategirik igo. Errore ezezaguna", "There is no error, the file uploaded with success" => "Ez da errorerik egon, fitxategia ongi igo da", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Igotako fitxategiak php.ini fitxategian ezarritako upload_max_filesize muga gainditu du:", @@ -17,6 +19,7 @@ "Upload cancelled." => "Igoera ezeztatuta", "File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", "URL cannot be empty." => "URLa ezin da hutsik egon.", +"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Karpeta izne baliogabea. \"Shared\" karpeta erabilpena OwnCloudentzat erreserbaturik dago.", "Error" => "Errorea", "Share" => "Elkarbanatu", "Delete permanently" => "Ezabatu betirako", @@ -46,6 +49,7 @@ "{count} folders" => "{count} karpeta", "1 file" => "fitxategi bat", "{count} files" => "{count} fitxategi", +"%s could not be renamed" => "%s ezin da berrizendatu", "Upload" => "Igo", "File handling" => "Fitxategien kudeaketa", "Maximum upload size" => "Igo daitekeen gehienezko tamaina", @@ -69,6 +73,8 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira.", "Files are being scanned, please wait." => "Fitxategiak eskaneatzen ari da, itxoin mezedez.", "Current scanning" => "Orain eskaneatzen ari da", +"directory" => "direktorioa", +"directories" => "direktorioak", "file" => "fitxategia", "files" => "fitxategiak", "Upgrading filesystem cache..." => "Fitxategi sistemaren katxea eguneratzen..." diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index c57c0ea898ee2804089cd532948c10889e150ce7..40df7b1546eef85139440f495017386d24532fd1 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -60,7 +60,6 @@ "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.", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index dc1a33ac65cf61645b73597ff62d1bf816ee9eb4..b293f85ed4239665caa1dfa84ccc7afea5fbc296 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -68,7 +68,6 @@ "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.", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 4a1c7720caf7637511af2b4c16c382478dc5da5b..bba6335ae053d9c617b1fdd21020422b54a09164 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -68,7 +68,6 @@ "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", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 8ea6bb48aba49d1f75cebac77af1ae1e7f49d6d9..28b33795aeba64200dcb4b34c7b4e28840d222d5 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -68,7 +68,6 @@ "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 cb5480199e28535e8a2824df58b96f9e1f245b15..e4be3133fb0bcd72d53e33477a58d617bd84d4af 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -68,7 +68,6 @@ "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." => "アップロードしようとしているファイルは、サーバで規定された最大サイズを超えています。", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 769dfe33ffe3e35416de4e31b49f68749eab74b6..d4080a179604155ad65855885db02b4c3ff62fa6 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.", @@ -70,6 +71,8 @@ "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/nl.php b/apps/files/l10n/nl.php index 914d5087af10a3253f02487b1b08de453dd6fd87..0d906cb138b55ed4f43bdaffcd38344608b7c9b6 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -49,6 +49,7 @@ "{count} folders" => "{count} mappen", "1 file" => "1 bestand", "{count} files" => "{count} bestanden", +"%s could not be renamed" => "%s kon niet worden hernoemd", "Upload" => "Uploaden", "File handling" => "Bestand", "Maximum upload size" => "Maximale bestandsgrootte voor uploads", @@ -72,6 +73,8 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server.", "Files are being scanned, please wait." => "Bestanden worden gescand, even wachten.", "Current scanning" => "Er wordt gescand", +"directory" => "directory", +"directories" => "directories", "file" => "bestand", "files" => "bestanden", "Upgrading filesystem cache..." => "Upgraden bestandssysteem cache..." diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 4273de9c47841f374dc61ee79cbdd48b6f5dcde6..8aeb30efbf21757c4a4c6842496a46448cb7af7a 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", @@ -70,6 +73,8 @@ "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/ru.php b/apps/files/l10n/ru.php index 225de32d62ea38c56cd404daea5824d1a9af51a4..71742cb4d577354fe883d9fb35527cceebc8e120 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -68,7 +68,6 @@ "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." => "Файлы, которые вы пытаетесь загрузить, превышают лимит для файлов на этом сервере.", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 0b2dbb12dd9fc496b422dde6515f50dd7f08b9a7..6b479b580ebb9950a9e51a6518f1431f66ca5a04 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -1,6 +1,8 @@ <?php $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s taşınamadı. Bu isimde dosya zaten var.", "Could not move %s" => "%s taşınamadı", +"Unable to set upload directory." => "Yükleme dizini tanımlanamadı.", +"Invalid Token" => "Geçeriz simge", "No file was uploaded. Unknown error" => "Dosya yüklenmedi. Bilinmeyen hata", "There is no error, the file uploaded with success" => "Dosya başarıyla yüklendi, hata oluşmadı", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "php.ini dosyasında upload_max_filesize ile belirtilen dosya yükleme sınırı aşıldı.", @@ -47,6 +49,7 @@ "{count} folders" => "{count} dizin", "1 file" => "1 dosya", "{count} files" => "{count} dosya", +"%s could not be renamed" => "%s yeniden adlandırılamadı", "Upload" => "Yükle", "File handling" => "Dosya taşıma", "Maximum upload size" => "Maksimum yükleme boyutu", @@ -70,6 +73,8 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor.", "Files are being scanned, please wait." => "Dosyalar taranıyor, lütfen bekleyin.", "Current scanning" => "Güncel tarama", +"directory" => "dizin", +"directories" => "dizinler", "file" => "dosya", "files" => "dosyalar", "Upgrading filesystem cache..." => "Sistem dosyası önbelleği güncelleniyor" diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 4108516cda1ce5003f34e154dbc5f54e5de0a770..469211ca7f457828b828637177eb9c35c53a05a8 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,7 +63,9 @@ "Text file" => "文本文档", "Folder" => "文件夹", "From link" => "来自链接", +"Deleted files" => "已删除的文件", "Cancel upload" => "取消上传", +"You don’t have write permissions here." => "您没有写入权限。", "Nothing in here. Upload something!" => "这里没有东西.上传点什么!", "Download" => "下载", "Unshare" => "取消分享", @@ -52,6 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "你正在试图上传的文件超过了此服务器支持的最大的文件大小.", "Files are being scanned, please wait." => "正在扫描文件,请稍候.", "Current scanning" => "正在扫描", +"directory" => "文件夹", +"directories" => "文件夹", "file" => "文件", -"files" => "文件" +"files" => "文件", +"Upgrading filesystem cache..." => "升级系统缓存..." ); diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 59a332f628fa11a60731a1d3b85b039ee45f5f2e..63d2bd923654cd33a8a538ce9bf3f88cb6fbdb06 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" => "最大上傳檔案大小", @@ -70,5 +73,9 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." => "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。", "Files are being scanned, please wait." => "正在掃描檔案,請稍等。", "Current scanning" => "目前掃描", +"directory" => "目錄", +"directories" => "目錄", +"file" => "檔案", +"files" => "檔案", "Upgrading filesystem cache..." => "正在升級檔案系統快取..." ); diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index dacd2be0b32a5925993c69a22aa509c2f774cd39..e07316093685a379d3b092b584e4832860c9acc6 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 (MB)')); ?></th> + <th id="headerSize"><?php p($l->t('Size')); ?></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.list.php b/apps/files/templates/part.list.php index 97a9026860bc9ed87d085f1417d3ed247c0cfed6..0c7d6936697fb5ce09222a47896710307ce15308 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -9,7 +9,6 @@ $totalsize = 0; ?> } else { $totalfiles++; } - $simple_file_size = OCP\simple_file_size($file['size']); // the bigger the file, the darker the shade of grey; megabytes*2 $simple_size_color = intval(160-$file['size']/(1024*1024)*2); if($simple_size_color<0) $simple_size_color = 0; @@ -52,9 +51,8 @@ $totalsize = 0; ?> </a> </td> <td class="filesize" - title="<?php p(OCP\human_file_size($file['size'])); ?>" style="color:rgb(<?php p($simple_size_color.','.$simple_size_color.','.$simple_size_color) ?>)"> - <?php print_unescaped($simple_file_size); ?> + <?php print_unescaped(OCP\human_file_size($file['size'])); ?> </td> <td class="date"> <span class="modified" @@ -91,7 +89,7 @@ $totalsize = 0; ?> } ?> </span></td> <td class="filesize"> - <?php print_unescaped(OCP\simple_file_size($totalsize)); ?> + <?php print_unescaped(OCP\human_file_size($totalsize)); ?> </td> <td></td> </tr> diff --git a/apps/files_encryption/appinfo/info.xml b/apps/files_encryption/appinfo/info.xml index 1e97b1b2217fd8042a5d93b5e8c2345d1bb957d6..46f1375c9875a41bc558a29e49db1db619d93b8e 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/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index a402b96a51b584d8dec30fb8c6c0886089a2ebcc..981e629ccfee8d1c2d621c661ee3790d88ade8f8 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_DE.php b/apps/files_encryption/l10n/de_DE.php index 2d7512354d582403395d2e0be10b13dd9cda6f73..79bde7e262650f60f7380195b32e4c3a90eefcfc 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -29,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_AR.php b/apps/files_encryption/l10n/es_AR.php index 63c7fb7aa4f9d7ebb5a8a13e70455bbe070c9b34..f53bbd437c42e756890f25433f18d113ce1ae4d1 100644 --- a/apps/files_encryption/l10n/es_AR.php +++ b/apps/files_encryption/l10n/es_AR.php @@ -6,16 +6,16 @@ "Password successfully changed." => "Tu contraseña fue cambiada", "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.", +"Could not update the private key password. Maybe the old password was not correct." => "No fue posible actualizar la contraseña de clave privada. Tal vez la contraseña anterior 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 la sección de \"configuración personal\", para recuperar el acceso a tus 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.", +"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 está deshabilitada.", "Saving..." => "Guardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde afuera.", "You can unlock your private key in your " => "Podés desbloquear tu clave privada en tu", "personal settings" => "Configuración personal", "Encryption" => "Encriptación", -"Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso en que pierdas la contraseña):", +"Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso que pierdas la contraseña):", "Recovery key password" => "Contraseña de recuperación de clave", "Enabled" => "Habilitado", "Disabled" => "Deshabilitado", @@ -23,14 +23,14 @@ "Old Recovery key password" => "Contraseña antigua de recuperación de clave", "New Recovery key password" => "Nueva contraseña de recuperación de clave", "Change Password" => "Cambiar contraseña", -"Your private key password no longer match your log-in password:" => "Tu contraseña de recuperación de clave ya no coincide con la contraseña de ingreso:", -"Set your old private key password to your current log-in password." => "Usá tu contraseña de recuperación de clave antigua para tu contraseña de ingreso actual.", +"Your private key password no longer match your log-in password:" => "Tu contraseña de clave privada ya no coincide con la contraseña de ingreso:", +"Set your old private key password to your current log-in password." => "Usá tu contraseña de clave privada antigua para tu contraseña de ingreso actual.", " If you don't remember your old password you can ask your administrator to recover your files." => "Si no te acordás de tu contraseña antigua, pedile al administrador que recupere tus archivos", "Old log-in password" => "Contraseña anterior", "Current log-in password" => "Contraseña actual", "Update Private Key Password" => "Actualizar contraseña de la clave privada", -"Enable password recovery:" => "Habilitar contraseña de recuperación:", -"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Habilitando esta opción te va a permitir tener acceso a tus archivos encriptados incluso si perdés la contraseña", +"Enable password recovery:" => "Habilitar recuperación de contraseña:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Habilitando esta opción, vas a tener acceso a tus archivos encriptados, incluso si perdés la contraseña", "File recovery settings updated" => "Las opciones de recuperación de archivos fueron actualizadas", "Could not update file recovery" => "No fue posible actualizar la recuperación de archivos" ); diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index 3659e22bb4ea133940492a327947885338908573..2cef6686fce37b83eb4586680489cea68fa4a245 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -8,6 +8,8 @@ "Private key password successfully updated." => "Den privata lösenordsnyckeln uppdaterades utan problem.", "Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer.", +"Missing requirements." => "Krav som saknas", +"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." => "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och rätt inställd. Kryperingsappen är därför tillsvidare inaktiverad.", "Saving..." => "Sparar...", "Your private key is not valid! Maybe the your password was changed from outside." => "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan.", "You can unlock your private key in your " => "Du kan låsa upp din privata nyckel i dina", diff --git a/apps/files_encryption/tests/share.php b/apps/files_encryption/tests/share.php index 6b5303158595974fb815fa1435663535b7e8c1fb..ebf678da78ed2f7f536da7db852c47b34e8a3972 100755 --- a/apps/files_encryption/tests/share.php +++ b/apps/files_encryption/tests/share.php @@ -751,6 +751,9 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { * @large */ function testRecoveryForUser() { + $this->markTestIncomplete( + 'This test drives Jenkins crazy - "Cannot modify header information - headers already sent" - line 811' + ); // login as admin \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index 94b453793b1badda59574975a89fb9da90893b4e..f2f40247b28c02b9875dda7a26c29e8722f0d7a4 100644 --- a/apps/files_external/css/settings.css +++ b/apps/files_external/css/settings.css @@ -1,10 +1,24 @@ -td.status>span { display:inline-block; height:16px; width:16px; } -span.success { background-image: url('../img/success.png'); background-repeat:no-repeat; } -span.error { background-image: url('../img/error.png'); background-repeat:no-repeat; } -span.waiting { background-image: url('../img/waiting.png'); background-repeat:no-repeat; } +td.status > span { + display: inline-block; + height: 16px; + width: 16px; + vertical-align: text-bottom; +} + +span.success { + background: #37ce02; + border-radius: 8px; +} +span.error { + background: #ce3702; +} +span.waiting { + background: none; +} + td.mountPoint, td.backend { width:10em; } td.remove>img { visibility:hidden; padding-top:0.8em; } tr:hover>td.remove>img { visibility:visible; cursor:pointer; } #addMountPoint>td { border:none; } #addMountPoint>td.applicable { visibility:hidden; } -#selectBackend { margin-left:-10px; } \ No newline at end of file +#selectBackend { margin-left:-10px; } diff --git a/apps/files_external/img/error.png b/apps/files_external/img/error.png deleted file mode 100644 index e8cf45e7a41e358da5d573dc48edf966b9d8d3cb..0000000000000000000000000000000000000000 Binary files a/apps/files_external/img/error.png and /dev/null differ diff --git a/apps/files_external/img/success.png b/apps/files_external/img/success.png deleted file mode 100644 index 6f7022ee7f5672b43bdf72f848a7358e4473eb60..0000000000000000000000000000000000000000 Binary files a/apps/files_external/img/success.png and /dev/null differ diff --git a/apps/files_external/img/waiting.png b/apps/files_external/img/waiting.png deleted file mode 100644 index 02a8cbff0da63ad584ae7a5c11ddefdf0bd9e24b..0000000000000000000000000000000000000000 Binary files a/apps/files_external/img/waiting.png and /dev/null differ diff --git a/apps/files_external/l10n/fa.php b/apps/files_external/l10n/fa.php index 82d3676e17ce9a769ad83338b7b4fd7d8f03a2be..036a34c09925095dd0ddb53d8594fb30e31161bd 100644 --- a/apps/files_external/l10n/fa.php +++ b/apps/files_external/l10n/fa.php @@ -5,16 +5,22 @@ "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_external/lib/webdav.php b/apps/files_external/lib/webdav.php index c2fe7c67b582e994f65e60215d797590327665a0..4869322d87a9f9fcd78f21b24690ec7a46d3508e 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -234,7 +234,13 @@ class DAV extends \OC\Files\Storage\Common{ $mtime=time(); } $path=$this->cleanPath($path); - $this->client->proppatch($path, array('{DAV:}lastmodified' => $mtime)); + + // if file exists, update the mtime, else create a new empty file + if ($this->file_exists($path)) { + $this->client->proppatch($path, array('{DAV:}lastmodified' => $mtime)); + } else { + $this->file_put_contents($path, ''); + } } public function getFile($path, $target) { diff --git a/apps/files_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index 03931bf29868ed13bd8f95c2998fce8c4e609bca..370cbd987445eb8f44be7e73622b8e2c28a455a6 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/nb_NO.php b/apps/files_sharing/l10n/nb_NO.php index 9c736f97d788bcac5d2e8811145596e631c2a010..65eadd3ccaec4477e5c2f59a755830d1c6c19c1b 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/nl.php b/apps/files_sharing/l10n/nl.php index 6c1bf7a53f3682888d3bc4028d9050a3ba4b6c5a..90f2f2290ff64996caba2631d09e65e225903d85 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Wachtwoord ongeldig. Probeer het nogmaals.", "Password" => "Wachtwoord", "Submit" => "Verzenden", "%s shared the folder %s with you" => "%s deelt de map %s met u", diff --git a/apps/files_sharing/l10n/pt_PT.php b/apps/files_sharing/l10n/pt_PT.php index 2f41abca1f5fcc648097a27946ab18b70cd24c7d..8b02e73606223b3f819716f9355f1e181f5b75ef 100644 --- a/apps/files_sharing/l10n/pt_PT.php +++ b/apps/files_sharing/l10n/pt_PT.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Password errada, por favor tente de novo", "Password" => "Password", "Submit" => "Submeter", "%s shared the folder %s with you" => "%s partilhou a pasta %s consigo", diff --git a/apps/files_sharing/l10n/sv.php b/apps/files_sharing/l10n/sv.php index 21e4e542d8e4066690321c83949f84b94d3f148c..dac5e33ec509d32d591401601ccf80c839b771b0 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"The password is wrong. Try again." => "Lösenordet är fel. Försök igen.", "Password" => "Lösenord", "Submit" => "Skicka", "%s shared the folder %s with you" => "%s delade mappen %s med dig", diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index fa03f41913060540c4da710336436b4f2adefa9b..2c89b5df3f6a5a90a4d99bb618d534225cf3fb2d 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -1,6 +1,6 @@ <form action="<?php p($_['URL']); ?>" method="post"> <fieldset> - <?php if ($_['wrongpw']): ?> + <?php if (isset($_['wrongpw'])): ?> <div class="warning"><?php p($l->t('The password is wrong. Try again.')); ?></div> <?php endif; ?> <p class="infield"> diff --git a/apps/files_trashbin/l10n/zh_CN.GB2312.php b/apps/files_trashbin/l10n/zh_CN.GB2312.php index 4dda1e0433c9a0444115553f7c200f2871c2fd1b..1ab193517f80076db48537af0ccc65c901eec2d3 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/user_ldap/l10n/fa.php b/apps/user_ldap/l10n/fa.php index bef13457adb7cc80bae02c2464a5aa7a84aa7e71..889555079d7130c39ab9dfa69082c6f6ab0761af 100644 --- a/apps/user_ldap/l10n/fa.php +++ b/apps/user_ldap/l10n/fa.php @@ -1,8 +1,13 @@ <?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." => "پیکربندی معتبراست، اما اتصال شکست خورد. لطفا تنظیمات و اعتبارهای سرور را بررسی کنید.", "Deletion failed" => "حذف کردن انجام نشد", "Keep settings?" => "آیا تنظیمات ذخیره شود ؟", +"Cannot add server configuration" => "نمی توان پیکربندی سرور را اضافه نمود", +"mappings cleared" => "نگاشت پاک شده است", +"Success" => "موفقیت", "Error" => "خطا", "Connection test succeeded" => "تست اتصال با موفقیت انجام گردید", "Connection test failed" => "تست اتصال ناموفق بود", @@ -11,9 +16,56 @@ "Server configuration" => "پیکربندی سرور", "Add Server Configuration" => "افزودن پیکربندی سرور", "Host" => "میزبانی", +"Base DN" => "پایه DN", +"One Base DN per line" => "یک پایه DN در هر خط", +"You can specify Base DN for users and groups in the Advanced tab" => "شما می توانید پایه DN را برای کاربران و گروه ها در زبانه Advanced مشخص کنید.", +"User DN" => "کاربر DN", "Password" => "گذرواژه", +"For anonymous access, leave DN and Password empty." => "برای دسترسی ناشناس، DN را رها نموده و رمزعبور را خالی بگذارید.", +"User Login Filter" => "فیلتر ورودی کاربر", "Group Filter" => "فیلتر گروه", +"without any placeholder, e.g. \"objectClass=posixGroup\"." => "بدون هیچ گونه حفره یا سوراخ، به عنوان مثال، \"objectClass = posixGroup\".", +"Connection Settings" => "تنظیمات اتصال", +"Configuration Active" => "پیکربندی فعال", +"When unchecked, this configuration will be skipped." => "زمانیکه انتخاب نشود، این پیکربندی نادیده گرفته خواهد شد.", "Port" => "درگاه", +"Backup (Replica) Host" => "پشتیبان گیری (بدل) میزبان", +"Backup (Replica) Port" => "پشتیبان گیری (بدل) پورت", +"Disable Main Server" => "غیر فعال کردن سرور اصلی", +"When switched on, ownCloud will only connect to the replica server." => "وقتی روشن می شود، ownCloud تنها با سرور ماکت ارتباط برقرار می کند.", +"Use TLS" => "استفاده ازTLS", +"Do not use it additionally for LDAPS connections, it will fail." => "علاوه بر این برای اتصالات LDAPS از آن استفاده نکنید، با شکست مواجه خواهد شد.", +"Case insensitve LDAP server (Windows)" => "غیر حساس به بزرگی و کوچکی حروف LDAP سرور (ویندوز)", +"Turn off SSL certificate validation." => "غیرفعال کردن اعتبار گواهی نامه SSL .", +"Not recommended, use for testing only." => "توصیه نمی شود، تنها برای آزمایش استفاده کنید.", +"Directory Settings" => "تنظیمات پوشه", +"User Display Name Field" => "فیلد نام کاربر", +"Base User Tree" => "کاربر درخت پایه", +"One User Base DN per line" => "یک کاربر پایه DN در هر خط", +"User Search Attributes" => "ویژگی های جستجوی کاربر", +"Optional; one attribute per line" => "اختیاری؛ یک ویژگی در هر خط", +"Group Display Name Field" => "فیلد نام گروه", +"Base Group Tree" => "گروه درخت پایه ", +"One Group Base DN per line" => "یک گروه پایه 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" => "نام کاربری داخلی", +"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." => "به طور پیش فرض نام کاربری داخلی از ویژگی UUID ایجاد خواهد شد. این اطمینان حاصل می کند که نام کاربری منحصر به فرد است و کاراکترها نیاز به تبدیل ندارند. نام کاربری داخلی دارای محدودیت است که فقط این کاراکتر ها مجاز می باشند: [ a-zA-Z0-9_.@- ]. بقیه کاراکترها با مکاتبات ASCII آنها جایگزین میشود یا به سادگی حذف شوند. در برخورد یک عدد اضافه خواهد شد / افزایش یافته است. نام کاربری داخلی برای شناسایی یک کاربر داخلی استفاده می شود.همچنین این نام به طور پیش فرض برای پوشه خانه کاربر در ownCloud. همچنین یک پورت برای آدرس های دور از راه است، به عنوان مثال برای تمام خدمات *DAV. با این تنظیمات، رفتار پیش فرض می تواند لغو گردد. برای رسیدن به یک رفتار مشابه به عنوان قبل، ownCloud 5 وارد نمایش ویژگی نام کاربر در زمینه های زیر است. آن را برای رفتار پیش فرض خالی بگذارید. تغییرات اثربخش خواهد بود فقط در نگاشت جدید(اضافه شده) کاربران LDAP .", +"Internal Username Attribute:" => "ویژگی نام کاربری داخلی:", +"Override UUID detection" => "نادیده گرفتن تشخیص 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." => "به طور پیش فرض، ownCloud ویژگی UUID را به صورت اتوماتیک تشخیص می دهد. ویژگی UUID برای شناسایی کاربران و گروه های LDAP استفاده می شود. همچنین، نام کاربری داخلی بر پایه UUID ایجاد خواهد شد، در غیر اینصورت در بالا مشخص نشده باشد. شما می توانید تنظیمات را لغو کنید و یک ویژگی از انتخابتان را تصویب کنید. شما باید مطمئن شوید که ویژگی انتخاب شده شما می تواند آورده شود برای کاربران و گروه ها و آن منحصر به فرد است. آن را برای رفتار پیش فرض ترک کن. تغییرات فقط بر روی نگاشت جدید (اضافه شده) کاربران و گروه های LDAP .", +"UUID Attribute:" => "صفت UUID:", +"Username-LDAP User Mapping" => "نام کاربری - نگاشت کاربر 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." => "ownCloud از نام های کاربری برای ذخیره و تعیین داده (متا) استفاده می کند. به منظور دقت شناسایی و به رسمیت شناختن کاربران، هر کاربرLDAP باید یک نام کاربری داخلی داشته باشد. این نیازمند یک نگاشت از نام کاربری ownCloud به کاربرLDAP است. نام کاربری ساخته شده به UUID از کاربرLDAP نگاشته شده است. علاوه بر این DN پنهانی نیز بخوبی برای کاهش تعامل LDAP است، اما برای شناسایی مورد استفاده قرار نمی گیرد. اگر DN تغییر کند، تغییرات توسط ownCloud یافت خواهند شد. نام داخلی ownCloud در تمام ownCloud استفاده می شود. پاک سازی نگاشت ها در همه جا باقی مانده باشد. پیکربندی پاک سازی نگاشت ها حساس نیست، آن تحت تاثیر تمام پیکربندی های LDAP است! آیا هرگز نگاشت را در یک محیط تولید پاک کرده اید. نگاشت ها را فقط در وضعیت آزمایشی یا تجربی پاک کن.", +"Clear Username-LDAP User Mapping" => "پاک کردن نام کاربری- LDAP نگاشت کاربر ", +"Clear Groupname-LDAP Group Mapping" => "پاک کردن نام گروه -LDAP گروه نقشه برداری", +"Test Configuration" => "امتحان پیکربندی", "Help" => "راهنما" ); diff --git a/apps/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index 308fd34760aaee037f4a5890a7efaac920f2e771..aca8c8e7709bcef70c178edf6a2d6602ab9afc9d 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/lib/jobs.php b/apps/user_ldap/lib/jobs.php index 60ecc0da33df57bf473a71403f14f13ec286ce7c..d626afed6c3b9886e1b04df31002d580bf5a0786 100644 --- a/apps/user_ldap/lib/jobs.php +++ b/apps/user_ldap/lib/jobs.php @@ -134,21 +134,19 @@ class Jobs extends \OC\BackgroundJob\TimedJob { \OCP\Util::DEBUG); } - static private function getConnector() { - if(!is_null(self::$connector)) { - return self::$connector; - } - self::$connector = new \OCA\user_ldap\lib\Connection('user_ldap'); - return self::$connector; - } - static private function getGroupBE() { if(!is_null(self::$groupBE)) { return self::$groupBE; } - self::getConnector(); - self::$groupBE = new \OCA\user_ldap\GROUP_LDAP(); - self::$groupBE->setConnector(self::$connector); + $configPrefixes = Helper::getServerConfigurationPrefixes(true); + if(count($configPrefixes) == 1) { + //avoid the proxy when there is only one LDAP server configured + $connector = new Connection($configPrefixes[0]); + self::$groupBE = new \OCA\user_ldap\GROUP_LDAP(); + self::$groupBE->setConnector($connector); + } else { + self::$groupBE = new \OCA\user_ldap\Group_Proxy($configPrefixes); + } return self::$groupBE; } diff --git a/apps/user_webdavauth/l10n/zh_TW.php b/apps/user_webdavauth/l10n/zh_TW.php index 32166b04751f45b37b86de7213bb8f033cf51966..827a7ef2922cd593d874f5e81d2d3e0c3a4a5cde 100644 --- a/apps/user_webdavauth/l10n/zh_TW.php +++ b/apps/user_webdavauth/l10n/zh_TW.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( "WebDAV Authentication" => "WebDAV 認證", -"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視為登入失敗,所有其他回應視為登入成功。" +"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/build/build.xml b/build/build.xml index 3df77ad024e1dcaa4beb9dae4abdc2cbf4ca3619..0f9d3605da1fff084a3da8b87de2331c9b58a73d 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 dfa29f329c468b31c334e7ae6121d06c1996b6e6..4d1950d60eec8a9d96fae119ff1fce8ea31d108c 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/css/styles.css b/core/css/styles.css index ca2d082eb32fef27e26ffbb7886d3aaa9e93242f..7d927da151c615ffd387f649a0ba6d8eb76260f5 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -673,7 +673,16 @@ button.loading { + + /* ---- BROWSER-SPECIFIC FIXES ---- */ + ::-moz-focus-inner { border: 0; /* remove dotted outlines in Firefox */ } + +/* deactivate show password toggle for IE. Does not work for 8 and 9+ have their own implementation. */ +.ie #show, .ie #show+label { + display: none; + visibility: hidden; +} diff --git a/core/js/js.js b/core/js/js.js index 5158b66d73a7ab849b31083d4a3a8fbba3d2bfd1..cf4e72324dc33427246365d183bae9a553f1c417 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -666,8 +666,6 @@ $(document).ready(function(){ $('.selectedActions a').tipsy({gravity:'s', fade:true, live:true}); $('a.delete').tipsy({gravity: 'e', fade:true, live:true}); $('a.action').tipsy({gravity:'s', fade:true, live:true}); - $('#headerSize').tipsy({gravity:'s', fade:true, live:true}); - $('td.filesize').tipsy({gravity:'s', fade:true, live:true}); $('td .modified').tipsy({gravity:'s', fade:true, live:true}); $('input').tipsy({gravity:'w', fade:true}); @@ -697,14 +695,6 @@ function humanFileSize(size) { return relativeSize + ' ' + readableFormat; } -function simpleFileSize(bytes) { - var mbytes = Math.round(bytes/(1024*1024/10))/10; - if(bytes == 0) { return '0'; } - else if(mbytes < 0.1) { return '< 0.1'; } - else if(mbytes > 1000) { return '> 1000'; } - else { return mbytes.toFixed(1); } -} - function formatDate(date){ if(typeof date=='number'){ date=new Date(date); diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 9d5a7298e19d775982205df8226861ef60bd9ef5..4188522b0c7f3ed211d1b0769213123ef12faa44 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.", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 4242d975f3b6b0236a1a8dd02227554f6bf1d004..d17c9f2c4a5ebd7830672331e5dfa408abae7527 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"%s shared »%s« with you" => "%s-ek »%s« zurekin partekatu du", "Category type not provided." => "Kategoria mota ez da zehaztu.", "No category to add?" => "Ez dago gehitzeko kategoriarik?", "This category already exists: %s" => "Kategoria hau dagoeneko existitzen da: %s", @@ -42,6 +43,7 @@ "years ago" => "urte", "Choose" => "Aukeratu", "Cancel" => "Ezeztatu", +"Error loading file picker template" => "Errorea fitxategi hautatzaile txantiloiak kargatzerakoan", "Yes" => "Bai", "No" => "Ez", "Ok" => "Ados", @@ -60,6 +62,7 @@ "Share with link" => "Elkarbanatu lotura batekin", "Password protect" => "Babestu pasahitzarekin", "Password" => "Pasahitza", +"Allow Public Upload" => "Gaitu igotze publikoa", "Email link to person" => "Postaz bidali lotura ", "Send" => "Bidali", "Set expiration date" => "Ezarri muga data", @@ -84,8 +87,12 @@ "The update was successful. Redirecting you to ownCloud now." => "Eguneraketa ongi egin da. Orain zure ownClouderea berbideratua izango zara.", "ownCloud password reset" => "ownCloud-en pasahitza berrezarri", "Use the following link to reset your password: {link}" => "Eribili hurrengo lotura zure pasahitza berrezartzeko: {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 ." => "Zure pasahitza berrezartzeko lotura zure postara bidalia izan da.<br>Ez baduzu arrazoizko denbora \nepe batean jasotzen begiratu zure zabor-posta karpetan.<br>Hor ere ez badago kudeatzailearekin harremanetan ipini.", +"Request failed!<br>Did you make sure your email/username was right?" => "Eskaerak huts egin du!<br>Ziur zaude posta/pasahitza zuzenak direla?", "You will receive a link to reset your password via Email." => "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez.", "Username" => "Erabiltzaile izena", +"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?" => "Zure fitxategiak enkriptaturik daude. Ez baduzu berreskuratze gakoa gaitzen pasahitza berrabiaraztean ez da zure fitxategiak berreskuratzeko modurik egongo. Zer egin ziur ez bazaude kudeatzailearekin harremanetan ipini jarraitu aurretik. Ziur zaude aurrera jarraitu nahi duzula?", +"Yes, I really want to reset my password now" => "Bai, nire pasahitza orain berrabiarazi nahi dut", "Request reset" => "Eskaera berrezarri da", "Your password was reset" => "Zure pasahitza berrezarri da", "To login page" => "Sarrera orrira", @@ -98,6 +105,7 @@ "Help" => "Laguntza", "Access forbidden" => "Sarrera debekatuta", "Cloud not found" => "Ez da hodeia aurkitu", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Kaixo\n\n%s-ek %s zurekin partekatu duela jakin dezazun.\nIkusi ezazu: %s\n\nOngi jarraitu!", "Edit categories" => "Editatu kategoriak", "Add" => "Gehitu", "Security Warning" => "Segurtasun abisua", @@ -118,6 +126,7 @@ "Database tablespace" => "Datu basearen taula-lekua", "Database host" => "Datubasearen hostalaria", "Finish setup" => "Bukatu konfigurazioa", +"%s is available. Get more information on how to update." => "%s erabilgarri dago. Eguneratzeaz argibide gehiago eskuratu.", "Log out" => "Saioa bukatu", "Automatic logon rejected!" => "Saio hasiera automatikoa ez onartuta!", "If you did not change your password recently, your account may be compromised!" => "Zure pasahitza orain dela gutxi ez baduzu aldatu, zure kontua arriskuan egon daiteke!", @@ -126,6 +135,7 @@ "remember" => "gogoratu", "Log in" => "Hasi saioa", "Alternative Logins" => "Beste erabiltzaile izenak", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Kaixo<br><br>%s-ek %s zurekin partekatu duela jakin dezazun.<br><a href=\"%s\">\nIkusi ezazu</a><br><br>Ongi jarraitu!", "prev" => "aurrekoa", "next" => "hurrengoa", "Updating ownCloud to version %s, this may take a while." => "ownCloud %s bertsiora eguneratzen, denbora har dezake." diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index b0afff1ad24bf0159fed82fcdb08cb3648db919e..20208233105031167bcc4e040ad8a5764d0af61f 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,8 @@ "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", +"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?" => "Os seus ficheiros estão encriptados. Se não activou a chave de recuperação, não vai ser possível recuperar os seus dados no caso da sua password ser reinicializada. Se não tem a certeza do que precisa de fazer, por favor contacte o seu administrador antes de continuar. Tem a certeza que quer continuar?", +"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,6 +105,7 @@ "Help" => "Ajuda", "Access forbidden" => "Acesso interdito", "Cloud not found" => "Cloud nao encontrada", +"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", @@ -130,6 +135,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/sv.php b/core/l10n/sv.php index d6d4b0ff323ac1e337afed98e8d99f28e0a2c056..1c84c6246743182a85059e10151e9d713177969d 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}", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 0a56af94182476fb68e15b1c69ba6e675b5df11f..b8701abffa10e88ad8d443d6fcddedca19929994 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -1,4 +1,5 @@ <?php $TRANSLATIONS = array( +"%s shared »%s« with you" => "%s sizinle »%s« paylaşımında bulundu", "Category type not provided." => "Kategori türü desteklenmemektedir.", "No category to add?" => "Eklenecek kategori yok?", "This category already exists: %s" => "Bu kategori zaten mevcut: %s", @@ -61,6 +62,7 @@ "Share with link" => "Bağlantı ile paylaş", "Password protect" => "Şifre korunması", "Password" => "Parola", +"Allow Public Upload" => "Herkes tarafından yüklemeye izin ver", "Email link to person" => "Kişiye e-posta linki", "Send" => "Gönder", "Set expiration date" => "Son kullanma tarihini ayarla", @@ -89,6 +91,8 @@ "Request failed!<br>Did you make sure your email/username was right?" => "Isteği başarısız oldu!<br>E-posta / kullanıcı adınızı doğru olduğundan emin misiniz?", "You will receive a link to reset your password via Email." => "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilecek.", "Username" => "Kullanıcı Adı", +"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?" => "Dosyalarınız şifrelenmiş. Eğer kurtarma anahtarını aktif etmediyseniz parola sıfırlama işleminden sonra verilerinize erişmeniz imkansız olacak. Eğer ne yaptığınızdan emin değilseniz, devam etmeden önce sistem yöneticiniz ile irtibata geçiniz. Gerçekten devam etmek istiyor musunuz?", +"Yes, I really want to reset my password now" => "Evet,Şu anda parolamı sıfırlamak istiyorum.", "Request reset" => "Sıfırlama iste", "Your password was reset" => "Parolanız sıfırlandı", "To login page" => "Giriş sayfasına git", @@ -101,6 +105,7 @@ "Help" => "Yardım", "Access forbidden" => "Erişim yasaklı", "Cloud not found" => "Bulut bulunamadı", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Merhaba\n\n%s sizinle %s dosyasını paylaştığı\nPaylaşımı gör:%s\n\nİyi günler!", "Edit categories" => "Kategorileri düzenle", "Add" => "Ekle", "Security Warning" => "Güvenlik Uyarisi", @@ -130,6 +135,7 @@ "remember" => "hatırla", "Log in" => "Giriş yap", "Alternative Logins" => "Alternatif Girişler", +"Hey there,<br><br>just letting you know that %s shared »%s« with you.<br><a href=\"%s\">View it!</a><br><br>Cheers!" => "Merhaba, <br><br> %s sizinle »%s« paylaşımında bulundu.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>İyi günler!", "prev" => "önceki", "next" => "sonraki", "Updating ownCloud to version %s, this may take a while." => "Owncloud %s versiyonuna güncelleniyor. Biraz zaman alabilir." diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 4afa6ea116fb05fd558a6bcdfa8e794eb4e72321..f093a687f82bd0d8cc3c5e87ebf5acb614d1355a 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,6 +105,7 @@ "Help" => "說明", "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", "Edit categories" => "編輯分類", "Add" => "增加", "Security Warning" => "安全性警告", @@ -131,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 cefb7fc52c91c31a6300d966736554936a4707bc..ef5de653033c573f69077830e5ce6a51dfb46a3f 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 0c02a04f265827d7cb8dee6b9de68a1419f26e09..070c893c2a06d7a6b6fba94d9599f1ddfdca1a80 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-11 02:17+0200\n" -"PO-Revision-Date: 2013-07-11 00:12+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 06:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -141,55 +141,55 @@ msgstr "" msgid "Settings" msgstr "Instellings" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "" @@ -366,14 +366,14 @@ msgstr "" 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 "" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 5e5697087dc12bda460e6185bc9c564bf2c4205f..adfb6e8f93df3efd887a99fb26e4a51927cc6cea 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-11 02:16+0200\n" -"PO-Revision-Date: 2013-07-11 00:18+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 64134f6a04477077f9ed63afcf7b4bb33975f772..5ab6365d8edb12bcebbb007b33dc6b196f2302b1 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-11 02:17+0200\n" -"PO-Revision-Date: 2013-07-11 00:12+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 06:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index af2effa6b4eba8e0339bcbf39c0471141dffa630..af74b63b2e82de8aa78eb90f8163d246af08cb79 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "كانون الاول" msgid "Settings" msgstr "إعدادات" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "منذ دقيقة" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "قبل ساعة مضت" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} ساعة مضت" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "اليوم" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} يوم سابق" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} شهر مضت" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "سنة مضت" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 9103fa74d65b8f90e304a92fd58ca962f60b0bc4..14e6cfafe8d5f353cadc15d4ef04bddc7abc50d0 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "قيد الانتظار" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} موجود مسبقا" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "استبدال" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "اقترح إسم" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "إلغاء" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "استبدل {new_name} بـ {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "تراجع" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "جاري تنفيذ عملية الحذف" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "جاري رفع 1 ملف" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "إسم مجلد غير صحيح. استخدام مصطلح \"Shared\" م msgid "Name" msgstr "اسم" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "حجم" @@ -212,19 +212,19 @@ msgstr "حجم" msgid "Modified" msgstr "معدل" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "مجلد عدد 1" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} مجلدات" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "ملف واحد" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} ملفات" @@ -305,10 +305,6 @@ msgstr "لا يوجد شيء هنا. إرفع بعض الملفات!" msgid "Download" msgstr "تحميل" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "إلغاء مشاركة" @@ -331,19 +327,19 @@ msgstr "يرجى الانتظار , جاري فحص الملفات ." msgid "Current scanning" msgstr "الفحص الحالي" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 650c71837938e58717fbf53903dd06c48323529f..b74fa07037f3f29ad25b41fb0e446a1b45826e8c 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 99f8f315ebd0f13bbe46dd4c2c68619f512885da..16cd86069121af0aa91021b7ea7fd94f65d33c68 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/ar/files_trashbin.po index 6b632f6d55e1e399d5ad20132cdde59be36ef152..09bbabca56e6f2445a0490d5173e39113b5e4318 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 f9fc22e066b947e59ca7c40db9be533e05cbb61c..e6931a119f4eb864c4a40c26cc07c37b34f8212e 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "منذ ثواني" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "منذ دقيقة" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d دقيقة مضت" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "قبل ساعة مضت" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d ساعة مضت" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "اليوم" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "يوم أمس" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d يوم مضى" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "الشهر الماضي" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d شهر مضت" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "السنةالماضية" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "سنة مضت" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 6307029891d76a200d41f1837ed83c6a3d764fbb..3cbb243b145461aff574ef61e81a24fde4268c87 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/ar/user_ldap.po index 5efebc637690f3c32e3683fdacd9226bc3a65476..e8142a3819ad10ecdcf2433419e9fad9854ca004 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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/files.po b/l10n/be/files.po index 6e1ab1de274074d5939d86c6c31a3b40c7097916..3589633cd925a0e08353dfe51b5e29b80becc1fa 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-11 02:16+0200\n" -"PO-Revision-Date: 2013-07-11 00:18+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index af986a817ea2f2d2c75da404503d46ba735b986f..7b117afaa26623632020d2be371e4121c3a8de21 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "Декември" msgid "Settings" msgstr "Настройки" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "преди 1 минута" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "преди 1 час" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "днес" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "вчера" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "последният месец" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "последната година" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "последните години" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 178bd6c527671901420a68a9cb22cdd45d6f25d7..9b63562fcda922b30900d9cd00f227ea233f6b8c 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Чакащо" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "препокриване" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "отказ" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "възтановяване" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Име" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Размер" @@ -212,19 +212,19 @@ msgstr "Размер" msgid "Modified" msgstr "Променено" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 папка" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 файл" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} файла" @@ -305,10 +305,6 @@ msgstr "Няма нищо тук. Качете нещо." msgid "Download" msgstr "Изтегляне" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "Файловете се претърсват, изчакайте." msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "файл" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 4239d12fa786d529ad49df8a6886e59ce0c84bd2..db5f7bdb1196cf5d5b7269308d520b134e6536e2 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 a0e1e71e99cb52036c1142d483ac741c60de443c..22b9673475e444f85291a24891cc788c7f51a3c5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/bg_BG/files_trashbin.po index 0181647ec6acae06ce615583b590aedc8fdbfc8d..16d28048a9366d9dd64d1fe554bfd6fefe79dcd9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 f46f423e942a2d3735a911e80ec0f397888a0c6d..310d345bdf3b3e72423d395c185733591c48801c 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "преди секунди" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "преди 1 минута" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "преди %d минути" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "преди 1 час" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "преди %d часа" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "днес" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "вчера" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "преди %d дни" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "последният месец" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "преди %d месеца" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "последната година" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "последните години" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index f268ddaa24ad9d11b936b1fade221643c0317500..58597ec8dfd290088dbaba9c707e88cdf88f4721 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/bg_BG/user_ldap.po index 6c252886c3fbc0fb9ffd0e651a039f40badd039d..7b53180f58c263f4fb8ff83ca132744422e0a011 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 98384e072d92ed860d8aaf72a6b1a40499e29c12..acae5d119100f1730c2f7d0f0e2501c2abf46747 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "ডিসেম্বর" msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "১ মিনিট পূর্বে" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূর্বে" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} ঘন্টা পূর্বে" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "আজ" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} দিন পূর্বে" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "গত মাস" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} মাস পূর্বে" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "গত বছর" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "বছর পূর্বে" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index d3ceea9c0bcea4cab7b78837477e121fd7107df2..a1c566f2bac6027112f9b42e4f134b527421613d 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "মুলতুবি" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "প্রতিস্থাপন" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "নাম সুপারিশ করুন" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "বাতিল" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "১টি ফাইল আপলোড করা হচ্ছে" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভ msgid "Name" msgstr "রাম" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "আকার" @@ -212,19 +212,19 @@ msgstr "আকার" msgid "Modified" msgstr "পরিবর্তিত" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "১টি ফোল্ডার" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} টি ফোল্ডার" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "১টি ফাইল" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} টি ফাইল" @@ -305,10 +305,6 @@ msgstr "এখানে কিছুই নেই। কিছু আপলো msgid "Download" msgstr "ডাউনলোড" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " @@ -331,19 +327,19 @@ msgstr "ফাইলগুলো স্ক্যান করা হচ্ছে msgid "Current scanning" msgstr "বর্তমান স্ক্যানিং" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 0aebc9df97a88c06466961c2486afdb96a5cee7a..56e162bb96590dd055ad6a00c1b478fa3646ddf8 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 9c6a3946ff6f16d396226fa454c4d721c00fd1fb..7f32e4de6a4b889788c9ff157ddeb795479c12a8 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/bn_BD/files_trashbin.po index 805279de4ec95c093dea1a892653d308f464fa2a..9f3c5f895726bc14119435cb7e119359b4e01bb8 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 eed4c42f1d06341ad4b65973f81abfd4b4c4de95..5c28627be341f76313d3011e46ea05829802b81e 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "১ মিনিট পূর্বে" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d মিনিট পূর্বে" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "আজ" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "গতকাল" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d দিন পূর্বে" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "গত মাস" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "গত বছর" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "বছর পূর্বে" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 14f29efbc8ba3064e504c9f3c7be63ef6df3e120..57643c3e28f99ac4297515041d9f1d62208203b4 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/bn_BD/user_ldap.po index e58d38f86be65c2fbffeeb1bf05319361b17b72f..080278d25e9c64b18740190fc1010090a6e95391 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 aeb3ac7488e0040889ea9e5ef40866848ef95b37..fc5ec9800f006d7a8e27a9dfe6ff42c53435bc22 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 3d605bb961a9c3db81a578aa77a64e7a81e4273f..65769a16936bc3a413045a3b99c1a1e936748022 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Ime" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Veličina" @@ -212,19 +212,19 @@ msgstr "Veličina" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 44a0ec0e07c4d1b92f213bbcac1f35d6b9d1018f..9aacdc2540caa5a12d4147d92af0d57743b8a90f 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/ca/core.po b/l10n/ca/core.po index ae706ad184481f9554b1726b883872282288fa9a..3f70b300af459efc030987a831382b76e2b84e67 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -143,55 +143,55 @@ msgstr "Desembre" msgid "Settings" msgstr "Configuració" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "avui" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "ahir" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "el mes passat" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "l'any passat" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "anys enrere" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 6549abfa9d1a2dbb00cb4c5362405b6062f02930..05da9e60e51e0cbbfe73369b229bb652756ab229 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -130,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:465 msgid "Pending" msgstr "Pendent" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "substitueix" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugereix un nom" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "cancel·la" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "s'ha substituït {old_name} per {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "desfés" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "executa d'operació d'esborrar" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "fitxers pujant" @@ -206,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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Mida" @@ -214,19 +214,19 @@ msgstr "Mida" msgid "Modified" msgstr "Modificat" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} fitxers" @@ -307,10 +307,6 @@ msgstr "Res per aquí. Pugeu alguna cosa!" msgid "Download" msgstr "Baixa" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Deixa de compartir" @@ -333,19 +329,19 @@ msgstr "S'estan escanejant els fitxers, espereu" msgid "Current scanning" msgstr "Actualment escanejant" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "directori" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "directoris" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "fitxer" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "fitxers" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 6360e830fe153c01acd2ddc797b83b7389a12f2e..c4cd05c73fb239040302c418b635a2dcbc7a470b 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 f0a7c09ddd8e989d2a02eaf7c71027b8fa8e3c9e..e9cad8663762b07c05290b637c71513b86061888 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/ca/files_trashbin.po index 8ba0f8a1646937d43aac203377ed9324c40e366e..753fe3a141a7428a4d20cd45c59a3a28421a0162 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 be1f51f60314e37c1555932b24c2a91f3d4ed90a..903dd0f585930df3506d9978dc95c320dbc513cc 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "segons enrere" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "fa 1 minut" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "fa %d minuts" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "fa 1 hora" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "fa %d hores" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "avui" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "ahir" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "fa %d dies" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "el mes passat" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "fa %d mesos" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "l'any passat" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "anys enrere" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 505ffe95fc55e60d7e75c7ee65d0094a7a25c1d9..80a797da910f8c9d2b342d85ffd0dd6cd3a7f634 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -458,7 +458,7 @@ msgstr "WebDAV" 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 "" +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 4bf826ca2e1cfeb22a4032c1677182e41a2b9696..3f9e3369c3ed7da3995d60b64cc6b4d8feae94db 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 efc40083ad50e053729f64fc9b36e51703c00183..45e18c3fbdb2a6f2d2c44657123467ab61528c67 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -143,55 +143,55 @@ msgstr "Prosinec" msgid "Settings" msgstr "Nastavení" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "dnes" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "včera" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "před měsíci" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "minulý rok" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "před lety" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 586f4c68934bae0556c92b8d018039a000d8d55b..ea0b85bbc9328696219c314a1ccdd70dcae172e9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Nevyřízené" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "nahradit" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "navrhnout název" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "zrušit" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "nahrazeno {new_name} s {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "zpět" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "provést smazání" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "odesílá se 1 soubor" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Velikost" @@ -214,19 +214,19 @@ msgstr "Velikost" msgid "Modified" msgstr "Upraveno" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 složka" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 soubor" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} soubory" @@ -307,10 +307,6 @@ 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í" @@ -333,19 +329,19 @@ msgstr "Soubory se prohledávají, prosím čekejte." msgid "Current scanning" msgstr "Aktuální prohledávání" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "soubor" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "soubory" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 1d95d95e25f32cd5d60180c19f2117c98968b5d3..32b3711e2caf3c6b51d82c0a884c3695c23e2f74 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 e87e5e294266b1009ca01aa1ebab75c2ff00b198..5a588e668e55511e251498b44ee52f30ab1af873 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 ab34caaac90ef41a23788a7059fd03ff27e3e7cb..f4f018628d9e137e8ddf3ff020ab682cf7eb5fc6 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 256f05e1bb51c6b0a7ff488b02477c15673332db..a313fb88442f6129678af1b72f251813c98db02c 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 e3eb013de76d59637bf050d104578bb6b8f32fae..40f5499933802e08928dfd894004c34aec310e1e 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "před pár vteřinami" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "před minutou" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "před %d minutami" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "před hodinou" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "před %d hodinami" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "dnes" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "včera" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "před %d dny" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "minulý měsíc" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "Před %d měsíci" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "minulý rok" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "před lety" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 498fb536c84897f5a4f6aae410f46b6324a3fd18..277e281c0018e2fd0b48c14315ffc1fc331f65ea 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -457,7 +458,7 @@ msgstr "WebDAV" 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 "" +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 1a74ccd9797b5b81a4bb014ac4ee05a0156916b1..1e319bbd0fd67d57260bed820555688283b720a8 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 7c73a8e0939580d3eb06f4bd2f8620bf1d65b7cc..ab1b881a1ef82f362b8968fc27c1ba887b6fe86f 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -142,55 +142,55 @@ msgstr "Rhagfyr" msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 munud yn ôl" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} munud yn ôl" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 awr yn ôl" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} awr yn ôl" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "heddiw" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "ddoe" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} diwrnod yn ôl" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} mis yn ôl" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "y llynedd" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "blwyddyn yn ôl" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index f0063ef7c2640122459b5d2dde8d84a64c0c8214..7b792b8c528030d7e9800ee19dd820565f5522b4 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "I ddod" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} yn bodoli'n barod" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "amnewid" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "awgrymu enw" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "diddymu" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "newidiwyd {new_name} yn lle {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "dadwneud" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "cyflawni gweithred dileu" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 ffeil yn llwytho i fyny" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Maint" @@ -212,19 +212,19 @@ msgstr "Maint" msgid "Modified" msgstr "Addaswyd" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 blygell" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} plygell" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 ffeil" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} ffeil" @@ -305,10 +305,6 @@ 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" @@ -331,19 +327,19 @@ msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." msgid "Current scanning" msgstr "Sganio cyfredol" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index cbb907712dc3e994cc39b5d913a2121c4d0a02b9..a084b2d82ad6f0f44b51429bf9509842bc2d86b4 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 3606f1243603e9deb5273b11e2af1d635170fc60..6757ac903729799b8d2af1bc66d4756343778826 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/cy_GB/files_trashbin.po index 237d5cdaa2fa502fb71ab35c2a585a31239e95bb..5baff92ab401433916da5cef4065cb6ca5b2a037 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 af17e49d3b62e9bb097091d210c6ccb1f8d83c26..5856e44f7c5e340cc41aa2b547cce94fe9d9cca0 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "eiliad yn ôl" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 munud yn ôl" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d munud yn ôl" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 awr yn ôl" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d awr yn ôl" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "heddiw" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "ddoe" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d diwrnod yn ôl" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "mis diwethaf" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d mis yn ôl" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "y llynedd" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "blwyddyn yn ôl" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index f71459f253e56eda2de677e95606e219f690f7a2..3af05c8e3b074edb10bd17db55ace85399ac0895 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/cy_GB/user_ldap.po index f59f3139e14669d94407304755b3ed999a84bc26..897211fb47a128139fc66d3930f17cec0197bec2 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 8018a6418810b0fa307ff0e03dcd512daf8e9d4b..a8231a103477ddc87751db25c61b60a08dffe957 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -143,55 +143,55 @@ msgstr "December" msgid "Settings" msgstr "Indstillinger" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "i dag" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "i går" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "sidste måned" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "måneder siden" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "sidste år" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "år siden" diff --git a/l10n/da/files.po b/l10n/da/files.po index dd48bebdaaab10a02d7a73fe2a054f01f6087e42..3110aa00179a5843370872e63a98708437d8f69c 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Afventer" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "erstat" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "fortryd" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "udfør slet operation" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fil uploades" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Størrelse" @@ -213,19 +213,19 @@ msgstr "Størrelse" msgid "Modified" msgstr "Ændret" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 fil" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} filer" @@ -306,10 +306,6 @@ 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" @@ -332,19 +328,19 @@ msgstr "Filerne bliver indlæst, vent venligst." msgid "Current scanning" msgstr "Indlæser" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "fil" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "filer" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index be02e8885cabe8cca2055a106d29dab877080155..ec522fc65a10a00209680d514719143faf880740 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 305d4136ea8b8b6b7727ed05f2380752ddfc9632..e104cd298354a64e7bb63f1b33be544f433b25cc 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/da/files_trashbin.po index b917370f5393087bbadf52f94fdf7046f425242d..8f3ab2c24149a528794d7e01fa45c2aee2904166 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 b0ebbec167177c09583dd9bfb80d2ae8e4c96673..acf85d4c3f62ec814fec2defc91e2de978860bcb 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "sekunder siden" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 minut siden" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d minutter siden" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 time siden" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d timer siden" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "i dag" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "i går" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d dage siden" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "sidste måned" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d måneder siden" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "sidste år" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "år siden" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index b169fa12873185782dde006db9855691dd4222d6..31f27b9b20e6517da32de6948c2df3c38da3936a 100644 --- a/l10n/da/settings.po +++ b/l10n/da/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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 75e3c7f3e628377372ce74b6cc0d27387ce54111..c483a10413338348d08dda4bd315837ac235b8e7 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 9c5eefb38d29080d25d414f31d9ea991126ae526..fb03ac696bc14b9d1c81de91238455c85b2dd20c 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: Pwnicorn <pwnicorndev@gmail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -147,55 +147,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "Heute" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "Gestern" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/files.po b/l10n/de/files.po index bca4700f93a823b943514100d50b39615b5298c1..31747a8c947da1dce6687be9f3592c19d3189f0c 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: kabum <uu.kabum@gmail.com>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -132,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:465 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "Namen vorschlagen" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} ersetzt durch {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -208,7 +208,7 @@ msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vor msgid "Name" msgstr "Name" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Größe" @@ -216,19 +216,19 @@ msgstr "Größe" msgid "Modified" msgstr "Geändert" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 Datei" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} Dateien" @@ -309,10 +309,6 @@ 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" @@ -335,19 +331,19 @@ msgstr "Dateien werden gescannt, bitte warten." msgid "Current scanning" msgstr "Scanne" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "Verzeichnis" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "Verzeichnisse" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "Datei" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "Dateien" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index c069d5c23104d86833c119df4edb5001849f7bc7..7de27b8f039f2fbaeccc924870af61158ca9dd98 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 ffe2044d0424c1443b017ad4732754251c277628..1d48659780a863de6700f2e59dade27012c937cf 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: Pwnicorn <pwnicorndev@gmail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 5f87adfdd2accaae2b7590f3fedd2d0b09afde6a..f3efdb9e10ad33be505e7fa2188fb323a45e6f29 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 19782468c956e30ffe299ba46efa94b4e8e78e09..f135d28f130b506b69243a0274c20cd82fc69318 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" @@ -172,74 +172,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "Gerade eben" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "vor einer Minute" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "Vor %d Minuten" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "Vor %d Stunden" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "Heute" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "Gestern" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "Vor %d Tag(en)" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "Letzten Monat" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "Vor %d Monaten" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "Letztes Jahr" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 4d29b8a797c2162ee776a30b5626906f0a8d63ad..e4561202a245e090f7bb557037295f18bfd9266c 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: Pwnicorn <pwnicorndev@gmail.com>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index f65199ac002658e74113424d2862fe43254074d6..6df55c4ac2963c42dd5e869d68a2ca2a510a2a70 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 72ecbddb0292b940c37a3fa0f66713d785d5e928..892897fb80e00e1bafc79d67e287906b926133de 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -147,55 +147,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "Heute" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "Gestern" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "Vor Jahren" @@ -290,7 +290,7 @@ msgstr "Passwort" #: js/share.js:187 msgid "Allow Public Upload" -msgstr "Erlaube öffentliches hochladen" +msgstr "Öffentliches Hochladen erlauben" #: js/share.js:191 msgid "Email link to person" @@ -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" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 57ffe63d6b975307947b3dcc0954afb27403b061..ea9032cef05cddb0d31ed86cbc5f36e1280f7c69 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -7,15 +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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: kabum <uu.kabum@gmail.com>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +27,7 @@ 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 @@ -134,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:465 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "Namen vorschlagen" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -210,7 +211,7 @@ msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vor msgid "Name" msgstr "Name" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Größe" @@ -218,19 +219,19 @@ msgstr "Größe" msgid "Modified" msgstr "Geändert" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 Datei" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} Dateien" @@ -311,10 +312,6 @@ 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" @@ -337,19 +334,19 @@ msgstr "Dateien werden gescannt, bitte warten." msgid "Current scanning" msgstr "Scanne" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "Verzeichnis" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "Verzeichnisse" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "Datei" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "Dateien" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index 752ceee589922855f3419c5ddf18e091237ef126..ca88a9a239809a995da9c1fcf6300a0dbc65da38 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-08 02:02+0200\n" -"PO-Revision-Date: 2013-07-07 05:50+0000\n" -"Last-Translator: JamFX <niko@nik-o-mat.de>\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" @@ -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 77e0469748f0e78f9eaf468afc5bbbeec47bf047..959ad3ba20102dc66d6fa4c6f2de4829ceac6893 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 99db3ef36412367724630bf686611484fe7be347..015cf3f9ea781690d67aa6f3afb24a45c4da6a2d 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: JamFX <niko@nik-o-mat.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 604321eb6a7b6ea9e6fd5e0b3a6f6e7635d810ab..bd818862da820d23e0f7353967423e7dd4fd2635 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 0a0d78d4b92dbe577a5eddadf416fc1c7d871b39..fe0b091f88becbaa8dd1aa219c57b07a689104ba 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "Gerade eben" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "Vor %d Minuten" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "Vor %d Stunden" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "Heute" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "Gestern" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "Vor %d Tag(en)" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "Letzten Monat" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "Vor %d Monaten" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "Letztes Jahr" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 93f4758f2885e6a57c3671f9ce3637c203131a84..2b9a0ecd4c44a412ea65f614edad7dcb055911fe 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: kabum <uu.kabum@gmail.com>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -462,7 +462,7 @@ msgstr "WebDAV" 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 "Nutzen Sie diese Adresse um <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">auf ihre Dateien per WebDAV zuzugreifen</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" @@ -474,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 830620f5653d98a6f29c493d4184d67104e5efa5..eb8b72ba0cf42ff8408cce014c0c56594078b12b 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+0000\n" "Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n" "Language-Team: German (Germany) <translations@owncloud.org>\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 4fea31167ac6d83465528da46e9a25612ed268da..d6bf308e1fb7f9d47e9aadcad013924631abe08a 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -148,55 +148,55 @@ msgstr "Δεκέμβριος" msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "σήμερα" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "χτες" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "χρόνια πριν" diff --git a/l10n/el/files.po b/l10n/el/files.po index 24d7d367d0cf164e96337b2eb6d37d28cbf721ea..473bfebdfe7d1b6e879b28f7a35fa7b2084acacc 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Εκκρεμεί" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "αντικατέστησε" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "συνιστώμενο όνομα" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "ακύρωση" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "αντικαταστάθηκε το {new_name} με {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "εκτέλεση της διαδικασίας διαγραφής" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "αρχεία ανεβαίνουν" @@ -205,7 +205,7 @@ msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κο msgid "Name" msgstr "Όνομα" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Μέγεθος" @@ -213,19 +213,19 @@ msgstr "Μέγεθος" msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} αρχεία" @@ -306,10 +306,6 @@ msgstr "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!" msgid "Download" msgstr "Λήψη" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" @@ -332,19 +328,19 @@ msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμέν msgid "Current scanning" msgstr "Τρέχουσα ανίχνευση" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "κατάλογος" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "κατάλογοι" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "αρχείο" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "αρχεία" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 9ef727bc05252da8d729fc8c7e5e4c31debdd7cb..3ea5e28fb6f812b2ce7c2c8e1dbd181aeb0486d9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 34970294a12b3e2329300d0bae589c7bc36eee7d..fc664e223050aad11a299a41d355e9f1fffeb1c5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/files_trashbin.po b/l10n/el/files_trashbin.po index 831f518be8d5a8727f2226e0868dbd563d749995..916c0681c83573893a8581b832a00809998e5e90 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 b8a74f9795eaea565207e673882e4db9382ef8b9..a0941774a38457867d0bcd62bf50bf642a44c81a 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d λεπτά πριν" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d ώρες πριν" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "σήμερα" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "χτες" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d ημέρες πριν" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "τελευταίο μήνα" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d μήνες πριν" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "τελευταίο χρόνο" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "χρόνια πριν" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index b2d34a52643543fd977b03eb84338550241826b2..462315d8dbd2e7b8a8184556c1f9857b5e29eda1 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/el/user_ldap.po index 9e2146668826cd3e50b7c2967247cc1924269b3a..a1f0b8d78b1d7dbb2f0bcbd77f26fc7fb8bb87a5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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/files.po b/l10n/en@pirate/files.po index 51d54b075bec197eabdfd7612d1332de3eac117a..245da5193682e750e80682112ef761de71dfbef0 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "Download" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 4eaa3eee522469fdd5c2af5e9c0e46d3d55da714..ed5ede4c7c347435f3d85ef2567f27fa1452577e 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index d9254298344f9bd5c886c8dc14cf6289c52d53ef..369fb853d9e5451dd07bf010c8bfb887cc92ac7b 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -143,55 +143,55 @@ msgstr "Decembro" msgid "Settings" msgstr "Agordo" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "antaŭ {minutes} minutoj" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "antaŭ {hours} horoj" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "hodiaŭ" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "antaŭ {days} tagoj" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "lastamonate" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "antaŭ {months} monatoj" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "lastajare" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "jaroj antaŭe" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index f106798fd696f8b3a0771908c81bb3b76bf6091c..64e6d77210674bf0e12d1b821151d57ac4bef55b 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Traktotaj" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugesti nomon" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "malfari" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "plenumi forigan operacion" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Grando" @@ -213,19 +213,19 @@ msgstr "Grando" msgid "Modified" msgstr "Modifita" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} dosierujoj" @@ -306,10 +306,6 @@ 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" @@ -332,19 +328,19 @@ msgstr "Dosieroj estas skanataj, bonvolu atendi." msgid "Current scanning" msgstr "Nuna skano" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "dosiero" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "dosieroj" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 6f26c73e6cc0b8654ca09fd8ad80c83be6bd0eb6..41eaf9a706a95df473146a5cf078ccd4413e5de3 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 0f4dab17845920530efc0305133a186d0414c8c9..c5b57b270733b24b03300c98520a675b78c2521e 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/eo/files_trashbin.po index 52bd607de4c2a9bcdcc4ea308f63932a79bfc2c6..f4f8e66ca34e8ef7a90159db1dda2b73b41c4b74 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 9e85d9f248abca962cbf4d546e65805a7e85db5d..d7f71bdc2526d5b4b2492551ddc3976bd175bcd3 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "antaŭ %d minutoj" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "antaŭ %d horoj" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "hodiaŭ" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "hieraŭ" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "antaŭ %d tagoj" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "lastamonate" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "antaŭ %d monatoj" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "lastajare" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "jaroj antaŭe" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 3393c7ed996c64022528dad61c201bb22ae2e8c8..6903b182b44f267a307226cd08b51bac6039c668 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/eo/user_ldap.po index 9f9c75c60060679ea1203418045458768994eb4a..dc05549b0990c018064027c6b8fd5638f591733e 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 5b4504f3ac87bdbdea78cde4bdceae531da559d4..4e0163cbb3d9e0bc7b7bb9bba822faa712bb76ec 100644 --- a/l10n/es/core.po +++ b/l10n/es/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -148,55 +148,55 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "hoy" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "ayer" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "el mes pasado" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "hace meses" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "el año pasado" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "hace años" diff --git a/l10n/es/files.po b/l10n/es/files.po index 9507e2ca2f3bc4ac01be2746217deca4ce825804..c89b6c7d9dcaf2b598a94b0cf74f2ad583fd48b2 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: qdneren <renanqd@yahoo.com.mx>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -133,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:465 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "deshacer" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "Realizar operación de borrado" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "subiendo archivos" @@ -209,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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Tamaño" @@ -217,19 +217,19 @@ msgstr "Tamaño" msgid "Modified" msgstr "Modificado" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} carpetas" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 archivo" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} archivos" @@ -310,10 +310,6 @@ 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" @@ -336,19 +332,19 @@ msgstr "Los archivos están siendo escaneados, por favor espere." msgid "Current scanning" msgstr "Escaneo actual" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "carpeta" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "carpetas" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "archivo" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "archivos" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index bb3430d857d97fdf5b5fdee8e498fa69534014f7..3b6a583c723f99edd05f98f96fd49ae6ef3e3d2d 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 149ea2a1ebaf30180f5262cb53cf8243e9c49819..71be8dca43e796ebfda38bfd9b639cbd7b2534e0 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index d65f8d851889476eef0cfad158d1274c95ab5387..e341410d49c8bac38c8c7fd1c4fea96866017eaa 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 504a646087616efe2c64448f858a2c9e9c94be0c..a454cc0d46be0e99e20fa3528219f0b9e1d7fb30 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "hace segundos" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "hace 1 minuto" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "hace %d minutos" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "Hace 1 hora" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "Hace %d horas" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "hoy" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "ayer" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "hace %d días" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "mes pasado" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "Hace %d meses" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "año pasado" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "hace años" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 5df80c7f0576a9067a4bf3ee9f73f6d9796b909e..c6eb02c3a3e156b28a669901a038d5d2870fabcc 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 5dd2e58a0c3df7a1ce2633f4b634e1a21ea96e79..d84336958fc9b82106a085efc30603d3bb09d74f 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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_AR/core.po b/l10n/es_AR/core.po index b169a73be7ea46b111efcd587b0792417d448501..ba18c41ff850acf3d229a1a31771121919dfaecf 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -142,55 +142,55 @@ msgstr "diciembre" msgid "Settings" msgstr "Configuración" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "hace {hours} horas" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "hoy" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "ayer" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "el mes pasado" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "meses atrás" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "el año pasado" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "años atrás" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index d1d61483f257b1aaa5364e9d4aae61173c1109e9..abdc638d605dc9f1b7afff61ca48008866345bb5 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: cjtess <claudio.tessone@gmail.com>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -66,7 +66,7 @@ msgstr "No se subió ningún archivo " #: ajax/upload.php:72 msgid "Missing a temporary folder" -msgstr "Error en la carpera temporal" +msgstr "Falta un directorio temporal" #: ajax/upload.php:73 msgid "Failed to write to disk" @@ -74,11 +74,11 @@ msgstr "Error al escribir en el disco" #: ajax/upload.php:91 msgid "Not enough storage available" -msgstr "No hay suficiente capacidad de almacenamiento" +msgstr "No hay suficiente almacenamiento" #: ajax/upload.php:123 msgid "Invalid directory." -msgstr "Directorio invalido." +msgstr "Directorio inválido." #: appinfo/app.php:12 msgid "Files" @@ -107,7 +107,7 @@ msgstr "La URL no puede estar vacía" #: js/file-upload.js:238 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "Nombre de carpeta inválido. El uso de \"Shared\" está reservado por ownCloud" +msgstr "Nombre de directorio inválido. El uso de \"Shared\" está reservado por 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 @@ -120,7 +120,7 @@ msgstr "Compartir" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "Borrar de manera permanente" +msgstr "Borrar permanentemente" #: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" @@ -130,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:465 msgid "Pending" msgstr "Pendientes" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" -msgstr "reemplazado {new_name} con {old_name}" +msgstr "se reemplazó {new_name} con {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "deshacer" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" -msgstr "Eliminar" +msgstr "Llevar a cabo borrado" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "Subiendo archivos" @@ -196,7 +196,7 @@ msgstr "El almacenamiento está casi lleno ({usedSpacePercent}%)" msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes." +msgstr "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes." #: js/files.js:344 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" @@ -206,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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Tamaño" @@ -214,26 +214,26 @@ msgstr "Tamaño" msgid "Modified" msgstr "Modificado" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 archivo" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} archivos" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "%s no se pudo renombrar" +msgstr "No se pudo renombrar %s" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -253,7 +253,7 @@ msgstr "máx. posible:" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Es necesario para descargas multi-archivo y de carpetas" +msgstr "Es necesario para descargas multi-archivo y de directorios." #: templates/admin.php:17 msgid "Enable ZIP-download" @@ -289,7 +289,7 @@ msgstr "Desde enlace" #: templates/index.php:42 msgid "Deleted files" -msgstr "Archivos Borrados" +msgstr "Archivos borrados" #: templates/index.php:48 msgid "Cancel upload" @@ -307,10 +307,6 @@ 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" @@ -333,19 +329,19 @@ msgstr "Se están escaneando los archivos, por favor esperá." msgid "Current scanning" msgstr "Escaneo actual" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "directorio" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "directorios" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "archivo" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "archivos" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index 81b860056398bb6ea145598afb1f2ff7d3d5c101..68fee9017fde1e1c48d0642ac6eeecdfba343f78 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 16:40+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-18 12:20+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" @@ -52,7 +52,7 @@ msgstr "Contraseña de clave privada actualizada con éxito." msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "No fue posible actualizar la contraseña de la clave privada. Tal vez la contraseña antigua no es correcta." +msgstr "No fue posible actualizar la contraseña de clave privada. Tal vez la contraseña anterior no es correcta." #: files/error.php:7 msgid "" @@ -60,7 +60,7 @@ 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 "¡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." +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 la sección de \"configuración personal\", para recuperar el acceso a tus archivos." #: hooks/hooks.php:44 msgid "Missing requirements." @@ -71,7 +71,7 @@ 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 "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." +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 está deshabilitada." #: js/settings-admin.js:11 msgid "Saving..." @@ -98,7 +98,7 @@ msgstr "Encriptación" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso en que pierdas la contraseña):" +msgstr "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso que pierdas la contraseña):" #: templates/settings-admin.php:14 msgid "Recovery key password" @@ -130,11 +130,11 @@ msgstr "Cambiar contraseña" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "Tu contraseña de recuperación de clave ya no coincide con la contraseña de ingreso:" +msgstr "Tu contraseña de clave privada ya no coincide con la contraseña de ingreso:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "Usá tu contraseña de recuperación de clave antigua para tu contraseña de ingreso actual." +msgstr "Usá tu contraseña de clave privada antigua para tu contraseña de ingreso actual." #: templates/settings-personal.php:16 msgid "" @@ -156,13 +156,13 @@ msgstr "Actualizar contraseña de la clave privada" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "Habilitar contraseña de recuperación:" +msgstr "Habilitar recuperación de contraseña:" #: 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 "Habilitando esta opción te va a permitir tener acceso a tus archivos encriptados incluso si perdés la contraseña" +msgstr "Habilitando esta opción, vas a tener acceso a tus archivos encriptados, incluso si perdés la contraseña" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 4545a8b20ad2229eeaee848cd73a8e29a53cdf7e..8b3b15c83e07569dcd2a005f15f7fe8f69b9074b 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: cjtess <claudio.tessone@gmail.com>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index d1a1ff1ae8cedd6c8f080aaef7d338447f4671a2..cfc29871202de024ecd6a0f33273405e3f51df8f 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: cjtess <claudio.tessone@gmail.com>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 672b26d83c1a83de8b90f5575c72e208162c133f..235b22e9fa7dcfa2767b0ac0c1f232d7c61d38a9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 06d8c3711e841f618fb6eb39d5653c12d43279a0..ea32692783b2a993b4ba6e15223719007b9491d1 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -36,7 +36,7 @@ msgstr "Usuarios" #: app.php:409 msgid "Apps" -msgstr "Aplicaciones" +msgstr "Apps" #: app.php:417 msgid "Admin" @@ -44,7 +44,7 @@ msgstr "Administración" #: defaults.php:33 msgid "web services under your control" -msgstr "servicios web que controlás" +msgstr "servicios web sobre los que tenés control" #: files.php:226 msgid "ZIP download is turned off." @@ -56,7 +56,7 @@ msgstr "Los archivos deben ser descargados de a uno." #: files.php:228 files.php:261 msgid "Back to Files" -msgstr "Volver a archivos" +msgstr "Volver a Archivos" #: files.php:258 msgid "Selected files too large to generate zip file." @@ -64,7 +64,7 @@ msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo #: helper.php:236 msgid "couldn't be determined" -msgstr "no pudo ser determinado" +msgstr "no se pudo determinar" #: json.php:28 msgid "Application is not enabled" @@ -93,17 +93,17 @@ msgstr "Imágenes" #: setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." -msgstr "%s Entre el Usuario de la Base de Datos" +msgstr "%s Entrá el usuario de la base de datos" #: setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." -msgstr "%s Entre el Nombre de la Base de Datos" +msgstr "%s Entrá el nombre de la base de datos." #: setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s no puede usar puntos en el nombre de la Base de Datos" +msgstr "%s no podés usar puntos en el nombre de la base de datos" #: setup/mssql.php:20 #, php-format @@ -113,7 +113,7 @@ msgstr "Nombre de usuario y contraseña de MS SQL no son válidas: %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 "Debe ingresar una cuenta existente o el administrador" +msgstr "Tenés que ingresar una cuenta existente o el administrador." #: setup/mysql.php:12 msgid "MySQL username and/or password not valid" @@ -139,7 +139,7 @@ msgstr "El comando no comprendido es: \"%s\"" #: setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "Usuario MySQL '%s'@'localhost' ya existente" +msgstr "Usuario MySQL '%s'@'localhost' ya existe." #: setup/mysql.php:86 msgid "Drop this user from MySQL" @@ -148,7 +148,7 @@ msgstr "Borrar este usuario de MySQL" #: setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "Usuario MySQL '%s'@'%%' ya existente" +msgstr "Usuario MySQL '%s'@'%%' ya existe" #: setup/mysql.php:92 msgid "Drop this user from MySQL." @@ -160,7 +160,7 @@ msgstr "No fue posible establecer la conexión a Oracle" #: setup/oci.php:41 setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "El nombre de usuario y contraseña no son válidos" +msgstr "El nombre de usuario y/o contraseña no son válidos" #: setup/oci.php:173 setup/oci.php:205 #, php-format @@ -169,76 +169,76 @@ msgstr "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\ #: setup/postgresql.php:23 setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "Nombre de usuario o contraseña de PostgradeSQL no válido." +msgstr "Nombre de usuario o contraseña PostgradeSQL inválido." -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." -msgstr "Configurar un nombre de administrador" +msgstr "Configurar un nombre de administrador." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." -msgstr "Configurar una palabra clave de administrador" +msgstr "Configurar una contraseña 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "segundos atrás" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "hace 1 minuto" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "hace %d minutos" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" -msgstr "1 hora atrás" +msgstr "hace 1 hora" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" -msgstr "%d horas atrás" +msgstr "hace %d horas" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "hoy" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "ayer" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "hace %d días" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "el mes pasado" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" -msgstr "%d meses atrás" +msgstr "hace %d meses" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "el año pasado" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "años atrás" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index b2e41e44f0cb6a3b6b550dc5fee643e12abebe3e..06d215e6b714e0e1753af09c3db50c9b3393eb69 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: cjtess <claudio.tessone@gmail.com>\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 2388c2925ceed124429d3db35aa116f678fcd288..fc5908865d69b67273c664b9013e90f60ff020ee 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 f84e0dc5576edb8ed17c4c689d456bab1729a05c..ee1ba01b1ecf38e2c57f66e14f5b10ddf9ea3d52 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -143,55 +143,55 @@ msgstr "Detsember" msgid "Settings" msgstr "Seaded" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 tund tagasi" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} tundi tagasi" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "täna" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "eile" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} kuud tagasi" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "aastat tagasi" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index da1c3f424b943c779aca5f893387f7ae2f15233c..7730cc6a75eacbe6fb77575150f59fe9878079db 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "asenda" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "soovita nime" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "loobu" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "tagasi" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "teosta kustutamine" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fail üleslaadimisel" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Suurus" @@ -214,19 +214,19 @@ msgstr "Suurus" msgid "Modified" msgstr "Muudetud" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 fail" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} faili" @@ -307,10 +307,6 @@ msgstr "Siin pole midagi. Lae midagi üles!" msgid "Download" msgstr "Lae alla" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Lõpeta jagamine" @@ -333,19 +329,19 @@ msgstr "Faile skannitakse, palun oota." msgid "Current scanning" msgstr "Praegune skannimine" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "kaust" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "kaustad" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "fail" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "faili" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 4db724b2826906fe364b52f42dcb208b19fba337..4ca54d4b735900559ef03f3e12d81df777659cb7 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 ec877363782ca98c9707f9c844ee099338342e8f..be3dbf32eac131e970d574d02716a7072de267cd 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/et_EE/files_trashbin.po index ea0a936f4ee9d80d071fd1b871e38f8c322c9200..c39b604a8c637ed14dcf085ec1f9f24e7c525955 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 8dd8c45b92779edfa1cdb8cb4e005a869f802bcb..41732227d7d2a92196621feee59cf7950a497419 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -172,74 +172,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "sekundit tagasi" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 minut tagasi" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d minutit tagasi" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 tund tagasi" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d tundi tagasi" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "täna" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "eile" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d päeva tagasi" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "viimasel kuul" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d kuud tagasi" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "viimasel aastal" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "aastat tagasi" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 5e2e5a2201c3e977ed558ec32e9c9b3a43e2bac2..f7a83f9f48d3c35154d3a5241ccac8f693cc7122 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_ldap.po b/l10n/et_EE/user_ldap.po index 3123cb7c0703cbc4e07c6fb5bd3f1c4cf0d55b61..3519adfded7691530820737ad4f4a54f3a39fda1 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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/eu/core.po b/l10n/eu/core.po index 12b8189fa449f9927e2cfae6268950ce35193aaf..fbb55eb90c2f1aa76eb1b8caff72b8a221ad8473 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Piarres Beobide <pi@beobide.net>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" "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-ek »%s« zurekin partekatu du" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -141,55 +142,55 @@ msgstr "Abendua" msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "segundu" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "gaur" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "atzo" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "hilabete" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "joan den urtean" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "urte" @@ -203,7 +204,7 @@ msgstr "Ezeztatu" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "Errorea fitxategi hautatzaile txantiloiak kargatzerakoan" #: js/oc-dialogs.js:164 msgid "Yes" @@ -284,7 +285,7 @@ msgstr "Pasahitza" #: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Gaitu igotze publikoa" #: js/share.js:191 msgid "Email link to person" @@ -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 "Zure pasahitza berrezartzeko lotura zure postara bidalia izan da.<br>Ez baduzu arrazoizko denbora \nepe batean jasotzen begiratu zure zabor-posta karpetan.<br>Hor ere ez badago kudeatzailearekin harremanetan ipini." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!<br>Did you make sure your email/username was right?" -msgstr "" +msgstr "Eskaerak huts egin du!<br>Ziur zaude posta/pasahitza zuzenak direla?" #: 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 "Zure fitxategiak enkriptaturik daude. Ez baduzu berreskuratze gakoa gaitzen pasahitza berrabiaraztean ez da zure fitxategiak berreskuratzeko modurik egongo. Zer egin ziur ez bazaude kudeatzailearekin harremanetan ipini jarraitu aurretik. Ziur zaude aurrera jarraitu nahi duzula?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Bai, nire pasahitza orain berrabiarazi nahi dut" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -474,7 +475,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Kaixo\n\n%s-ek %s zurekin partekatu duela jakin dezazun.\nIkusi ezazu: %s\n\nOngi jarraitu!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -571,7 +572,7 @@ msgstr "Bukatu konfigurazioa" #: templates/layout.user.php:43 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s erabilgarri dago. Eguneratzeaz argibide gehiago eskuratu." #: templates/layout.user.php:68 msgid "Log out" @@ -612,7 +613,7 @@ msgstr "Beste erabiltzaile izenak" 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 "Kaixo<br><br>%s-ek %s zurekin partekatu duela jakin dezazun.<br><a href=\"%s\">\nIkusi ezazu</a><br><br>Ongi jarraitu!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 47f0fe11f879119a09537522f21f5d8280dc7a1b..4e92e85773cbb4d04bdb02ff1f927797a2cf1db9 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Piarres Beobide <pi@beobide.net>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -29,11 +30,11 @@ msgstr "Ezin dira fitxategiak mugitu %s" #: ajax/upload.php:16 ajax/upload.php:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "Ezin da igoera direktorioa ezarri." #: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Lekuko baliogabea" #: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" @@ -105,7 +106,7 @@ msgstr "URLa ezin da hutsik egon." #: js/file-upload.js:238 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +msgstr "Karpeta izne baliogabea. \"Shared\" karpeta erabilpena OwnCloudentzat erreserbaturik dago." #: 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 "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:465 msgid "Pending" msgstr "Zain" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ordeztu" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "aholkatu izena" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "ezeztatu" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr " {new_name}-k {old_name} ordezkatu du" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "desegin" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "Ezabatu" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "fitxategiak igotzen" @@ -204,7 +205,7 @@ msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du" msgid "Name" msgstr "Izena" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Tamaina" @@ -212,26 +213,26 @@ msgstr "Tamaina" msgid "Modified" msgstr "Aldatuta" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} fitxategi" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s ezin da berrizendatu" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -305,10 +306,6 @@ 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" @@ -331,19 +328,19 @@ msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." msgid "Current scanning" msgstr "Orain eskaneatzen ari da" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" -msgstr "" +msgstr "direktorioa" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" -msgstr "" +msgstr "direktorioak" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "fitxategia" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "fitxategiak" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 585dbb9ca27345d2ad6df7480cb3220f935215cf..243580db88f09b7c6bfb959a126f92d6cc2ce506 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 b56de969dde4746f235e87ca211010a5e741f75e..2d88de414d38d0b999e4014dacfc6ecfbcfc02eb 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/files_trashbin.po b/l10n/eu/files_trashbin.po index f3de7a3fb7ea88f043a3ddf3032e3dcda4a09bc4..1569b37b06aa0e28cde69f3496ed6bececabe145 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 6cc724cf57cdf8ad8836bc06bb6e7771652854e8..93a976362685231f721e0e8e91d2229590c0125f 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Piarres Beobide <pi@beobide.net>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -155,7 +156,7 @@ msgstr "Ezabatu erabiltzaile hau MySQLtik." #: setup/oci.php:34 msgid "Oracle connection could not be established" -msgstr "" +msgstr "Ezin da Oracle konexioa sortu" #: setup/oci.php:41 setup/oci.php:113 msgid "Oracle username and/or password not valid" @@ -170,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "segundu" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "orain dela %d minutu" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "orain dela %d ordu" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "gaur" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "atzo" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "orain dela %d egun" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "joan den hilabetean" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "orain dela %d hilabete" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "joan den urtean" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "urte" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 9c49765a6f42370f3d04b552d089361545154dff..b3df05e348a9f171ec525f7496af9de9f8f1065d 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -457,7 +457,7 @@ msgstr "WebDAV" 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 "" +msgstr "<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 624bdfed5871a49a08869c9aa104e65cb6c783b8..138e7f0f8de2c4be2dedf4cb827cf2f41de59d91 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 d8e999c6e44e5033a3ddbf28905a7bd829d8e721..cdeddf6e730ceffb92289775cfbe0f6034374025 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -142,55 +142,55 @@ msgstr "دسامبر" msgid "Settings" msgstr "تنظیمات" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "ثانیهها پیش" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{دقیقه ها} دقیقه های پیش" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{ساعت ها} ساعت ها پیش" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "امروز" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "دیروز" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{روزها} روزهای پیش" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "ماه قبل" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیش" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "ماههای قبل" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "سال قبل" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "سالهای قبل" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 86cd925ece203b9b2425560aff1064a274e3740d..fb1e161f8a76160918122f07d0bce919fbde9691 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "در انتظار" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{نام _جدید} در حال حاضر وجود دارد." -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "جایگزین" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "پیشنهاد نام" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "لغو" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد." -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "انجام عمل حذف" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 پرونده آپلود شد." -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "بارگذاری فایل ها" @@ -205,7 +205,7 @@ msgstr "نام پوشه نامعتبر است. استفاده از \" به اش msgid "Name" msgstr "نام" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "اندازه" @@ -213,19 +213,19 @@ msgstr "اندازه" msgid "Modified" msgstr "تاریخ" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 پوشه" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{ شمار} پوشه ها" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 پرونده" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{ شمار } فایل ها" @@ -306,10 +306,6 @@ msgstr "اینجا هیچ چیز نیست." msgid "Download" msgstr "دانلود" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "لغو اشتراک" @@ -332,19 +328,19 @@ msgstr "پرونده ها در حال بازرسی هستند لطفا صبر ک msgid "Current scanning" msgstr "بازرسی کنونی" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "پوشه" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "پوشه ها" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "پرونده" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "پرونده ها" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 990732b6e377c717dbaba5b545b88262515eb388..d57cf2bd6232b63e1a0f47ba1b8116b56036847e 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -49,14 +49,14 @@ 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" @@ -68,7 +68,7 @@ msgstr "نام پوشه" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "حافظه خارجی" #: templates/settings.php:11 msgid "Configuration" @@ -84,7 +84,7 @@ msgstr "قابل اجرا" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "اضافه کردن حافظه" #: templates/settings.php:90 msgid "None set" @@ -117,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 03e6d00375883edba33705756c0ff5c1e56c31a5..c16aba28e1ed32730a161efb64ccaf2cb9c5adf5 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index d007e1ba6cdbbb3aa11b60940ced06ab408399ae..11e6e48069fa4918dcd068244fff373d54ecc044 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/lib.po b/l10n/fa/lib.po index e109c03d8e2238bbcc54ec37237c89ddfe038aae..67cdabcc3c4db26260c4a4fad212d01e258075aa 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>را بررسی کنید." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "ثانیهها پیش" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d دقیقه پیش" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d ساعت پیش" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "امروز" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "دیروز" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d روز پیش" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "ماه قبل" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%dماه پیش" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "سال قبل" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "سالهای قبل" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 33bf3cc68f17f0816e1c678281e8f430f91ff0ec..8b81a024b94ba85d95dfd76428a4357cd7d14b72 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 7047f55004a5d34ef546daea9d15c7b4f3eb6d8a..6a21e1fe66870825d1cd4417a9962de21d9701ec 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 "" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." -msgstr "" +msgstr "عدم موفقیت در پاک کردن نگاشت." #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" @@ -33,7 +34,7 @@ msgstr "پیکربندی معتبر است و ارتباط می تواند بر msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "پیکربندی معتبراست، اما اتصال شکست خورد. لطفا تنظیمات و اعتبارهای سرور را بررسی کنید." #: ajax/testConfiguration.php:43 msgid "" @@ -55,15 +56,15 @@ 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" -msgstr "" +msgstr "موفقیت" #: js/settings.js:117 msgid "Error" @@ -117,19 +118,19 @@ msgstr "" #: templates/settings.php:40 msgid "Base DN" -msgstr "" +msgstr "پایه DN" #: templates/settings.php:41 msgid "One Base DN per line" -msgstr "" +msgstr "یک پایه DN در هر خط" #: templates/settings.php:42 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "شما می توانید پایه DN را برای کاربران و گروه ها در زبانه Advanced مشخص کنید." #: templates/settings.php:44 msgid "User DN" -msgstr "" +msgstr "کاربر DN" #: templates/settings.php:46 msgid "" @@ -144,11 +145,11 @@ 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 @@ -184,19 +185,19 @@ msgstr "" #: templates/settings.php:65 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "بدون هیچ گونه حفره یا سوراخ، به عنوان مثال، \"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,7 +205,7 @@ msgstr "درگاه" #: templates/settings.php:73 msgid "Backup (Replica) Host" -msgstr "" +msgstr "پشتیبان گیری (بدل) میزبان" #: templates/settings.php:73 msgid "" @@ -214,31 +215,31 @@ msgstr "" #: 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" -msgstr "" +msgstr "استفاده ازTLS" #: templates/settings.php:76 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "علاوه بر این برای اتصالات LDAPS از آن استفاده نکنید، با شکست مواجه خواهد شد." #: templates/settings.php:77 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "غیر حساس به بزرگی و کوچکی حروف LDAP سرور (ویندوز)" #: templates/settings.php:78 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "غیرفعال کردن اعتبار گواهی نامه SSL ." #: templates/settings.php:78 msgid "" @@ -248,7 +249,7 @@ msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "توصیه نمی شود، تنها برای آزمایش استفاده کنید." #: templates/settings.php:79 msgid "Cache Time-To-Live" @@ -260,11 +261,11 @@ 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." @@ -272,23 +273,23 @@ msgstr "" #: templates/settings.php:84 msgid "Base User Tree" -msgstr "" +msgstr "کاربر درخت پایه" #: templates/settings.php:84 msgid "One User Base DN per line" -msgstr "" +msgstr "یک کاربر پایه 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,31 +297,31 @@ msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" -msgstr "" +msgstr "گروه درخت پایه " #: templates/settings.php:87 msgid "One Group Base DN per line" -msgstr "" +msgstr "یک گروه پایه 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" @@ -328,21 +329,21 @@ 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 "" @@ -358,15 +359,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 "به طور پیش فرض نام کاربری داخلی از ویژگی UUID ایجاد خواهد شد. این اطمینان حاصل می کند که نام کاربری منحصر به فرد است و کاراکترها نیاز به تبدیل ندارند. نام کاربری داخلی دارای محدودیت است که فقط این کاراکتر ها مجاز می باشند: [ a-zA-Z0-9_.@- ]. بقیه کاراکترها با مکاتبات ASCII آنها جایگزین میشود یا به سادگی حذف شوند. در برخورد یک عدد اضافه خواهد شد / افزایش یافته است. نام کاربری داخلی برای شناسایی یک کاربر داخلی استفاده می شود.همچنین این نام به طور پیش فرض برای پوشه خانه کاربر در ownCloud. همچنین یک پورت برای آدرس های دور از راه است، به عنوان مثال برای تمام خدمات *DAV. با این تنظیمات، رفتار پیش فرض می تواند لغو گردد. برای رسیدن به یک رفتار مشابه به عنوان قبل، ownCloud 5 وارد نمایش ویژگی نام کاربر در زمینه های زیر است. آن را برای رفتار پیش فرض خالی بگذارید. تغییرات اثربخش خواهد بود فقط در نگاشت جدید(اضافه شده) کاربران LDAP ." #: templates/settings.php:103 msgid "Internal Username Attribute:" -msgstr "" +msgstr "ویژگی نام کاربری داخلی:" #: templates/settings.php:104 msgid "Override UUID detection" -msgstr "" +msgstr "نادیده گرفتن تشخیص UUID " #: templates/settings.php:105 msgid "" @@ -377,15 +378,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 "به طور پیش فرض، ownCloud ویژگی UUID را به صورت اتوماتیک تشخیص می دهد. ویژگی UUID برای شناسایی کاربران و گروه های LDAP استفاده می شود. همچنین، نام کاربری داخلی بر پایه UUID ایجاد خواهد شد، در غیر اینصورت در بالا مشخص نشده باشد. شما می توانید تنظیمات را لغو کنید و یک ویژگی از انتخابتان را تصویب کنید. شما باید مطمئن شوید که ویژگی انتخاب شده شما می تواند آورده شود برای کاربران و گروه ها و آن منحصر به فرد است. آن را برای رفتار پیش فرض ترک کن. تغییرات فقط بر روی نگاشت جدید (اضافه شده) کاربران و گروه های LDAP ." #: templates/settings.php:106 msgid "UUID Attribute:" -msgstr "" +msgstr "صفت UUID:" #: templates/settings.php:107 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "نام کاربری - نگاشت کاربر LDAP " #: templates/settings.php:108 msgid "" @@ -400,19 +401,19 @@ 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 از نام های کاربری برای ذخیره و تعیین داده (متا) استفاده می کند. به منظور دقت شناسایی و به رسمیت شناختن کاربران، هر کاربرLDAP باید یک نام کاربری داخلی داشته باشد. این نیازمند یک نگاشت از نام کاربری ownCloud به کاربرLDAP است. نام کاربری ساخته شده به UUID از کاربرLDAP نگاشته شده است. علاوه بر این DN پنهانی نیز بخوبی برای کاهش تعامل LDAP است، اما برای شناسایی مورد استفاده قرار نمی گیرد. اگر DN تغییر کند، تغییرات توسط ownCloud یافت خواهند شد. نام داخلی ownCloud در تمام ownCloud استفاده می شود. پاک سازی نگاشت ها در همه جا باقی مانده باشد. پیکربندی پاک سازی نگاشت ها حساس نیست، آن تحت تاثیر تمام پیکربندی های LDAP است! آیا هرگز نگاشت را در یک محیط تولید پاک کرده اید. نگاشت ها را فقط در وضعیت آزمایشی یا تجربی پاک کن." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "پاک کردن نام کاربری- LDAP نگاشت کاربر " #: templates/settings.php:109 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" +msgstr "پاک کردن نام گروه -LDAP گروه نقشه برداری" #: templates/settings.php:111 msgid "Test Configuration" -msgstr "" +msgstr "امتحان پیکربندی" #: templates/settings.php:111 msgid "Help" diff --git a/l10n/fa/user_webdavauth.po b/l10n/fa/user_webdavauth.po index 1310a3b5e67ef063de596dde1590f9a83f98e0df..fb3e2b908a94f83307c4517f0165901591dba858 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 54b8f265ecdecfcc48477be2f296d813d4b9b6a5..aa905592912239eb4e3e5f297c9452e25740944e 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -142,55 +142,55 @@ msgstr "joulukuu" msgid "Settings" msgstr "Asetukset" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "tänään" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "eilen" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "viime kuussa" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "viime vuonna" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "vuotta sitten" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 584f06bb3ac1a72c2e1ee1fdebabd8702ff0d5ce..3b3ced9cbbe5db486fbf5e95e2d844399ee57f8f 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -129,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:465 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "korvaa" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "ehdota nimeä" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "peru" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "kumoa" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "suorita poistotoiminto" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -205,7 +205,7 @@ msgstr "" msgid "Name" msgstr "Nimi" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Koko" @@ -213,19 +213,19 @@ msgstr "Koko" msgid "Modified" msgstr "Muokattu" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} tiedostoa" @@ -306,10 +306,6 @@ 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" @@ -332,19 +328,19 @@ msgstr "Tiedostoja tarkistetaan, odota hetki." msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "kansio" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "kansiota" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "tiedosto" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "tiedostoa" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 121ee34456c61387a94f6969375461ebb3c79223..55f0c14c32745b34062fceab7400d569a757d694 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 79d938194481dadc6351d01c53a54bff31242378..ed3ecf923dbd27c795ae121666e79781d50eda6e 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 20243aeeb1a4a7536818da16f215103b03ec8332..630093f99421869931a5dabf3054f90d3c4202b5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 4ef079a0d24400a3b5bc7c8d3a04c57fa26755a7..2aa3bd74ad87efe78558ba142912c32efced894b 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "sekuntia sitten" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d minuuttia sitten" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 tunti sitten" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d tuntia sitten" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "tänään" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "eilen" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d päivää sitten" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "viime kuussa" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d kuukautta sitten" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "viime vuonna" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "vuotta sitten" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index e0e397fa1a49c87cea350f1815d338ffae572702..608c785620919e538bb79b396cf91d117c2e49da 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -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" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index cf40a709121aaa897572a14b417a7020306d9623..a073d8d7b1f563b99868237a97e016fc0ee1bfb1 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 fbf1c96a9615c03babc0050860f98f1d01e6c8bd..c7ff62893d6f2e09b19da1e77b56377e26e0ceab 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -146,55 +146,55 @@ msgstr "décembre" msgid "Settings" msgstr "Paramètres" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "aujourd'hui" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "hier" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "le mois dernier" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "l'année dernière" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "il y a plusieurs années" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index f9597cdb7b711afcc5ddc19b72043744a26a3cb3..d66d22cda032295e7081157987cb0225a37d0ef5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: Adalberto Rodrigues <rodrigues_adalberto@yahoo.fr>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "En attente" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "remplacer" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "Suggérer un nom" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "annuler" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a été remplacé par {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "annuler" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "effectuer l'opération de suppression" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fichier en cours d'envoi" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Taille" @@ -215,19 +215,19 @@ msgstr "Taille" msgid "Modified" msgstr "Modifié" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 fichier" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} fichiers" @@ -308,10 +308,6 @@ 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" @@ -334,19 +330,19 @@ msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." msgid "Current scanning" msgstr "Analyse en cours" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "dossier" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "dossiers" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "fichier" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "fichiers" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 15f78cce24d6f9680069532669fd907efe8fe8f5..2d97f75a7af37a76a9024e722fd80689af19c3b7 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 146e4862f10e196d313f7eec727e91c041c84932..411ae0cd07664c8827852a7c7a5580eff8d8c96d 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 5f216d725ccb914b04d756b6afc72f37d8f21954..97a6c904a6d436037beaee4f39174c7e11fcbacc 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 cb873a405aacf477b6f19cf27882827b4e0f0f8d..6fd5755248448f7c992c782cce43acc952eefed8 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "il y a quelques secondes" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "il y a une minute" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "il y a %d minutes" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "Il y a une heure" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "Il y a %d heures" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "aujourd'hui" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "hier" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "il y a %d jours" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "le mois dernier" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "Il y a %d mois" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "l'année dernière" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "il y a plusieurs années" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index ff449acd0b8d6a39bdf36c1e798eb3def6b697f7..911dfb66fdc0c38f9b1a43d4385e32857d7bcf7a 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 938a55346c2241f489bf465ce1125adb6b147700..bb97ee1a6991a5a18420c625b188b20e6458c8a9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 2c9e5e82155f2d84b8941ff87f3db41cdb1149dc..a5d4de8d303d764b4635af439ed93ba3eff08831 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -142,55 +142,55 @@ msgstr "decembro" msgid "Settings" msgstr "Axustes" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "Vai 1 hora" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "hoxe" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "onte" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "hai {days} días" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "último mes" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "meses atrás" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "último ano" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 4f0ee37d5f34cd402e1bf7f6961cb55aa57df5c4..f2186a97b6c2c47b10327eed85f68b3801054a42 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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:465 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "substituír" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "suxerir nome" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "substituír {new_name} por {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "desfacer" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "realizar a operación de eliminación" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "Enviándose 1 ficheiro" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Tamaño" @@ -213,19 +213,19 @@ msgstr "Tamaño" msgid "Modified" msgstr "Modificado" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} ficheiros" @@ -306,10 +306,6 @@ 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" @@ -332,19 +328,19 @@ msgstr "Estanse analizando os ficheiros. Agarde." msgid "Current scanning" msgstr "Análise actual" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "directorio" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "directorios" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "ficheiro" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "ficheiros" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 2c525398b3b3b4f74ac41dff10f5e500b8aa161c..492d6ac066745a35dc62bb10baeb55a22ed4ba34 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 dc9aae373111c7df5962fccb6f5fe8f2cb7a8688..8eff6c19a30e847857fec98167e2b0c02efcc623 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 7294e3105889a8484d3edfee87ce59c4e77580c3..7a733444c64e08705be52507bfc51c8a2b0cda1a 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 726f6d3e23c153cddd1a257b573ca74888f5d37d..9a1dd5e34b5548302d292154617d7e961e6cd37c 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "segundos atrás" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "hai 1 minuto" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "hai %d minutos" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "Vai 1 hora" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "Vai %d horas" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "hoxe" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "onte" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "hai %d días" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "último mes" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "Vai %d meses" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "último ano" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 12fa40426e8e1d2739c7fdf619b5d62ee7cd7f70..5f5f3ffbab5e3185040ab4a9abe3af0bd3789c91 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/gl/user_ldap.po b/l10n/gl/user_ldap.po index f97c70dae2971c10786db6c8583c78f919d2a4d4..d4f1047f37111a4a856aad6caa014115501e2ce3 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 e74b032c3f9b2c7f40a999dc8c1aa9dadf62cdc0..c791668b252d5ffeea9e3b330bb5761b95fd75c8 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -142,55 +142,55 @@ msgstr "דצמבר" msgid "Settings" msgstr "הגדרות" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "שניות" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "היום" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "אתמול" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "חודשים" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "שנים" diff --git a/l10n/he/files.po b/l10n/he/files.po index 10fb171a2f42511cbd3da94eee7ec4c8d1c0d9b1..ab0750b79c6ef02aa71c70fc666e5b98d372e566 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "ממתין" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "החלפה" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "הצעת שם" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "ביטול" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} הוחלף ב־{old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "ביטול" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "ביצוע פעולת מחיקה" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "קבצים בהעלאה" @@ -205,7 +205,7 @@ msgstr "" msgid "Name" msgstr "שם" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "גודל" @@ -213,19 +213,19 @@ msgstr "גודל" msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "תיקייה אחת" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "קובץ אחד" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} קבצים" @@ -306,10 +306,6 @@ msgstr "אין כאן שום דבר. אולי ברצונך להעלות משהו msgid "Download" msgstr "הורדה" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "הסר שיתוף" @@ -332,19 +328,19 @@ msgstr "הקבצים נסרקים, נא להמתין." msgid "Current scanning" msgstr "הסריקה הנוכחית" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "קובץ" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "קבצים" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index d3583debe65056f747e2ebef68306b77d830cd0c..ac7dbd95139e611e203c8309078b58e62d190c86 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 6bfd88f2485e0728f254763d45650f570f9b3582..ec6da84cbb10c9913e6893800d70706a2b5915c8 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/he/files_trashbin.po index 4acdacf3fa2c5fdf135609b1043a2df02ebe9fda..4c07ca406db76109c5647711caebc0209b4ef976 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 d8537e7e35df047d04dd577da7250f9dc3526393..b9e04ea6a0ad439e11b73ca17fbc8e7b2ddae6c2 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "שניות" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "לפני %d דקות" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "לפני שעה" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "לפני %d שעות" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "היום" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "אתמול" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "לפני %d ימים" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "חודש שעבר" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "לפני %d חודשים" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "שנה שעברה" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "שנים" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 417d9065513286e61209b2a4a4f80f5768a5fadd..9edfe0e77681c60fa88a25ace61e845ced88dc89 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/he/user_ldap.po index 536c381a96f17fa259382820b534f2ca29aead35..adefc7a7c048076bde65fc2e4e7b621e8b9a7fc7 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 89d4c2c966da57650d835d0410cf59e2aab9cabf..4f10a8b9dd2bf0ef5b9f24f5b943f22f0ab6ea1e 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -142,55 +142,55 @@ msgstr "दिसम्बर" msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 93dfd1173abfaf98061cb246f402c2c7275a3ba4..819c567d00120214440ec02c033865fb35a0ba05 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 6a42d2ccc66d5bfe8ed01fc05d06015993cf141e..77ee5211dddd5fe8dffcb76f29aa02423a7b3bc5 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-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index c408d2841b22d637afb89d846cbcfb2f4ca02e43..1b91087cbf95206507aad07a5ee9ebb236b5335b 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-11 02:17+0200\n" -"PO-Revision-Date: 2013-07-11 00:12+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 06:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 2cafa6832f4adb604e465cab7d4f0a0852c5edc0..671099b0f846e660378fe8c3a73a701d849e81a7 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-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index fe50693c2ddc9d19f32464309c7b055958cd757b..8765fee40032c4636fb38bedebb9c101069adb40 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-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 04fa6f62841dee88a440726b0c3cad03807f6cf7..7257fc6e73264b196ffc7e4e15e6ac208d24fab0 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "Prosinac" msgid "Settings" msgstr "Postavke" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "danas" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "jučer" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "mjeseci" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "godina" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index a150b9b3f8956f9972f0087d586d62e4f75f3ad5..f0f3111f9885f8bb9f14eba5dba451581450932e 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "U tijeku" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "predloži ime" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "odustani" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "vrati" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "datoteke se učitavaju" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Ime" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Veličina" @@ -212,19 +212,19 @@ msgstr "Veličina" msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ 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" @@ -331,19 +327,19 @@ msgstr "Datoteke se skeniraju, molimo pričekajte." msgid "Current scanning" msgstr "Trenutno skeniranje" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "datoteka" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "datoteke" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 2e6b182caae73cc55de3a51aa56597c82c43385d..ba01351ded366940cae0a6c8bb7e6af9f0eedf28 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 48734d7ebb1c538d0354bb5b5dd6d3a5dcfb2145..5cd0ceff1cffe405438a7b903b216a4dee6f3461 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/hr/files_trashbin.po index 33c05476ed782bde3f8ffb3914099037dcdc8836..5959bdb23d99dbf184db21888d14f8d30a4f6a7c 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 2f5d0e26ec75fcdb18ed5e65cc0fa0f737da8f1a..c2c3dfb07245d7bfc3d5af91fa2471cb86e1103b 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "sekundi prije" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "danas" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "jučer" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "prošli mjesec" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "prošlu godinu" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "godina" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 851565578cafb3be2b4b50fe34e227a9a9e5b0af..538db6733453e42d0d1a0e60630168a88a06ea65 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/hr/user_ldap.po index c917885be4dd0053394ff5708e91e8d356f9863c..2c00485e3ed8efac25e361a8a400263543cdd538 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 578c9f3672b5349da8cd6e634c1bbf704eb849be..340e7d14cf68b6fc99ee6fd748bda46991379a1c 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -142,55 +142,55 @@ msgstr "december" msgid "Settings" msgstr "Beállítások" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "ma" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "tegnap" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "több hónapja" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "tavaly" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "több éve" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index e24c2f6cb4ed4c1788b143161fc4d51f33b80fe1..a8984abe07fb961f7decab4746b01a1736b986d9 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Folyamatban" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "írjuk fölül" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "legyen más neve" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "mégse" -#: js/filelist.js:349 +#: js/filelist.js:350 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:350 msgid "undo" msgstr "visszavonás" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "a törlés végrehajtása" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Méret" @@ -213,19 +213,19 @@ msgstr "Méret" msgid "Modified" msgstr "Módosítva" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} mappa" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 fájl" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} fájl" @@ -306,10 +306,6 @@ msgstr "Itt nincs semmi. Töltsön fel valamit!" msgid "Download" msgstr "Letöltés" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "A megosztás visszavonása" @@ -332,19 +328,19 @@ msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" msgid "Current scanning" msgstr "Ellenőrzés alatt" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "mappa" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "mappa" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "fájl" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "fájlok" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index c5bf54454d3a7a296e09166e8af84c4c73b2e97c..6a19b9a03610b358f332560bc6376d30c4b7f981 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 cdba93d1d9f12254a4e6ed01b3244269a8fb5e92..2218b2ef357ecd9207114f808dd65b5952012890 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/hu_HU/files_trashbin.po index d301c2809c22ac542541d674070a3c67ff7dacd8..318bb40e192ff0e016e73ae12a7d2840296867c9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 f92c44fc27bf5e09037dd70d7b1180067807ed8c..28256a8e622842ef32eaa24592b7c3bd456d8037 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "pár másodperce" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 perce" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d perce" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 órája" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d órája" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "ma" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "tegnap" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d napja" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "múlt hónapban" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d hónapja" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "tavaly" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "több éve" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index de4403122ff2ec602e921dc5e860940fd6235819..f3d35f128b16b61bc223199411dc4b16bbf980d7 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/hu_HU/user_ldap.po index ab8f850663b99511446031958919ab11999f962e..5b8246c989aaa192fb784051183232216c3810c0 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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/files.po b/l10n/hy/files.po index 403b2f0f50dc7f40bb2e7a7e25013b37ec41119f..00dd1d10da6124d326921ba004aab9b682d145ec 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "Բեռնել" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 3f92162ceac126f17bcc4a066e131536d66a7840..aabba32842b2500110c6015c81e30020500b690e 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-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-22 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 7d5c808ffadfa5bf98fd392160efefd6dc2f5ffe..88ac185929fa98f1ad264e209202807bbc0dd50c 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index db446579ab78c457d06de0b3c539131478b9cfe0..442e45f1fa29ca124d65db39459f399b7831b90e 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-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-22 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 532f06d1ed3e4b3811711bac1bc0d5899b33e633..8b4e6e947eeee4285d5e9902ac6d8f3f0fb5fe32 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 6b0e68d07d83656add6196b39b866e51daa3dc43..33ec984fba6d63a59e4aa13b55620d2487b8d887 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "Decembre" msgid "Settings" msgstr "Configurationes" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 96bb92457d530815b3f3a9b91b7ccf411803379e..397ecb950bf925795977d0a451ab7e40925eb556 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Nomine" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Dimension" @@ -212,19 +212,19 @@ msgstr "Dimension" msgid "Modified" msgstr "Modificate" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ 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 "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index d4fd88225a8c68038d53e59ed7552dc638055cbc..7709c45b8b5c3e781ae494a025e214be7842d712 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 f166b57e749f0238f0375e1d2b99fb501c2d1b9a..438da584f138b357abcc8304460c4bd7710abd9f 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/ia/files_trashbin.po index 6a094e0b195390d9a785165a0d0d3a6c7c6b247e..5a68a66137dc58f2631e3c4ec7f4ef95f1b94da2 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 73fcc8afe58c415516e8c665159c882809edae29..6584c898d730767562116cb362c9e8bad80080b3 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index f8e6e202bedde931f7dc494cdf3933cacec08181..6115a2a2c40df5b6260b28cc6690c20cd3add77a 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/ia/user_ldap.po index 3bfbfe44234684098ce75fd1c807efe292d6686e..0d14cecf6af420bf550039ecc6d0c9eca89fc161 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 8def6331266ba9a03d71e2751dd3d16115e85717..f6f64595ee2dd3f60e2cb2c029af2ff1cbec7a3c 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "Desember" msgid "Settings" msgstr "Setelan" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 menit yang lalu" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} menit yang lalu" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} jam yang lalu" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "hari ini" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "kemarin" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} hari yang lalu" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} bulan yang lalu" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "beberapa tahun lalu" diff --git a/l10n/id/files.po b/l10n/id/files.po index 5f92e9ffdd0cfdb0419379fef055289a10632dca..3b6103ae440d721a1e83393abf57ac456b8cc51e 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Menunggu" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} sudah ada" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ganti" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "sarankan nama" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "mengganti {new_name} dengan {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "urungkan" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "Lakukan operasi penghapusan" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 berkas diunggah" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Ukuran" @@ -212,19 +212,19 @@ msgstr "Ukuran" msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 folder" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} folder" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 berkas" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} berkas" @@ -305,10 +305,6 @@ 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" @@ -331,19 +327,19 @@ msgstr "Berkas sedang dipindai, silakan tunggu." msgid "Current scanning" msgstr "Yang sedang dipindai" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "berkas" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "berkas-berkas" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 9f160f0683f279a4247e47f3e026b0df76b42729..ec59f66b72c8f854c599c8d1a2df30973268dec3 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 e9bf66bfe15938bc29f7eca7547eae443885aebb..d1be034c8c9503b6480571765297abcc6f9f9fdc 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/id/files_trashbin.po index 3ee77810c35b7e78692380573179430aa794f6f0..97748a9f6dc9221867d5a04261102977c4a5253f 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 e1fdc85d7db80d28ea6a2517295fff4e11fe615a..9101f9d16d16990aabf9f94afb2232b088a2bb02 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 menit yang lalu" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d menit yang lalu" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d jam yang lalu" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "hari ini" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "kemarin" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d hari yang lalu" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "bulan kemarin" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d bulan yang lalu" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "tahun kemarin" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "beberapa tahun lalu" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 60b169fe6c5d6b3ebb844a6ca081aadff22c13ac..2db3460d8ffc967eda98a8e66062db91456b300d 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/id/user_ldap.po index 622c3fc7753e8a895ca36b3849746cee1751355e..00117036bb94bb08854bf209719a4084815e57c3 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 37c02976ccbe8b6ad056b5e1f60012104641a8d4..8c31c9cf7d1b8233dc07c9fdf5418ea537dac5cb 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -142,55 +142,55 @@ msgstr "Desember" msgid "Settings" msgstr "Stillingar" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "sek." -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "Fyrir 1 mínútu" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "í dag" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "í gær" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "síðasta ári" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "einhverjum árum" diff --git a/l10n/is/files.po b/l10n/is/files.po index bd879e35614293a86c2b2fb87bd45069bd953ff6..154070b4e3a2fe787148c408e653113b6f46f024 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Bíður" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "yfirskrifa" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "stinga upp á nafni" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "hætta við" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "yfirskrifaði {new_name} með {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "afturkalla" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 skrá innsend" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Stærð" @@ -212,19 +212,19 @@ msgstr "Stærð" msgid "Modified" msgstr "Breytt" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} möppur" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 skrá" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} skrár" @@ -305,10 +305,6 @@ 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" @@ -331,19 +327,19 @@ msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." msgid "Current scanning" msgstr "Er að skima" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index ec5fae4dd2e5c3e0db9f3dfac5b9d2f7a177a84f..8e6a37e14bb707bca3f5c1b0d744a1f843873910 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 a3d95c2291a7a0898c433e911d42bf0662cff8a8..2e18dacdb27b7e874ff30424f32da256ef74fd42 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/is/files_trashbin.po index aa4b59674d27638696c10a385d79142d659463d7..27281ec01bd29d9351e50e9e9f179f6f1bc118d2 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 899640a86d770c6dc99abcb10a3f131d79483664..c45fec0e0953f0399033102209534ebbe4c9caf7 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "sek." -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "Fyrir 1 mínútu" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "fyrir %d mínútum" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "fyrir %d klst." -#: template.php:118 +#: template.php:100 msgid "today" msgstr "í dag" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "í gær" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "fyrir %d dögum" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "síðasta mánuði" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "fyrir %d mánuðum" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "síðasta ári" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "einhverjum árum" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 9e7fad32095f0cf7a178bb6a687eb94554420474..cb22fb7c471f5fe2fb4ec3cf90a8bbbb6f5d6801 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/is/user_ldap.po index 044472fb725cbd08fea236479bc16407f7b86a67..5060f496938e317b316f4870ad3e91a273d5cc37 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 07e90be170a59ef925f7c6085bf235393d29ace8..5a660d4f52810194d80ca75ee85b6e0144d43ac2 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -144,55 +144,55 @@ msgstr "Dicembre" msgid "Settings" msgstr "Impostazioni" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "oggi" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "ieri" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "mese scorso" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "mesi fa" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "anno scorso" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "anni fa" diff --git a/l10n/it/files.po b/l10n/it/files.po index 8e9941b75128e6dd65f47ee0101c3ef700b0c307..2f93ed558eaec01a78690f6f81620fde147abe0c 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: Vincenzo Reale <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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:465 msgid "Pending" msgstr "In corso" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "suggerisci nome" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "annulla" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "annulla" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "esegui l'operazione di eliminazione" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Dimensione" @@ -214,19 +214,19 @@ msgstr "Dimensione" msgid "Modified" msgstr "Modificato" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 file" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} file" @@ -307,10 +307,6 @@ 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" @@ -333,19 +329,19 @@ msgstr "Scansione dei file in corso, attendi" msgid "Current scanning" msgstr "Scansione corrente" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "cartella" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "cartelle" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "file" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "file" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 2db10de2d929c83fe72d2cb028f5c4b2248397c9..5a8269f30a7e96d8e3b2736fe6d66d0e71859bb5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 f7e8fa0aa6cfbc0f6ae64dbd8a501a8cb7ceca4b..e124ba4b52b10f9acdc4915d32ac0693fde555a4 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/it/files_trashbin.po index 1d22361b4cf39841b087117b02358c3988ed29fa..bb02476462bae3734e986ecfb0384863a1ca2b6c 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 f5219651d24e11c522e72ec08df2c09b71b26e45..5bf215820ce5daa77b13254300fa2b9ded195527 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "secondi fa" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "Un minuto fa" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d minuti fa" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 ora fa" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d ore fa" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "oggi" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "ieri" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d giorni fa" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "mese scorso" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d mesi fa" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "anno scorso" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "anni fa" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index f317a2df9bbf319cf0c28218b018e6fced46d843..e0f90ca8562a15643a44056f479a97fe2b2b5f61 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/it/user_ldap.po index f53293ea926fcb046e6500dd86345388c2f905fd..58e0819c266f3966d037c2706f68fb2287c62b07 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 3a4c820f20bb5c9c353b54f330a4d5f7be1bda2d..1aa9219214bc91d32500a9c77335c8f57479bb90 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -143,55 +143,55 @@ msgstr "12月" msgid "Settings" msgstr "設定" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 時間前" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} 時間前" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "今日" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "昨日" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} 日前" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "一月前" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "月前" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "一年前" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "年前" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index f96e5de333f8933d620c350cce5d6a234ecacf6c..c5b7bbc02c954cc584dc62c1bcfe371a032de7cd 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: pabook <pabook.32@gmail.com>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -132,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:465 msgid "Pending" msgstr "中断" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在しています" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "置き換え" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "推奨名称" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "キャンセル" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} を {new_name} に置換" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "削除を実行" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "ファイルをアップロード中" @@ -208,7 +208,7 @@ msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予 msgid "Name" msgstr "名前" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "サイズ" @@ -216,19 +216,19 @@ msgstr "サイズ" msgid "Modified" msgstr "変更" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 フォルダ" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 ファイル" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} ファイル" @@ -309,10 +309,6 @@ msgstr "ここには何もありません。何かアップロードしてくだ msgid "Download" msgstr "ダウンロード" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "サイズ(MB)" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "共有解除" @@ -335,19 +331,19 @@ msgstr "ファイルをスキャンしています、しばらくお待ちくだ msgid "Current scanning" msgstr "スキャン中" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "ディレクトリ" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "ディレクトリ" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "ファイル" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "ファイル" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index b686d9f9a017e5a2fc3fe86f848d5fe964b77cd1..e4b7d3f9f14b3cdd8bda97317a1f53bfdd8c3699 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 b95155afdb307e098ae9c09c349936f1919ec537..94449225a702706f9f2b9f26d63cb97a2ca45102 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index e793fab7398e7483bb4a221ba02c466de9976e07..b294c072b42f0c18e443861e0af0fb5f83d23c7e 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 7d89acb8ee794f5f5fa22fedb5b1c80012672e11..9f2e09d1eea7cbb59bc5b034dadbe09dc3a1e073 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>をよく確認してください。" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "数秒前" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 分前" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d 分前" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 時間前" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d 時間前" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "今日" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "昨日" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d 日前" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "一月前" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d 分前" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "一年前" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "年前" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index aa8c8d41fb21bc437116e75f7ee50a4f2459e17e..42994b93756fbc7b165f54ee5479c63647bbb369 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index dbc24c1e493c31a6367298b0558e5c76f01294a5..1a88890888535a012dd5a8e9282256e068390518 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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/files.po b/l10n/ka/files.po index 1bc49974a727e6e5aeae8023e3decfb8b14eddb2..3a8f9e4f11152aa0985fdabed345dac74ad552bb 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "გადმოწერა" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index af6559191a91902c9c833c01f21813e40d3cc679..8764d0d29d51a1050e33629b6cc471425dcf6f67 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 4beea6c70ac08eaccbf9b03188bddf257a5c87b6..c9466a421bbbec977fa88075c55e3698ad7b48f4 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "დეკემბერი" msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} საათის წინ" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "დღეს" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} თვის წინ" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "წლის წინ" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 942595fa57d5c0237d5ad829dd7a33d0e7de07f5..d28e48c7d046e174c0dedbc0fc87144c18952c44 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "შეცვლა" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "სახელის შემოთავაზება" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "უარყოფა" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} შეცვლილია {old_name}–ით" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "მიმდინარეობს წაშლის ოპერაცია" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "ფაილები იტვირთება" @@ -204,7 +204,7 @@ msgstr "დაუშვებელი ფოლდერის სახელ msgid "Name" msgstr "სახელი" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "ზომა" @@ -212,19 +212,19 @@ msgstr "ზომა" msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 საქაღალდე" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 ფაილი" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} ფაილი" @@ -305,10 +305,6 @@ msgstr "აქ არაფერი არ არის. ატვირთე msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "გაუზიარებადი" @@ -331,19 +327,19 @@ msgstr "მიმდინარეობს ფაილების სკა msgid "Current scanning" msgstr "მიმდინარე სკანირება" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 00c459658c49bab05a57973aa0eda3f8b75d56ed..958341777fd0ddbc835130a94fef51d2c1051214 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 20fa3f48e2213f68f5c1f2752b708640087b58f3..cbc2a3df5f052b09e90177d34766bb8fbef7298b 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index 67041b82d67133d1f0bcdea38bb42fd6186956f9..bcfe20347afbee5a61bbe2de9f69205e3cae74ee 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 4c59beeb10e964b9c13eabf22ff0a679cd35f3dc..ceb6d1d3e759e8f95b7e8c77ba81b96931cf1cab 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "წამის წინ" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d წუთის წინ" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 საათის წინ" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d საათის წინ" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "დღეს" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "გუშინ" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d დღის წინ" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "გასულ თვეში" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d თვის წინ" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "ბოლო წელს" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "წლის წინ" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index e72b4638cedca95ec475eabd478d114c203e8a6f..fe6c9ebf78e87f5891942961db0c02131e0c3d33 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 2f625761f250b1350333db9813a29f8262067310..6616c702b5d77903671be1cc76fb65730b178597 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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/files.po b/l10n/kn/files.po index ed1e91dc9932ec9d5888871ddbc707e7b4f1a0c9..83638dc16fdc44bf38188d058fe2aa71ca870fd4 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-11 02:16+0200\n" -"PO-Revision-Date: 2013-07-11 00:17+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 08c354d1e180c50237b12660b2d56757e4625413..6686f6ffc545320972e91fa9f953d48aaa7ee80e 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -142,55 +142,55 @@ msgstr "12월" msgid "Settings" msgstr "설정" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "초 전" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1분 전" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes}분 전" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1시간 전" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours}시간 전" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "오늘" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "어제" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days}일 전" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "지난 달" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months}개월 전" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "개월 전" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "작년" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "년 전" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index dca4de147095de79949e7578d72515d615b06247..3ab2428e524e609812b51c5098f5350e41289351 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "대기 중" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "바꾸기" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "이름 제안" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "취소" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{old_name}이(가) {new_name}(으)로 대체됨" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "되돌리기" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "삭제 작업중" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "파일 업로드중" @@ -206,7 +206,7 @@ msgstr "폴더 이름이 유효하지 않습니다. " msgid "Name" msgstr "이름" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "크기" @@ -214,19 +214,19 @@ msgstr "크기" msgid "Modified" msgstr "수정됨" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "폴더 1개" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "파일 1개" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "파일 {count}개" @@ -307,10 +307,6 @@ msgstr "내용이 없습니다. 업로드할 수 있습니다!" msgid "Download" msgstr "다운로드" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "공유 해제" @@ -333,19 +329,19 @@ msgstr "파일을 검색하고 있습니다. 기다려 주십시오." msgid "Current scanning" msgstr "현재 검색" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "파일" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "파일" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index a1d3a191510443054042ec7f5ffe7c78ca8fcb42..e922efb9d188256391553853d49c0fb32410daea 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 02a9e244c53b5d390568dbf5d8aed51a4f6c5876..4b5362ee6a5e35404174159a885625a548b61cc0 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/files_trashbin.po b/l10n/ko/files_trashbin.po index 073246bc5b5bee99d1c11d10ccb65ea78335a2c1..1cf0f2b42e673202d24c1644bada060b00f7a3aa 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 b4ef920f6ad8c4c8ed9a9bdc15b93c1acf044d05..5d3a6006cfcdd99b566752aa0a9aaa281b74fd19 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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>를 다시 한 번 확인하십시오." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "초 전" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1분 전" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d분 전" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1시간 전" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d시간 전" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "오늘" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "어제" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d일 전" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "지난 달" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d개월 전" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "작년" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "년 전" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 7236f8c2008421e776f131ee7e328336fa4cad26..65951a5b4234719dc7f6e32c031def6905908c08 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/ko/user_ldap.po index 1a0657eab0c74c07f01d792bb435f921bf9f9206..ac0fdc149bcb7c0b1d201841a5bd8d6d50b2abe3 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 b85f2bb3f60dcfa8e95a0ca24f8d3b9b0a437841..07411e403c5b1917d0c5dead1b5f9cff8263fff7 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "" msgid "Settings" msgstr "دهستكاری" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 1e0ee9fcc879108eb824edffe3d966f7ff39c13c..88d90eb17126eb328d030ab0160223dba8750c89 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "ناو" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "داگرتن" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 7ce2e687cd25688beabee71c1496c2341f252834..33fd2ca33176b3c0d5b483fbf042fd308baee2c2 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 60e17753c0cb48ebc613dcd53306a4e3e70776a8..07a814d4aa05837e9e86ba5d7007dfd93ebbf730 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 0f312a8ccbc9496b42b0ae1c79c9fe0460f79018..4ce0e26a1a6868623f981f0a6ff2f4037df5514f 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-11 02:17+0200\n" -"PO-Revision-Date: 2013-07-11 00:12+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 06:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 94d47978b4c6d376768c6194959f0b2d5c787d51..5bb280e207467f9a10a44ecdb0fb7e469d73d749 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 75dd618f0b945a60dc293139d86bc18f6e1e483e..2c3421a73dff1c72e69e57a33f32234e4f050551 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 2362871fff54fa7ce46bd1d5dde18642a04ac485..fd02d8d7f50568a1356d773bc57e3c55eada11e9 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -142,55 +142,55 @@ msgstr "Dezember" msgid "Settings" msgstr "Astellungen" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 Minutt hir" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "virun {minutes} Minutten" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "virun 1 Stonn" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "virun {hours} Stonnen" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "haut" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "gëschter" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "virun {days} Deeg" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "leschte Mount" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "virun {months} Méint" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "Méint hir" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "Joren hir" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 840b67d24e9dfb94094b470bf8a954f1eaab0693..5d433f9646c96f473ec880222a51a292e31965e6 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Numm" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Gréisst" @@ -212,19 +212,19 @@ msgstr "Gréisst" msgid "Modified" msgstr "Geännert" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ 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" @@ -331,19 +327,19 @@ msgstr "Fichieren gi gescannt, war weg." msgid "Current scanning" msgstr "Momentane Scan" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "Datei" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "Dateien" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 400132aab91a0c37e55c4d6ba7dd519a251338b2..349d3ad472475e47c25feca34fdc9307258a7080 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 08390ac710bd5d1a1ff5011a543916a261c428f0..5381bfb15d5741650686f658e1a5781065a3512a 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index fe26036eb09f6186592e1c9f18492c4b613a5cd9..9e82cc53997452d2a36fb8700245424fd2eecf6d 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 e7c68b830b0fd4c51a372c0ab6cc4de809b8177d..d3a86101acc32dcadf547af04a0a1fc3036979f9 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "Sekonnen hir" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 Minutt hir" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "vrun 1 Stonn" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "haut" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "gëschter" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "Läschte Mount" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "Läscht Joer" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "Joren hier" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 4248b41513cc0bd36dcdb20483a4be08e4ca0bf7..3427d85e092d6c44b1be937916c399b1f35be0a5 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/lb/user_ldap.po index fe622c428852044b241b843608b627c9980058da..b6c0f1b26110fc587473b0f996c2d8683d6075ce 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 388f5c5e74c7817ce20ec943e6ff319895e2e3cd..b1c24e17a4ca90b097a3e966c2625003a58d53c2 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -143,55 +143,55 @@ msgstr "Gruodis" msgid "Settings" msgstr "Nustatymai" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "Prieš {count} minutes" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "prieš 1 valandą" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "prieš {hours} valandas" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "šiandien" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "vakar" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "Prieš {days} dienas" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "prieš {months} mėnesių" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "praeitais metais" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "prieš metus" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 4742761bccdbc8bb8985ff3f12fc7f5abad8413f..5bed6cf5da65a492c0ae497e536c866270fb27f9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Laukiantis" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "pakeisti" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "pasiūlyti pavadinimą" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "ištrinti" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Dydis" @@ -213,19 +213,19 @@ msgstr "Dydis" msgid "Modified" msgstr "Pakeista" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 failas" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} failai" @@ -306,10 +306,6 @@ 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" @@ -332,19 +328,19 @@ msgstr "Skenuojami failai, prašome palaukti." msgid "Current scanning" msgstr "Šiuo metu skenuojama" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "failas" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "failai" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index e382b3182360e4a927dbfce9c10ae5f6095bfb25..78d9be75a8fc153aa4555e84d76fe2a2cb6e4506 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 079feb917612868ec84e9f68865dd550b16bcf45..4d00b1e8ed7449323f4d7dc58818c0db4b2f9826 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 0a26ad97041c441b44caf64c2e2ea0929c997e48..f0e0a3f47f4a83fcf09bf23fd30a9e023bf0615e 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 b615f2d22f7578644cf18b707480085cae3f886f..560bd877fb9b187641a69f74fbfed1e3ca132191 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "prieš sekundę" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "prieš %d minučių" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "prieš 1 valandą" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "prieš %d valandų" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "šiandien" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "vakar" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "prieš %d dienų" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "praeitą mėnesį" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "prieš %d mėnesių" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "praeitais metais" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "prieš metus" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 71fb60584d1fea8f17c5b0c8043b424c8316ef72..75b2e25991d8978c5132fcbd804c369b704d8a5a 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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,7 +450,7 @@ msgstr "Padėkite išversti" #: templates/personal.php:106 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:108 #, php-format @@ -460,7 +461,7 @@ msgstr "" #: templates/users.php:21 msgid "Login Name" -msgstr "" +msgstr "Vartotojo vardas" #: templates/users.php:30 msgid "Create" @@ -482,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" @@ -502,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 51e2e1afbfaab8c9bcec74672a511ccaa3e45abe..96cb20bf40da6d67e7b3718e63cf82f274c5612e 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 deb2d55883e9b52f12ec1f4a343eb94782829683..6d54f743919b63e5013c2fd9f4a0b2c8d2491867 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "Decembris" msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "pirms 1 minūtes" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "pirms {minutes} minūtēm" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "pirms {hours} stundām" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "šodien" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "vakar" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "pirms {days} dienām" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "pirms {months} mēnešiem" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "gadus atpakaļ" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 020eb857a66197b26fa67dfa6ec7ff5dc1298e3f..c35a0de3d7ccc6ee430b3445f2bb062efc8072c0 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} jau eksistē" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "ieteiktais nosaukums" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "aizvietoja {new_name} ar {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "atsaukt" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "veikt dzēšanas darbību" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "Augšupielādē 1 datni" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Izmērs" @@ -212,19 +212,19 @@ msgstr "Izmērs" msgid "Modified" msgstr "Mainīts" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 mape" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} mapes" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 datne" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} datnes" @@ -305,10 +305,6 @@ 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" @@ -331,19 +327,19 @@ msgstr "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet." msgid "Current scanning" msgstr "Šobrīd tiek caurskatīts" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "fails" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "faili" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index dd6bcd890f6c0710cce6d2bb354c8153b728e42f..6df1f0e4a43f0f0a1b881802e7e6be9eefe76bde 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 67e4f1c8adc12512cbcb38271645ba49e01004f4..4df382a6c133a82256b6bdf7302c6ae1d262c2be 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/lv/files_trashbin.po index 5340b1bf28ecf86896b4f282b1fc05e571d2fe68..48a4c6dcca27e27f75206d699c2834ac05c3a0ba 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 43789946855afc574652db17f2ef1ee1d2329b18..beb184be6306027d4a44e49e2c493f23877175d8 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "pirms 1 minūtes" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "pirms %d minūtēm" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "pirms %d stundām" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "šodien" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "vakar" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "pirms %d dienām" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "pagājušajā mēnesī" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "pirms %d mēnešiem" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "gājušajā gadā" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "gadus atpakaļ" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index c5151e2265c97c81332fadf5acd449f44faa3f76..7678b3970d9228b52943a928701bf50249ecdc95 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/lv/user_ldap.po index c2eec7ff9c6f6c15713d330bc80b0bba6aa924e6..9110e47a75f70f6ac198e9e33a5edefb9a3dd3fe 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 a34f071130251048bddaaa420d27bdc03bfcca27..930f1046d4f69bfe4d6edee59e8b2afc6f8a88ea 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "Декември" msgid "Settings" msgstr "Подесувања" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "пред 1 минута" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "пред {minutes} минути" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "пред 1 час" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "пред {hours} часови" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "денеска" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "вчера" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "пред {days} денови" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "минатиот месец" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "пред {months} месеци" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "пред месеци" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "минатата година" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "пред години" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 8e1175ba3eb1a5eb802fdfea00580a74b3812091..1be5019e7df317ccdfdc3a794774cb3470223add 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Чека" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "замени" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "предложи име" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "откажи" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "заменета {new_name} со {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "врати" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Име" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Големина" @@ -212,19 +212,19 @@ msgstr "Големина" msgid "Modified" msgstr "Променето" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 папка" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 датотека" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} датотеки" @@ -305,10 +305,6 @@ msgstr "Тука нема ништо. Снимете нешто!" msgid "Download" msgstr "Преземи" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Не споделувај" @@ -331,19 +327,19 @@ msgstr "Се скенираат датотеки, ве молам почекај msgid "Current scanning" msgstr "Моментално скенирам" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "датотека" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "датотеки" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 464639b70d2079ab569737203f17f7ca58deb8bc..1406454c502b41811256a9f398f34309fcbc2a19 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 1a277dc2b1a71f88441f3824f30032f92c5af73e..31c45b09a7f6b3b5adf4525ce4b8223b14f22152 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/mk/files_trashbin.po index 69024ebf3a7f09a1b0ce4cd78eb76918f9dfe2be..c173d3af8adbc74ebe576f6efecba4cde494701f 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 338e5119e3589c477f82040cab1f51f169f4cbb9..86b5e4007950b5219f4acf5b53d5977d9c61ff56 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "пред секунди" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "пред 1 минута" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "пред %d минути" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "пред 1 час" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "пред %d часови" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "денеска" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "вчера" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "пред %d денови" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "минатиот месец" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "пред %d месеци" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "минатата година" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "пред години" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index ea306582bc83bb56163f80b0d2da56e1fca6f93c..8a183777182c2831a1be8624c06f5d61a7f0e562 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/mk/user_ldap.po index da055f406677613c7eb0ce3e5c1c30d6ef4d6c26..42c56cfaca414c1c50a1039167da68ecab99eae5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/files.po b/l10n/ml_IN/files.po index d4f03fb1ffef77d3b3d620b69b483d79b1d0f1cb..056f4c8f4b5e38f3a2f9f669147c104c8a514376 100644 --- a/l10n/ml_IN/files.po +++ b/l10n/ml_IN/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-11 02:16+0200\n" -"PO-Revision-Date: 2013-07-11 00:18+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index b595fca0bc505b63a3ff19e072818755512d6781..c7db2697bdb2c9e369917492a16e243bd2a0c070 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "Disember" msgid "Settings" msgstr "Tetapan" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 35499f6fc382812148ce13c1d24648e84b33f0a2..288dfd17537da45d68813765ebfad2313a4948a0 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Dalam proses" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ganti" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "Batal" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Nama" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Saiz" @@ -212,19 +212,19 @@ msgstr "Saiz" msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ 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 "" @@ -331,19 +327,19 @@ msgstr "Fail sedang diimbas, harap bersabar." msgid "Current scanning" msgstr "Imbasan semasa" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "fail" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "fail" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 9e447b2348b25d2ddeed2b4ee4d820f2ea298ac0..285ea1f3360278215214d8b0f69e61b5a77b386d 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 9f1d8f9f05b6b7379e77a44195778d461d3653b9..8bf0ea3bdad91d92fe843e9e3396eb037cdc75fe 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/ms_MY/files_trashbin.po index 5ac9c0e2c34f2140f0d741908ce1eb2b6293196f..cd4a6398820ca7802e9d72e5ff11116e80b73300 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 700ec90a833c4967831a15d5cc53a38cd641cb2a..72b554d75cffb4e1a43ee0864419e1b8206403ac 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index cba4d6956b4bd7885571af0ecb968536a3fa22f2..c2a41d78fcc74fc83521ff1973e084597ef67c49 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/ms_MY/user_ldap.po index ffa692ae3d314f484a085f1c7afc8936fc390a85..0b80dbaa75b3e9846dd530c2fcdac48ab828ee3f 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 86a20ed5c4d91af401730733ec813f43631cdc17..b5e51c3f5fb6e40afbb3bd0fefbc94bff5cf4fe8 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "ဒီဇင်ဘာ" msgid "Settings" msgstr "" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "၁ မိနစ်အရင်က" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "၁ နာရီ အရင်က" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "ယနေ့" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "နှစ် အရင်က" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index a1f6e7c80a09a0d56407b78f0379228def585680..b46eff1502c94e6683e950b9fe22e4848b49d97a 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 9c3d62ee9971aa66ba5e726b6f028ac6ed1ef419..6b5c0ce64bb450b1b3bda1089d05d2a12d178aba 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 778748ecb4643dfaf98e15993ff0ccba88a2e270..e715a941af84a37ce479cec047d69b5de7027ad6 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "၁ မိနစ်အရင်က" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d မိနစ်အရင်က" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "၁ နာရီ အရင်က" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d နာရီအရင်က" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "ယနေ့" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "မနေ့က" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d ရက် အရင်က" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d လအရင်က" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "မနှစ်က" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "နှစ် အရင်က" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 59ce68316192f28228a6d6ad4277102488c6daf9..934a14d4d107ee59d005f559ad56bdaf44b03e81 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillinger" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "i dag" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "i går" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "forrige måned" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "måneder siden" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "forrige år" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "år siden" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 2e01b098eb4194c79f28ba2d66f0124b2f7357a7..86167e9eafaf070910a05735ce743a1111b7bab7 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -4,12 +4,13 @@ # # 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -30,7 +31,7 @@ msgstr "Kunne ikke flytte %s" #: ajax/upload.php:16 ajax/upload.php:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "Kunne ikke sette opplastingskatalog." #: ajax/upload.php:22 msgid "Invalid Token" @@ -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:465 msgid "Pending" msgstr "Ventende" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "erstatt" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "erstatt {new_name} med {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "angre" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Størrelse" @@ -213,19 +214,19 @@ msgstr "Størrelse" msgid "Modified" msgstr "Endret" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 fil" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} filer" @@ -306,10 +307,6 @@ msgstr "Ingenting her. Last opp noe!" msgid "Download" msgstr "Last ned" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Avslutt deling" @@ -332,19 +329,19 @@ msgstr "Skanner etter filer, vennligst vent." msgid "Current scanning" msgstr "Pågående skanning" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" -msgstr "" +msgstr "katalog" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" -msgstr "" +msgstr "kataloger" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "fil" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "filer" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index b0e87b52aada5c44ca5ddc9cc3a7212a3a339072..9809bf31faab244dbcd1a73e6a4140fcabda5db7 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 fc3ccd5c85a3e346b5da1cbc545b99996f3e5d09..ef6b295893bf690f21298c68314b4c42f8e83cdd 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index bc2c1cd5121117e4d545a727a603c5467ede8967..01054906b7867f59e88e7f1024ca01bc1c0802c5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 def6c16582f9188021c43f8dd9dcb64c240d8fba..c181833c302cbe728be83c71746b2d8fd7430db4 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "sekunder siden" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 minutt siden" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d minutter siden" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 time siden" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d timer siden" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "i dag" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "i går" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d dager siden" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "forrige måned" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d måneder siden" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "forrige år" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "år siden" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 6f8b797612020e181ec6294f895504ede63333e7..c497f2e85c0c8573aef988cbf58e6619c9b4cc38 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -457,7 +458,7 @@ msgstr "WebDAV" 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 "" +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 5a00ce7669d414b068ae08e25eb2b3ae11da3c61..35aaa5cbfcf7a6bd0e799b5021f3409a2157fd2f 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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/files.po b/l10n/ne/files.po index fbce462cfdc762c6c5a5afe5f219bca0048d4161..26e7154708e235c0b378df75e135d9c5554b43ae 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-11 02:16+0200\n" -"PO-Revision-Date: 2013-07-11 00:18+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index a13f3ecc5a5261548a590a1bf7335693ea8cd994..2e64f43949313a109379e74c5a4e19ec674f5049 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -143,55 +143,55 @@ msgstr "december" msgid "Settings" msgstr "Instellingen" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "vandaag" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "gisteren" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "vorige maand" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "vorig jaar" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "jaar geleden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index a104d8d1cac879f996e10762d113c60c7493ff07..4b647cbedf1531e119347203fc1c7c5489e57d48 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "vervang" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "Stel een naam voor" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "uitvoeren verwijderactie" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Grootte" @@ -213,26 +213,26 @@ msgstr "Grootte" msgid "Modified" msgstr "Aangepast" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 map" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 bestand" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} bestanden" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s kon niet worden hernoemd" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -306,10 +306,6 @@ 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" @@ -332,19 +328,19 @@ msgstr "Bestanden worden gescand, even wachten." msgid "Current scanning" msgstr "Er wordt gescand" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" -msgstr "" +msgstr "directory" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" -msgstr "" +msgstr "directories" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "bestand" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "bestanden" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 407f9b3fa4dc69c6fb29ab5a0bebd5d431b451fc..1b13a636603333806c323335f467b22cc593199b 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 7e13402b864a365c51b3b1ca3ace71fa22f04e96..0cee90556bc2d7dd57a3e48aaf08527b76188bf5 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot <meneer@tken.net>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" "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 "Wachtwoord ongeldig. Probeer het nogmaals." #: templates/authenticate.php:7 msgid "Password" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index f34068e76b5ba3fbf755a7e7e44c106dcc4925e4..9a434d053cb00d0b48fcdb92fd26ee1aa45e36ac 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 f82b426d8186bfdd53e14546b8cf271282b2605d..1de1a406229f414e5a1ee981368e1d1d2d5d97e8 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "seconden geleden" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 minuut geleden" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d minuten geleden" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 uur geleden" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d uren geleden" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "vandaag" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "gisteren" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d dagen geleden" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "vorige maand" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d maanden geleden" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "vorig jaar" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "jaar geleden" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 01f58f768e69761a25e61c96ec1b78af6c1b01d2..7f78b0ff046543e33104590917527a53fdb48cee 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -458,7 +458,7 @@ msgstr "WebDAV" 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 "" +msgstr "Gebruik dit adres <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">toegang tot uw bestanden via WebDAV</a>" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 276a940b44265854d0aa2353031276234a88a32c..100537d3819309fa4c1e157e323827c9fb46be4c 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 a99a79c97a7ee7f0b41a4c660d082c4eb48bdf9a..2969b5bd525e494245b72315749dcb2947b44fca 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -143,55 +143,55 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillingar" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 minutt sidan" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} minutt sidan" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 time sidan" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} timar sidan" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "i dag" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "i går" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} dagar sidan" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "førre månad" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} månadar sidan" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "i fjor" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "år sidan" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 5348b7a8fa3da869f77004131ab6d118953c027d..c4b47b4fcdae7afbb7cb6609821f14f152bff033 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Under vegs" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} finst allereie" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "byt ut" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "føreslå namn" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "bytte ut {new_name} med {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "angre" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fil lastar opp" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Storleik" @@ -214,19 +214,19 @@ msgstr "Storleik" msgid "Modified" msgstr "Endra" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 fil" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} filer" @@ -307,10 +307,6 @@ 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" @@ -333,19 +329,19 @@ msgstr "Skannar filer, ver venleg og vent." msgid "Current scanning" msgstr "Køyrande skanning" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 217efdd6cf639a19fdae78ce511b50191a1257fc..f4db7d6135b29969d0a8f737ce79ec26126ff2c7 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 f8f087721544c87a4b5b1bdd67136c28addb0286..52bff00695c5f97503017f3370711bf6431a4e88 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/nn_NO/files_trashbin.po index d4b4f475ad74413bb46b3190bd791d016c0c1fe5..cffed75e810c61f1b3f2d86b5a85815d62df132d 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 834a2a49e3562e269c8014e9aedd4950c84f4b66..a450ab0eb3d25337d80cd0b8dfad9999f6e7c35d 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "sekund sidan" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 minutt sidan" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 time sidan" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "i dag" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "i går" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "førre månad" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "i fjor" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "år sidan" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 95eafa2caf5302b2cf36752752e0c0ae049f9d50..7907f92e1ff0db796f61517c7804011e9e915a76 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/nn_NO/user_ldap.po index 1e3793de5452eb9dd66cc9405774b12901b28c1a..9185e86cf6d7bcc69cc63cf2731950249c75bbf2 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 94bba95fe4ba33f07487414702a14a263501dcff..d49a352bacc2ad648c5693e4179c8fd87c3e5f61 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "Decembre" msgid "Settings" msgstr "Configuracion" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "uèi" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "ièr" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "mes passat" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "meses a" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "an passat" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "ans a" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 162f8b9eeaa68ba2d1986b9f71a5508f29791524..b5726109f428000321bfc5a742dc34af81f422da 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Al esperar" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "remplaça" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "nom prepausat" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "anulla" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "defar" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "fichièrs al amontcargar" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Nom" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Talha" @@ -212,19 +212,19 @@ msgstr "Talha" msgid "Modified" msgstr "Modificat" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ 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" @@ -331,19 +327,19 @@ msgstr "Los fiichièrs son a èsser explorats, " msgid "Current scanning" msgstr "Exploracion en cors" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "fichièr" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "fichièrs" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 1f1b3c43ce9ae789be7c962374cc7bd475854aea..3e68bba128ff6a762bee393e3697c7bfac113ff1 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 e5cb53abf7a2c213b4952708778c6486ff21cc3d..c115c7bcb07088a658303f0891b0095b97dab8be 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/oc/files_trashbin.po index 13e0a712c3d34c480f6224891f0ebe15210e0af7..a68eec299da24cdcbb622d622a7f992ee5085343 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 70dfee2916d9a4f7698841da2a76b2b2ef9686e2..711115512f5fc57e8733091b56116c02c4d9ace6 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-11 02:17+0200\n" -"PO-Revision-Date: 2013-07-11 00:12+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 06:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "segonda a" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 minuta a" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d minutas a" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "uèi" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "ièr" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d jorns a" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "mes passat" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "an passat" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "ans a" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 3651160f088b2eb6210fea9efb0a421df4dd2130..7800fb2ac7f14dca4ecb411dcf38e6d28385946f 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/oc/user_ldap.po index d5f03d9036c5734355c7b6bf4f3b97fb41d64f0c..f116c02e92fece4778a92bfa08f23b6033aee336 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 8b2ab8f7c34a0cd524c2c26023b7038d3300e217..bb3f918e9ffb78f5ebeb7d0c56471a0c251ef0b3 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -143,55 +143,55 @@ msgstr "Grudzień" msgid "Settings" msgstr "Ustawienia" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 minutę temu" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 godzinę temu" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "dziś" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "lat temu" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 975667cac389e2806f7d4e7ba1d1eb94ddab86d0..fe43168781e173b620ba3f47e46c03db9c246d35 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "zastąp" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "zasugeruj nazwę" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "zastąpiono {new_name} przez {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "cofnij" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "wykonaj operację usunięcia" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 plik wczytywany" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Rozmiar" @@ -214,19 +214,19 @@ msgstr "Rozmiar" msgid "Modified" msgstr "Modyfikacja" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 folder" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "Ilość folderów: {count}" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 plik" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "Ilość plików: {count}" @@ -307,10 +307,6 @@ 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" @@ -333,19 +329,19 @@ msgstr "Skanowanie plików, proszę czekać." msgid "Current scanning" msgstr "Aktualnie skanowane" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "Katalog" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "Katalogi" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "plik" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "pliki" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 4ac48457adc252509ec260aef07e06224292101b..11337d2fd3f597ddec304d196d154d1011c05194 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 54b0779579ce69394a7bd25108898e0446832c21..3a588e8ec14b2ceef60b9b017abdff5b4b1009c9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/files_trashbin.po b/l10n/pl/files_trashbin.po index 0412aa09ffcee9517e37908d57c6a2df4d3be413..aaf5215bb2fc65308118f597340e07b6c2cccf93 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 1de8a6b547bc4d88af411eef66b567b85cd18053..6891c264cd731fa9d3b5ce8593b9710ac299e4eb 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "sekund temu" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 minutę temu" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d minut temu" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 godzinę temu" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d godzin temu" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "dziś" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "wczoraj" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d dni temu" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "w zeszłym miesiącu" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d miesiecy temu" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "w zeszłym roku" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "lat temu" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 944e34ee36234ec89365c364daf9ba50949d2951..832d8ad56775fb8cd4af79774caf30d3f5cea788 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/pl/user_ldap.po index 2c8d378f845a450eb88101d1855edde707158727..01b972fc29fe2f53188b81c0ec4e7d4e22526ada 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 3253edc16ac58252b05343577f81804831fbc6a9..3689f42dab21247225b658a532092ab94efc652f 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -143,55 +143,55 @@ msgstr "dezembro" msgid "Settings" msgstr "Ajustes" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 minuto atrás" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "hoje" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "ontem" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "último mês" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "meses atrás" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "último ano" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index ac27f37cb8776be805712edc277cd87b91a16e5c..4dfc4e348628579b7aca5b676e42f0ddaf2eff8c 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "substituir" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugerir nome" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "Substituído {old_name} por {new_name} " -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "desfazer" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "realizar operação de exclusão" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Tamanho" @@ -215,19 +215,19 @@ msgstr "Tamanho" msgid "Modified" msgstr "Modificado" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} arquivos" @@ -308,10 +308,6 @@ msgstr "Nada aqui.Carrege alguma coisa!" msgid "Download" msgstr "Baixar" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Descompartilhar" @@ -334,19 +330,19 @@ msgstr "Arquivos sendo escaneados, por favor aguarde." msgid "Current scanning" msgstr "Scanning atual" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "diretório" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "diretórios" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "arquivo" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "arquivos" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index b796430832f01df473b440487df1750820dbac7d..cdd9c9b10f7b0c456554d408541d84439cc22690 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 1d7e20087f139515673bdadf408d6cf50298d889..7afdd28b6c01c9e63057e0bffa9616a882492f62 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/pt_BR/files_trashbin.po index dcfb164f8673832fdd7c2e327e48f1631e02baad..1d54305cb10cf18903b3557f0d8bcf71f0df2be0 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 b40f7d66acdd8ebf65464b6a2599310bdbd78862..08ae2a731d33ea8f30ac5117faf10e12af982fea 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "segundos atrás" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 minuto atrás" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d minutos atrás" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 hora atrás" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d horas atrás" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "hoje" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "ontem" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d dias atrás" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "último mês" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d meses atrás" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "último ano" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index a73fefa32ad847e11a84aee8218f1eff947897ab..1935025d848ed1a18b290acfcc02b71788aa598c 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 2ae3733f6b7a175483a16a9e87f89ff5e4eb0433..eeb1542264cb7be003fdeaf2b3aeda1643313228 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 b26001d7d22e07f1e4069bd5bfdfd57eedbe343e..c3460150a58acdf82933a20c173aeba81e2c8339 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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." @@ -143,55 +145,55 @@ msgstr "Dezembro" msgid "Settings" msgstr "Configurações" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "Há 1 minuto" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "Há 1 horas" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "hoje" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "ontem" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "ultímo mês" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "meses atrás" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "ano passado" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "anos atrás" @@ -286,7 +288,7 @@ msgstr "Password" #: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Permitir Envios Públicos" #: js/share.js:191 msgid "Email link to person" @@ -413,11 +415,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 "Os seus ficheiros estão encriptados. Se não activou a chave de recuperação, não vai ser possível recuperar os seus dados no caso da sua password ser reinicializada. Se não tem a certeza do que precisa de fazer, por favor contacte o seu administrador antes de continuar. Tem a certeza que quer continuar?" #: 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" @@ -476,7 +478,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +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" @@ -614,7 +616,7 @@ msgstr "Contas de acesso alternativas" 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 07ad3b10886c741a55eec013ed475e0f5dee095e..2ba2e6874413e1570b474a50f57bc299bc26954e 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -4,12 +4,13 @@ # # 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -30,11 +31,11 @@ msgstr "Não foi possível move o ficheiro %s" #: 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:22 msgid "Invalid Token" -msgstr "" +msgstr "Token inválido" #: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" @@ -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:465 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "substituir" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugira um nome" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "substituido {new_name} por {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "desfazer" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "Executar a tarefa de apagar" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Tamanho" @@ -213,26 +214,26 @@ msgstr "Tamanho" msgid "Modified" msgstr "Modificado" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" 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,10 +307,6 @@ msgstr "Vazio. Envie alguma coisa!" msgid "Download" msgstr "Transferir" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Deixar de partilhar" @@ -332,19 +329,19 @@ msgstr "Os ficheiros estão a ser analisados, por favor aguarde." msgid "Current scanning" msgstr "Análise actual" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" -msgstr "" +msgstr "diretório" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" -msgstr "" +msgstr "diretórios" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "ficheiro" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "ficheiros" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index d4cda3a12181600d09cb7ad85a851f7d1637479b..d8cc4778054d7ab407efc687217d9ed4b3fb7251 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 ba8a975e8d1f5ae454945c565a1745fef584e4b3..34c1e5df5fb3d73cce176122f99007662b85d432 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# moliveira <manuel.oliveira@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" +"Last-Translator: moliveira <manuel.oliveira@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" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Password errada, por favor tente de novo" #: templates/authenticate.php:7 msgid "Password" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 07997aa0788533b0ae57905326cd9b59e673cc52..7ae17d505486c88918db7d684b7d58776cd35c84 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 ba5a31b6765530632477cc837a05aea957aae7c1..2ef68be1205cd50856db0a31bcb659f01b740604 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "Minutos atrás" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "Há 1 minuto" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "há %d minutos" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "Há 1 horas" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "Há %d horas" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "hoje" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "ontem" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "há %d dias" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "ultímo mês" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "Há %d meses atrás" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "ano passado" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index e89d3fdf50556821a166eaa90461fc1bc1682e1f..3a88f551d7fdfe2a672b0e646ad57cc77315c455 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -459,7 +460,7 @@ msgstr "WebDAV" 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 "" +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 ec20a862b403d38a8fdef7a50fe21150c553c3e0..8a2b3c08382cbf916faedad28aee85cae63249ff 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: Mouxy <daniel@mouxy.net>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 142ddc1b36363de00281f3f519b8c43bba458b14..57854ade7ef66317d6fe75c5476ffc1de94ae71d 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -144,55 +144,55 @@ msgstr "Decembrie" msgid "Settings" msgstr "Setări" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urma" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "Acum o ora" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} ore în urmă" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "astăzi" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "ieri" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} zile in urma" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "ultima lună" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} luni în urmă" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "ultimul an" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "ani în urmă" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index c1b17d8be0173ac0b41a491b9e8ec0a916c2034c..8894861fa29f3f44c68655bd240963423f372539 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -131,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:465 msgid "Pending" msgstr "În așteptare" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} deja exista" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "înlocuire" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugerează nume" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "anulare" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} inlocuit cu {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "efectueaza operatiunea de stergere" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "fișiere se încarcă" @@ -207,7 +207,7 @@ msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" msgid "Name" msgstr "Nume" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Dimensiune" @@ -215,19 +215,19 @@ msgstr "Dimensiune" msgid "Modified" msgstr "Modificat" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 folder" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 fisier" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} fisiere" @@ -308,10 +308,6 @@ 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" @@ -334,19 +330,19 @@ msgstr "Fișierele sunt scanate, te rog așteptă." msgid "Current scanning" msgstr "În curs de scanare" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "catalog" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "cataloage" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "fișier" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "fișiere" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 70014292291b5b207c086b4b19d62118b0fe407a..35dd42bcab8f0672306b92dbfe9d5accdf3621e5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 a63bdeb5971163ac6ca3d987d91285c61505fb29..f319bebaed670e73bca957663620e2c060b910e2 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 3642aa7d5e2d5f248f88654a039cecff621536a4..7c07f33903603058ecc04c12dc09991ad99dd952 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 5216148ebdf88f1031aad0bf6c795415e542b792..e86a8257c0f25a45f703ed165956e7394929b4e8 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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 "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 "Vă rugăm să verificați <a href='%s'>ghiduri de instalare</ a>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "secunde în urmă" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 minut în urmă" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d minute în urmă" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "Acum o ora" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d ore in urma" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "astăzi" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "ieri" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d zile în urmă" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "ultima lună" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d luni in urma" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "ultimul an" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "ani în urmă" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 36563c4ff35e6a0570bdf5e25d43dd24ee5c7be9..e17f84b301d973e6da1e2c9fff92af815e50af88 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/ro/user_ldap.po index 2b2b60f48a0809ddbdc416757475f63d5233b12b..40961493d4c205304653d3b345e5adc6237e913a 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 7b93cc0a9ef34ffcc88f26b5f33c0707f84d6c71..d5c41508fc4ad64eb0202d0bee7b8e55c3a014c6 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -147,55 +147,55 @@ msgstr "Декабрь" msgid "Settings" msgstr "Конфигурация" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "час назад" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} часов назад" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "сегодня" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "вчера" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} месяцев назад" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "в прошлом году" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "несколько лет назад" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 408511c3e64eaac84d5a2c279c039a923da16bd4..4ad56576dcd35a548d5f18cc3a00b0b77d815efa 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: hackproof <hackproof.ai@gmail.com>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -132,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:465 msgid "Pending" msgstr "Ожидание" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "заменить" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "предложить название" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "отмена" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "заменено {new_name} на {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "отмена" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "выполнить операцию удаления" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "файлы загружаются" @@ -208,7 +208,7 @@ msgstr "Неправильное имя каталога. Имя 'Shared' зар msgid "Name" msgstr "Имя" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Размер" @@ -216,19 +216,19 @@ msgstr "Размер" msgid "Modified" msgstr "Изменён" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 папка" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 файл" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} файлов" @@ -309,10 +309,6 @@ msgstr "Здесь ничего нет. Загрузите что-нибудь!" msgid "Download" msgstr "Скачать" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "Размер (Мб)" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Закрыть общий доступ" @@ -335,19 +331,19 @@ msgstr "Подождите, файлы сканируются." msgid "Current scanning" msgstr "Текущее сканирование" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "директория" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "директории" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "файл" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "файлы" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index d794340d5e079664c56717fb11482d032d539ec4..16b471ff95bf091a2444bb49ad8a2cb53f640f04 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 c2bba46967982405341b951b58bbc35030dfeabe..2a40f969f648d10d2f05386c51eb25c75a7fbdb9 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 8433a3bde8ff02654039f1ccde36df57f1046325..901bd4502ff3f97d6f29c5473f24f2ff76b936d1 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 5021ecdf24b5a4171472aa4f89a04456eb9bb39f..808bd5e630c190b0fddcc3c52dddbd9807654b62 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "несколько секунд назад" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 минуту назад" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d минут назад" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "час назад" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d часов назад" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "сегодня" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "вчера" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d дней назад" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "в прошлом месяце" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d месяцев назад" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "в прошлом году" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "несколько лет назад" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 78f87a98b42933afe4fa5c9aa5d2aa21f66cabb3..9749dabadf7bdc99bb0911676ac13ca8f1ca48c7 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index b14711b90f2d65ff9321e90c1e31c30360f71bf7..8b7b1761bf3716608e84a3565ede59c626fd7fa5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: alfsoft <alfsoft@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 8620ccaf36476bafaef7e63f487c7a2d39747765..96b9db937f842d56574b32cb6d49e182f6d28c61 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "දෙසැම්බර්" msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "අද" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 81e3f1e4b9a1a4df40f872956feb62f290fb5f45..3729a1fd0bd89c53f6676517c175ab60cb92cfb5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ප්රතිස්ථාපනය කරන්න" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "නමක් යෝජනා කරන්න" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "අත් හරින්න" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "නිෂ්ප්රභ කරන්න" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "නම" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "ප්රමාණය" @@ -212,19 +212,19 @@ msgstr "ප්රමාණය" msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "මෙහි කිසිවක් නොමැත. යමක් උඩ msgid "Download" msgstr "බාන්න" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "නොබෙදු" @@ -331,19 +327,19 @@ msgstr "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳ msgid "Current scanning" msgstr "වර්තමාන පරික්ෂාව" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "ගොනුව" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "ගොනු" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index f38b3ed89edef938b0774920010355fd05174833..5a3e2f5653c0998f63d54b81d18875f17c7b5a31 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 51f4967843d00d3f2f467b297c620c64c4ffcb68..cdb0dc07c23ef8e048385d0fff0604679784e057 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/si_LK/files_trashbin.po index 1c4eb909eecb45ab70dbe397170d8f8ac34f36d2..cf143a0e5bc020e13d9729364c5e196e9fb0b620 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 c8f93355a03733c3120e2c5171c329d5c9f7d5b7..ceac6acd814f3c23e384921e62ec88a117ac81f6 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d මිනිත්තුවන්ට පෙර" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "අද" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "ඊයේ" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d දිනකට පෙර" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "පෙර මාසයේ" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index ecd3d78a7109577f0ce91d6926c3766ad563bcf6..89c6468fca1f461de86cb914c8cba6123747d1a4 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/si_LK/user_ldap.po index 2174391fc50288f7c5354dd1e8181f7690d43d95..c38adcfffa9e6cd71377df8a596c58f5c5d5e812 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/files.po b/l10n/sk/files.po index 5b7c848c1ff1f2183d752ed50e33f37762e60e59..7972570bed6c2ee1a249c1c645fa2f7535a8c6a9 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-11 02:16+0200\n" -"PO-Revision-Date: 2013-07-11 00:18+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 7e92968a49f1455bc97cb1760149e133696e4947..992004ace42ac6c466554a2a25322c98ccc17cbd 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -142,55 +142,55 @@ msgstr "December" msgid "Settings" msgstr "Nastavenia" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "Pred 1 hodinou" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "dnes" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "včera" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "minulý rok" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "pred rokmi" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 53cbc7a0c6657bb48e7bd3264138912a5c8de8e9..2d6d129a0b08ce3d55dd4a31fadb2a53b89adaec 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Prebieha" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "nahradiť" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "pomôcť s menom" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "zrušiť" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "prepísaný {new_name} súborom {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "vrátiť" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "vykonať zmazanie" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Veľkosť" @@ -213,19 +213,19 @@ msgstr "Veľkosť" msgid "Modified" msgstr "Upravené" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 priečinok" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 súbor" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} súborov" @@ -306,10 +306,6 @@ 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" @@ -332,19 +328,19 @@ msgstr "Čakajte, súbory sú prehľadávané." msgid "Current scanning" msgstr "Práve prezerané" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "priečinok" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "priečinky" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "súbor" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "súbory" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 06b7f17f586ff33209ea800970367686a36268ec..3dc222a5471c340e53271f8f768f5e0c9bd7c9d5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 ff3d229ef52daf5e90442dab12cd41172a046279..4b08c10c105f121075a53cc5a7cd8bdef5b4501f 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 5d52a0e9ea74c9ae47ab5250df3b829de7b6e39a..d5aef89f37d3ad4e4710a2aba0f227800ea6d635 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 d096f144778c72c4b98ee9d7f4cce1c6f52abaf0..a5e1d85c8125a987770868b468402025cbe14d05 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "pred sekundami" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "pred minútou" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "pred %d minútami" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "Pred 1 hodinou" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "Pred %d hodinami." -#: template.php:118 +#: template.php:100 msgid "today" msgstr "dnes" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "včera" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "pred %d dňami" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "minulý mesiac" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "Pred %d mesiacmi." -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "minulý rok" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "pred rokmi" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 79e145651c7563c4eacdb49c2fb2b969d9f1299c..5e28a7757ad2864d4638624e2be2db77ec91d98e 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/sk_SK/user_ldap.po index b7d8283383b83d24d2bf91b2f770382ee8ca2ac4..f07169de6a8cf7311fcdaf64484c11ecb0c1ff0d 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 586c2c2c9bac6e20fb2cb58aa6ee7f050b8f26ea..bad3200d3b4d0eb3ff254f5e06c28ca599ce7e0b 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -143,55 +143,55 @@ msgstr "december" msgid "Settings" msgstr "Nastavitve" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "Pred 1 uro" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "danes" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "včeraj" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "lansko leto" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "let nazaj" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index f6c9c82635200008dab35df780f786dfe718e07c..e903a2a7daadcc05fcf9137d647e10a3e5466c65 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "V čakanju ..." -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "zamenjaj" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "predlagaj ime" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "prekliči" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "preimenovano ime {new_name} z imenom {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "izvedi opravilo brisanja" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Velikost" @@ -213,19 +213,19 @@ msgstr "Velikost" msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} datotek" @@ -306,10 +306,6 @@ 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" @@ -332,19 +328,19 @@ msgstr "Poteka preučevanje datotek, počakajte ..." msgid "Current scanning" msgstr "Trenutno poteka preučevanje" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "direktorij" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "direktoriji" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "datoteka" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "datoteke" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 28f773ab99ca8ef2bebbf1343dbab1cc15d76d65..96f9d5d23cd89dd4b9e547f94e44192af37e8e37 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 19873a6a4068bbf0d6c15dc7781faa44ef44a6a1..1b3bea29a0a62c4a7cbdd4263c06a70e6e274446 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/files_trashbin.po b/l10n/sl/files_trashbin.po index 8146bccbd0713ee796b01aa4a2f4d302ee330fbd..9735b20cbc8ccf1f5f95f0c9153a363e0f609ca2 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 28587492b8b276f99106cebac36f87fb83ba4a89..5142c536b3e80852443d2f1eb3b8a20041807ceb 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "pred minuto" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "pred %d minutami" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "Pred 1 uro" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "Pred %d urami" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "danes" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "včeraj" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "pred %d dnevi" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "zadnji mesec" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "Pred %d meseci" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "lansko leto" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "let nazaj" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 408de89bce6f9f3d8e215790c0dfd5e15124af4d..c8b7611ce2e2d252753b5f570db9ab2b39668cff 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/sl/user_ldap.po index 9647dc9ebe505e41a6526bc6887d978d9c457fe0..f88bb879050d19d85dacec8254372d3ca443e6a9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 ba0cdd2f7140b290611c86b51dfc580e6a3e30ae..bc31739202a9b45a8f6ae0e505b607f3bde447fd 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -142,55 +142,55 @@ msgstr "Dhjetor" msgid "Settings" msgstr "Parametra" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 minutë më parë" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} minuta më parë" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 orë më parë" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} orë më parë" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "sot" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "dje" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} ditë më parë" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} muaj më parë" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "vite më parë" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 555a1b19f8e86f570d36f0cbe106c1a3392651dc..3ec79ac57cfd032c23083355b43c6f117d971af9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Pezulluar" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} ekziston" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "zëvëndëso" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugjero një emër" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "anulo" -#: js/filelist.js:349 +#: js/filelist.js:350 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:350 msgid "undo" msgstr "anulo" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "ekzekuto operacionin e eliminimit" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "Po ngarkohet 1 skedar" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Dimensioni" @@ -212,19 +212,19 @@ msgstr "Dimensioni" msgid "Modified" msgstr "Modifikuar" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 dosje" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} dosje" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 skedar" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} skedarë" @@ -305,10 +305,6 @@ 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" @@ -331,19 +327,19 @@ msgstr "Skedarët po analizohen, ju lutemi pritni." msgid "Current scanning" msgstr "Analizimi aktual" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 16410b01197a0a3b340be34fcb4606923f8c7fea..5bf38bbd473f475be4bfe732e6fb95ed04fb0d68 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 fe295ea2c519efcfae709b85b2edfd4947d6ebb0..190a1611e38d993c0fd607e5f136134f8cd16d5f 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/sq/files_trashbin.po index 8c61248efcf1be04eadafd90021960387dc3c807..d5ee8281851aa1fab1406c4b1fe8ddd601aaac49 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 a86be272ea3eef695af07db4b4117c7d67c7ddd3..fe1fd176824f44cf41dcacf0832e8dfd5b7d4699 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "sekonda më parë" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 minutë më parë" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d minuta më parë" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 orë më parë" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d orë më parë" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "sot" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "dje" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d ditë më parë" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "muajin e shkuar" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d muaj më parë" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "vitin e shkuar" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "vite më parë" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index fac5dc9cc51016cc10f66a75da2a4b57239963f0..700aec52faf4f75c6db74d6a74ac86efb3fb8c43 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/sq/user_ldap.po index 1c485fbb9c37a3eb6e630ec945aae9a730f2be8a..0f639c345a2ddf1b1134d51ab4553f8b7f4a3ee9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 979127e7d6de9f58ce220b0b60c6afd28c6380f2..106ddc4f9d17c41bacfe1c2eece73c4903277d94 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "Децембар" msgid "Settings" msgstr "Поставке" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "пре 1 минут" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "пре {minutes} минута" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "Пре једног сата" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "Пре {hours} сата (сати)" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "данас" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "јуче" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "пре {days} дана" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "Пре {months} месеца (месеци)" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "месеци раније" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "прошле године" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "година раније" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 1cbb504d9006e8a8985bf6c119b771186f269768..c0e1c276d9a01d24759bead19de1d5442c2cb3ed 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "На чекању" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "замени" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "предложи назив" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "откажи" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "замењено {new_name} са {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "опозови" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "обриши" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "датотеке се отпремају" @@ -204,7 +204,7 @@ msgstr "Неисправно име фасцикле. Фасцикла „Shared msgid "Name" msgstr "Име" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Величина" @@ -212,19 +212,19 @@ msgstr "Величина" msgid "Modified" msgstr "Измењено" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 фасцикла" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 датотека" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} датотеке/а" @@ -305,10 +305,6 @@ msgstr "Овде нема ничег. Отпремите нешто!" msgid "Download" msgstr "Преузми" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Укини дељење" @@ -331,19 +327,19 @@ msgstr "Скенирам датотеке…" msgid "Current scanning" msgstr "Тренутно скенирање" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 30ddb57689e269b9e0e61c3ac73932e88db53505..796264623bcc6ec6f9241b1f4ea4ab56a6722e88 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 8f1c40618f1a2fceaafd3b8760bc859dadba49ae..e01f2c5f74c672b670259b6972000ba6581b9a91 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/sr/files_trashbin.po index b0372c3f03226e0279a7d58a4cf2b7dd93f38aa0..0a01cd614ef7692abefdee23b235bcaa62cdaa81 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 e8fe845df9ed9e02a032b65f054317dcf9f02688..7357a63e2cd28d8bd7628ff86175a5f009f2ff9b 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "пре неколико секунди" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "пре 1 минут" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "пре %d минута" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "Пре једног сата" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "пре %d сата/и" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "данас" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "јуче" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "пре %d дана" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "прошлог месеца" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "пре %d месеца/и" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "прошле године" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "година раније" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 3bbb8b04c6610f4efdba822c8f80e3208edbfc7c..e1c4fa7ec02b80cbd8d2548f81afb4a65638e30c 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/sr/user_ldap.po index 5fee554ed35b3019a072174708ba2606f86f4902..dd85d0b2bc277f300fe67ae051bd5bfb782639d3 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 69d90c988af22cbb3801754029300e0df6d86284..585a76275da1fe29af871cf76f5bd801d5bbd4ad 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "Decembar" msgid "Settings" msgstr "Podešavanja" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index de28854e98bf99b932800fe2c93075702152abce..8ec50b54f9cac286bd9a2e9c5998d18c75f860ab 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "Ime" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Veličina" @@ -212,19 +212,19 @@ msgstr "Veličina" msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ 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 "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index a4b9250dc2cb821ba4d2a7285617f5f1b90c7dfc..32c50e0c6b495a5d4b3873cdda32ac1c083bef12 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 935ceeb8ccbc3cb21aacb43e95859d8351a3e2fb..b8a27d1249ce55c680c7b9153ea04e09e5be93f5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/sr@latin/files_trashbin.po index 6740e66a7b1b77e17aec826e99adb7a2696955b9..c8592892414ab2793455a9198f06940800a23919 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 f7f89a2c866a6e900dd8dde82c7114de01dd63c9..8507568125ea2bf05b4d0cdadd647220ecf97fbe 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 74a6ba1a91c65c4aeb0b026eedcc9d3622e30948..83ecbea0ebff2376a58521cb1aaab120a60e6b0e 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/sv/core.po b/l10n/sv/core.po index 62c3b06e6c315503d870ca6909d1cf6653b276f5..26304dbe258d0219e03fd738cd6d6395d3561a8d 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -145,55 +145,55 @@ msgstr "December" msgid "Settings" msgstr "Inställningar" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "i dag" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "i går" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "förra månaden" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "månader sedan" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "förra året" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "år sedan" @@ -375,7 +375,7 @@ 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:21 msgid "The update was successful. Redirecting you to ownCloud now." diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 20cb96301beaae3489c638a060cf5ffb1b84c173..ef10a76f25740e446d3826f6ec726b49d63db887 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -4,14 +4,15 @@ # # 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Väntar" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ersätt" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "föreslå namn" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "ångra" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "utför raderingen" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Storlek" @@ -215,19 +216,19 @@ msgstr "Storlek" msgid "Modified" msgstr "Ändrad" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 fil" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} filer" @@ -308,10 +309,6 @@ msgstr "Ingenting här. Ladda upp något!" msgid "Download" msgstr "Ladda ner" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Sluta dela" @@ -334,19 +331,19 @@ msgstr "Filer skannas, var god vänta" msgid "Current scanning" msgstr "Aktuell skanning" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "mapp" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "mappar" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "fil" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "filer" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index e311ebaf59e8937c5d973e1a3bf323212f103348..cfb13426d405a643b27ac84b7ca290911305c65f 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -6,13 +6,14 @@ # medialabs, 2013 # Magnus Höglund <magnus@linux.com>, 2013 # medialabs, 2013 +# Stefan Gagner <stefan@mei-ya.se>, 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-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 14:20+0000\n" +"Last-Translator: Stefan Gagner <stefan@mei-ya.se>\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" @@ -66,14 +67,14 @@ msgstr "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenor #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Krav som saknas" #: 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 "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och rätt inställd. Kryperingsappen är därför tillsvidare inaktiverad." #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 68975dd96b45a3bdecdcddbc7de5bc4ef17a6fe6..9bc2b5ff52ec64b3ef17ec2b3da842b9c48abb0b 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 121a3bf8ad143de322e5b53f7776776ac3a0312d..51fd64b4e8a977494208631bf348a27f11106034 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Stefan Gagner <stefan@mei-ya.se>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" +"Last-Translator: Stefan Gagner <stefan@mei-ya.se>\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" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Lösenordet är fel. Försök igen." #: templates/authenticate.php:7 msgid "Password" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index d4758d32e66c1be26234f0fa877d639b9cec09ea..1c3a110a2e52272999bd7b5dabe83f8f3a379666 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 061e3bb3895fbb5f4448926c266f99008a5ec8f1..bf4fbea2ce83ae52b5878a49466fec9d8c772595 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "sekunder sedan" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 minut sedan" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d minuter sedan" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 timme sedan" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d timmar sedan" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "i dag" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "i går" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d dagar sedan" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "förra månaden" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d månader sedan" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "förra året" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "år sedan" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index d66cb8d3323b4f45bc4143fdad30103ee6bb0981..073d867c3f29a9189fc44ef9211d4b194324b295 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -460,7 +461,7 @@ msgstr "WebDAV" 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 "" +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 4630364bc2d75f343f30c82adfb70282b82eb2a6..e791905fca87ddabd49266dfcdd0f309c6bb444b 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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/files.po b/l10n/sw_KE/files.po index 2d020090c3f6c25ab31246d94017a41a745c5717..1187272d81b594af0163e1d29012debb2326064c 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-11 02:16+0200\n" -"PO-Revision-Date: 2013-07-11 00:18+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 676e1e4d1dc0f147c7a699da4e38e1d6176d2224..20800cdbaa616cd1fa1abf4975c6025d4442df69 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "மார்கழி" msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "இன்று" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{நாட்கள்} நாட்களுக்கு முன்" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "வருடங்களுக்கு முன்" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 91ba6e2135e95c3d2b05c01812d86c3f0118fea3..d46035e06b37a5e9cc7ad973dc446d3f7c6409d0 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "மாற்றிடுக" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "பெயரை பரிந்துரைக்க" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "இரத்து செய்க" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "பெயர்" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "அளவு" @@ -212,19 +212,19 @@ msgstr "அளவு" msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 கோப்புறை" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 கோப்பு" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{எண்ணிக்கை} கோப்புகள்" @@ -305,10 +305,6 @@ msgstr "இங்கு ஒன்றும் இல்லை. ஏதாவத msgid "Download" msgstr "பதிவிறக்குக" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "பகிரப்படாதது" @@ -331,19 +327,19 @@ msgstr "கோப்புகள் வருடப்படுகின்ற msgid "Current scanning" msgstr "தற்போது வருடப்படுபவை" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 02928a2148f1048e9001591a6be0d14cf2f6bb1f..7dad84be46ac307c3bbbac8aeed0d7e427f9a11c 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 729600cb740d1d76581b0d1dd6c466b4eebefd31..f52e1b8f0636aa2d22041174dadd868fe92dbd69 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/ta_LK/files_trashbin.po index 0f097f227e8b167935a71b74fa9696e108369c1c..93098c6ca7903ce03f97a571e6bdbcfdeee77da4 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 2f7ff5133cbcbceab285206297fff6d294cf33db..fca38a565e03c95414cca685de4bd36ebbb8a809 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d நிமிடங்களுக்கு முன்" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d மணித்தியாலத்திற்கு முன்" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "இன்று" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "நேற்று" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d நாட்களுக்கு முன்" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "கடந்த மாதம்" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d மாதத்திற்கு முன்" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "கடந்த வருடம்" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "வருடங்களுக்கு முன்" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 666a976551e7c422276b404cc12bab645c760916..8143a91bdf9039a33791635c7daa7f1683d2deae 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/ta_LK/user_ldap.po index ba0974d2d866e91b773f259f61f5f7e8439e0ad7..8b5cc63bff44ed62b9e3dee55b396192824a5e03 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 933dfb990b55b55e8d8506ce7ef55465c8dfe3be..8fbb008135a7a393a7a439217d05d5ee0acdc82f 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "డిసెంబర్" msgid "Settings" msgstr "అమరికలు" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 నిమిషం క్రితం" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} నిమిషాల క్రితం" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 గంట క్రితం" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} గంటల క్రితం" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "ఈరోజు" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} రోజుల క్రితం" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} నెలల క్రితం" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "సంవత్సరాల క్రితం" diff --git a/l10n/te/files.po b/l10n/te/files.po index 72500bf336e6dee5696f4234ac5b74ff1b060bf1..882aeb59b612d33a9a38151ae3bf80a6ee7285f9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "రద్దుచేయి" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "పేరు" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "పరిమాణం" @@ -212,19 +212,19 @@ msgstr "పరిమాణం" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index d2b519890ba6f8131a84688e2b08be94fbd60a4c..e1f945a5da9770869b848ea006d5870050a26cfe 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 396952a9728ee710ce2b0450ba9ef30e51dab242..2ba8fe74e529c3900e20f2c3425dfea1802c1ffa 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 4a700e26b5b1f937f6d388ce802f3adec19fbc87..d7cc2bbf035dba78d088d8104a0743178aba76ed 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-11 02:17+0200\n" -"PO-Revision-Date: 2013-07-11 00:12+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 06:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 నిమిషం క్రితం" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 గంట క్రితం" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "ఈరోజు" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "నిన్న" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "పోయిన నెల" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "సంవత్సరాల క్రితం" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index d37524a8b6d78d2726ae5081666eab25822d689a..6268aa07c371ca6ae17a907d46586e53994df767 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/te/user_ldap.po index c91bc9a68dc43bd9457ac3b4b384aa1f8f0f23c6..93d9a00efafb8ffe1cf4a772791b70ebdac9163f 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 c87e14c8b8de780dc7d03b1e9b7d28933ade3426..f37a6985080734d0eff40fccc5e6a3ec49c7a7af 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-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-22 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" @@ -141,55 +141,55 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 55cfe4a743f504fd3cc9b3e32eac99785fc185e7..a7148859c2ca08ae0e4063091ab63ffe342929c6 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-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-22 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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index eb471665451fc4716fa9d2ce0b89d7fc0d8305a5..bb6a5837a260db69ad4fb5b20f2f80811d0daa91 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-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-22 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 044efbcc7127fd85eb2d9e7716bd398e6fc50614..910554d791c417ea755a00f8de34ad0d270b677d 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-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-22 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 001eab18e87ffd698fd5be6da5273ca4adbee828..5131866a2e8d23dc3549f4fc5561e385da254031 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-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-22 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_trashbin.pot b/l10n/templates/files_trashbin.pot index 5c7dfacae51f3e2048d6cdb3ddd8ea89519df8a7..627c5eb4a1d2657d6f2513f71facab996e194209 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-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-22 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 dabb2869db68df497ca3ee180ea459b4798283b5..6c154d90bea41182c166ebc9eb0a78e0d2100b22 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-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-22 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 63cddb3021a2fcaef1f6e6c91c660b1b6b5a9969..a700fab669e036806701663930e31f9c4e5dd602 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-12 02:04+0200\n" +"POT-Creation-Date: 2013-07-22 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" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index d0ff6e49a7326533eb8483ad6616fbde5f20c0bc..a2791378a8ab24f4d5c75067d795f6ae8cff4b32 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-12 02:04+0200\n" +"POT-Creation-Date: 2013-07-22 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_ldap.pot b/l10n/templates/user_ldap.pot index e7961d7585605ef1eadaf7175e744cb78bc06f08..8f11405f0342d64d4eb57bd1bd1b6397ddd9a5dc 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-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-22 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 1adc5c23ddd2b7e4b2d9b7d7240fc365e00bdb51..73e17a7004bf7025240ed6bae59f93e3883af9e3 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-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-22 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 48c473015862a622526cc26bc59d16cef4a491a2..2a9827f6603b29c32241f7187d71b82af6bd804d 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "ธันวาคม" msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 นาทีก่อนหน้านี้" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} นาทีก่อนหน้านี้" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} ชั่วโมงก่อนหน้านี้" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "วันนี้" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{day} วันก่อนหน้านี้" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} เดือนก่อนหน้านี้" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "ปี ที่ผ่านมา" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index 775b82f16b78a8ff5f4452761b80a724bd089e85..1e2f58fa3ebb11534f32695315f0b8870a82b51c 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "แนะนำชื่อ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "ดำเนินการตามคำสั่งลบ" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "การอัพโหลดไฟล์" @@ -204,7 +204,7 @@ msgstr "ชื่อโฟลเดอร์ไม่ถูกต้อง ก msgid "Name" msgstr "ชื่อ" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "ขนาด" @@ -212,19 +212,19 @@ msgstr "ขนาด" msgid "Modified" msgstr "แก้ไขแล้ว" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} ไฟล์" @@ -305,10 +305,6 @@ msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "ยกเลิกการแชร์" @@ -331,19 +327,19 @@ msgstr "ไฟล์กำลังอยู่ระหว่างการส msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "ไฟล์" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "ไฟล์" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 82d3b96822d719afb4a6d6d589fedfd36a97c942..80207630e89bb379bdc3abac36665419a424cf16 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 9f9b337d5be68f557fab31a431d07f97ac05d861..a97167631b75f80e547aa498625d060bcac701e0 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/th_TH/files_trashbin.po index ae2ecc79ed33770aff69e5e3b08c623147d5d535..7c894f6b700e83df69959e224db7b9e8649c0011 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 77929e2d1f94a26bac8171b2473586049f94d5e5..46067a7281e6921cb593d7989c0b070d46f36e97 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 นาทีก่อนหน้านี้" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d นาทีที่ผ่านมา" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d ชั่วโมงก่อนหน้านี้" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "วันนี้" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "เมื่อวานนี้" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d วันที่ผ่านมา" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "เดือนที่แล้ว" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d เดือนมาแล้ว" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "ปีที่แล้ว" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "ปี ที่ผ่านมา" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 1a43977ecd8c40af917a1b623bb8a87f006dffa0..94afd2135e807001aeebbb9354fd3ad076fb233d 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/th_TH/user_ldap.po index 028f158bd790c49f5a0d7f06aa425fccbbc2d75a..66e7c884261b4b69efb5f16808e297796354bae2 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 5dcc76d7af688bdbb6f14df717b9a6cd05fa3f28..80ce6702e16625993930eda6084fd0e9f717fbb7 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s sizinle »%s« paylaşımında bulundu" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -142,55 +142,55 @@ msgstr "Aralık" msgid "Settings" msgstr "Ayarlar" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "bugün" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "dün" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "geçen ay" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "ay önce" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "geçen yıl" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "yıl önce" @@ -285,7 +285,7 @@ msgstr "Parola" #: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "Herkes tarafından yüklemeye izin ver" #: js/share.js:191 msgid "Email link to person" @@ -412,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 "Dosyalarınız şifrelenmiş. Eğer kurtarma anahtarını aktif etmediyseniz parola sıfırlama işleminden sonra verilerinize erişmeniz imkansız olacak. Eğer ne yaptığınızdan emin değilseniz, devam etmeden önce sistem yöneticiniz ile irtibata geçiniz. Gerçekten devam etmek istiyor musunuz?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Evet,Şu anda parolamı sıfırlamak istiyorum." #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -475,7 +475,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Merhaba\n\n%s sizinle %s dosyasını paylaştığı\nPaylaşımı gör:%s\n\nİyi günler!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -613,7 +613,7 @@ msgstr "Alternatif Girişler" 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 "Merhaba, <br><br> %s sizinle »%s« paylaşımında bulundu.<br><a href=\"%s\">Paylaşımı gör!</a><br><br>İyi günler!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 87ee5c9665203668d95a176adc6a71912bf49c56..9abe7d3f58e5ebc74c0db082201d04804c833a8f 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -30,11 +30,11 @@ msgstr "%s taşınamadı" #: ajax/upload.php:16 ajax/upload.php:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "Yükleme dizini tanımlanamadı." #: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Geçeriz simge" #: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" @@ -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:465 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "değiştir" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "Öneri ad" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "iptal" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ismi {old_name} ile değiştirildi" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "geri al" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "Silme işlemini gerçekleştir" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Boyut" @@ -213,26 +213,26 @@ msgstr "Boyut" msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 dizin" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} dizin" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 dosya" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} dosya" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s yeniden adlandırılamadı" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -306,10 +306,6 @@ 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" @@ -332,19 +328,19 @@ msgstr "Dosyalar taranıyor, lütfen bekleyin." msgid "Current scanning" msgstr "Güncel tarama" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" -msgstr "" +msgstr "dizin" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" -msgstr "" +msgstr "dizinler" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "dosya" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "dosyalar" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index bd0a0e8610cc5fb02806bf095023a3eb8736e0d0..f6460e122513d6cef8d007ef808aa51f1e7c9d4d 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 b97c54efe37cf208fe56ffd789e7e9f0330362ba..c0f64bf35bbbf60c2db5d2969491fafd8e41d170 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/tr/files_trashbin.po index 0a3fec4911e52b8b7a20d057c60d2915f69c118e..3406138018b9c853ea54e3136059d1272dbadb65 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 5e68cdc7462471c1067adb7b19a34515271bda96..449e059d89af5b584cdd124b660071897e73a696 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "saniye önce" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 dakika önce" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d dakika önce" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 saat önce" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d saat önce" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "bugün" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "dün" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d gün önce" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "geçen ay" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d ay önce" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "geçen yıl" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "yıl önce" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 1447960f8e960b06baab88a72ce81fa35ccc1721..fa30f2a9ce575d9343b8b92b7698125327ec5e75 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -457,7 +457,7 @@ msgstr "WebDAV" 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 "" +msgstr " <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">Dosyalarınıza WebDAV üzerinen erişme </a> için bu adresi kullanın" #: templates/users.php:21 msgid "Login Name" @@ -475,7 +475,7 @@ msgstr "Yönetici kurtarma parolası" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Parola değiştirme sırasında kullanıcı dosyalarını kurtarmak için bir kurtarma paroalsı girin" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 2c3985ee802dfd038cb53b57f1b57790a9cf26b8..d14908873361aac140ea9d420d72fb1875bb9243 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 293122a553070778ccf9ca74222e44e25e0134e2..5c4b1865399e6d89b2a99fdc1f3468d6231be222 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -141,55 +141,55 @@ msgstr "كۆنەك" msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 مىنۇت ئىلگىرى" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 سائەت ئىلگىرى" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "بۈگۈن" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 831ed30c9ac783d4b96e3f15183bb659a3866e1c..3533873d050614107f50a8ece963d276d265a58a 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -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:465 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} مەۋجۇت" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ئالماشتۇر" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "تەۋسىيە ئات" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "ۋاز كەچ" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "يېنىۋال" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 ھۆججەت يۈكلىنىۋاتىدۇ" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "ھۆججەت يۈكلىنىۋاتىدۇ" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "ئاتى" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "چوڭلۇقى" @@ -212,19 +212,19 @@ msgstr "چوڭلۇقى" msgid "Modified" msgstr "ئۆزگەرتكەن" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 قىسقۇچ" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 ھۆججەت" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} ھۆججەت" @@ -305,10 +305,6 @@ 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 "ھەمبەھىرلىمە" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 1f2ec2db6f0e141fe653c64bda60f31069a783b3..fe1e2cc94b386a6712a74d950e0e7c1b87c859c5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 90d6c13d1b5c921144c18071646539ef9aa92bf7..d21a687f7cbf606342e72e42979aa1f7716b4342 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 5f236c7693c93b851060841bc0de708b3f82cd11..62010214e3507e9ff0dc8ad74d2ed0708b71c06b 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 393724f04c96739e219b8854f988a93bd546863e..c67310b85da46bb54029ca91d73ce32ad2734f22 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Uighur <uqkun@outlook.com>\n" "MIME-Version: 1.0\n" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 مىنۇت ئىلگىرى" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d مىنۇت ئىلگىرى" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 سائەت ئىلگىرى" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d سائەت ئىلگىرى" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "بۈگۈن" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "تۈنۈگۈن" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d كۈن ئىلگىرى" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d ئاي ئىلگىرى" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 3520668a452a849fc21c5d1a57062e6a956e4d6a..da681c3b068e14e90345158e1206b4923d25777c 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/ug/user_ldap.po b/l10n/ug/user_ldap.po index 9efe4f02f5a6249995ca2f30e5b839487cc494f6..5631393b6ec989eaa2e898a2fc1fb7cffb851a1c 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 d5a288795810f6262510982c6c32fa77c1f2c06e..2c9e555a2dbfa7c5ff179ab34d5c3316a8e7e5b4 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "Грудень" msgid "Settings" msgstr "Налаштування" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "сьогодні" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "вчора" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "минулого місяця" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "місяці тому" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "минулого року" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "роки тому" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index b850a76f0db6a1c444dc813eb08fa6d7c4bbdd26..db4daec0cf1d527dad0ec109db32de68a81ddba9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Очікування" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "заміна" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "запропонуйте назву" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "відміна" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "замінено {new_name} на {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "відмінити" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "виконати операцію видалення" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "файли завантажуються" @@ -204,7 +204,7 @@ msgstr "Невірне ім'я теки. Використання \"Shared\" з msgid "Name" msgstr "Ім'я" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Розмір" @@ -212,19 +212,19 @@ msgstr "Розмір" msgid "Modified" msgstr "Змінено" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 папка" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 файл" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} файлів" @@ -305,10 +305,6 @@ msgstr "Тут нічого немає. Відвантажте що-небудь msgid "Download" msgstr "Завантажити" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Закрити доступ" @@ -331,19 +327,19 @@ msgstr "Файли скануються, зачекайте, будь-ласка msgid "Current scanning" msgstr "Поточне сканування" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "файл" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "файли" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index bfde1fe2b121c6c433690b73d7c7817d0bc2a432..7877ab408992b4bb33bdc057ccca7fecc5c1b004 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 b26b84e10e327e60ba6d5c93e38196b5eb1fd184..09ed75540f75297954e27aecbd78db315c105a94 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/uk/files_trashbin.po index bbf58c9eabebb586bcaadb3d19646f24c486813a..f00824366d732614be6cd69bb19f07ae437bb76d 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 a19829389b608b738444281714b41b6e7a3c4d43..e17109050327f1b11f8ce2b75c7ea28e29c873d2 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "секунди тому" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 хвилину тому" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d хвилин тому" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 годину тому" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d годин тому" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "сьогодні" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "вчора" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d днів тому" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "минулого місяця" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d місяців тому" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "минулого року" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "роки тому" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 95eb95125416dbbacc022745a064ffe2e9092e7d..eb208b6c3976c77bf434ae663eef2658f5480364 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/uk/user_ldap.po index ca652b4208cdb50f75ae604603cb14eb54048c14..c3f5ce43d1b88fc677ab6722afb5c53c8b69afab 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 b9e09f213477151643ef2166cff75a01307cde65..630031129473cb3509c618d240a1a4415efb7ca4 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "دسمبر" msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 6b2ec6d854f676d439b7053b5647a9b6e1d39ea7..92cbb6b822fbb5b005cff7f7322af6a5b26c6b0e 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "شئیرنگ ختم کریں" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index e0fbc772b1bbe754fdc0749111210b75e0d8b382..7c50f21bfc9cedbfd015a4af5e3023e5a04aae41 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 2d1a8b6bef59ad8855a5ab3421ecc2aa82c4e5aa..f41842cfd7296be988c29fafe52c402de0d11916 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-11 02:17+0200\n" -"PO-Revision-Date: 2013-07-11 00:12+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 06:02+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index e9e6ee10ae4ddbc41d9e31679f30f8f27eb906ef..53ebc714e8c1961e95ec635da7780def06b7bec1 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/ur_PK/user_ldap.po index 6ee34a0b3adc01c65a223cc0f7db23762d6934f6..bcf3636b0b21ba795320918d9bfce1d28d1efc3b 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 43755c722c0cd35e8f292925a4f76992a9c89e6a..f78fe3f2f3e7581a2a6b4e99969d0f4f88b4332d 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -142,55 +142,55 @@ msgstr "Tháng 12" msgid "Settings" msgstr "Cài đặt" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 phút trước" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} phút trước" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 giờ trước" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} giờ trước" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "hôm nay" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} ngày trước" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "tháng trước" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} tháng trước" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "tháng trước" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "năm trước" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "năm trước" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 862360ab3210399e32ea9821c81ad6c28c332a03..b11c7b344e56fa3aa384339ce630e09a0df74e5d 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "Đang chờ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "thay thế" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "tên gợi ý" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "hủy" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "đã thay thế {new_name} bằng {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "lùi lại" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "thực hiện việc xóa" -#: js/filelist.js:456 +#: js/filelist.js:457 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:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "Kích cỡ" @@ -213,19 +213,19 @@ msgstr "Kích cỡ" msgid "Modified" msgstr "Thay đổi" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 thư mục" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} thư mục" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 tập tin" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} tập tin" @@ -306,10 +306,6 @@ 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ẻ" @@ -332,19 +328,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:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "file" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "files" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index bc03c4e0f7aa8d3b2b32f44b9479e95ae8183f25..82ed6f6c5d83c2a7ef6805f89080b258a00b4463 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 c3f16fe0da1e4ae500bcb0348c799fba44e2e117..cf8e59dc1a8a08808fc7fe3cd4f65b7aacffc1fb 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/files_trashbin.po b/l10n/vi/files_trashbin.po index 72ea66ee6b871a90c0af23edd9136cb89f61780a..563c0d9194a1fb24f43858ffafae355d25aca661 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 a44ee8e1aaafa254c47f2991629d8c5920e5033f..072047a082522f688b999d97c27deca2f4963684 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "vài giây trước" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 phút trước" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d phút trước" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 giờ trước" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d giờ trước" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "hôm nay" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "hôm qua" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d ngày trước" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "tháng trước" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d tháng trước" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "năm trước" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "năm trước" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 4445137e11699c6ade9c27cb4890504bdfc242ab..d2e6b3b0964e9dbaa7306e39c69feb830513f56b 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/vi/user_ldap.po index 356acb62b43105f41365ba3cf1fba035681d7266..abef1e9acbd5259adb5bf78efce6bba54c81123b 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 ae00d1bd3f13f858511de1a115eec198ac37c6c4..63b3e4ba590ec3c28cd49c892e9d79be64d749ad 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -143,55 +143,55 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "秒前" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours}小时前" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "今天" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "昨天" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "上个月" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months}月前" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "月前" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "去年" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index 309b697e7be9358bb1d3de21fddab83be05d7f82..eaefb2344f49215a3b2329937c8f78c38b53b5dd 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -3,12 +3,13 @@ # 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -20,20 +21,20 @@ 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:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "无法设置上传文件夹" #: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "非法Token" #: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" @@ -46,7 +47,7 @@ msgstr "文件上传成功" #: 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:69 msgid "" @@ -72,11 +73,11 @@ msgstr "写磁盘失败" #: ajax/upload.php:91 msgid "Not enough storage available" -msgstr "" +msgstr "容量不足" #: 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:465 msgid "Pending" msgstr "等待中" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "替换" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "推荐名称" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "取消" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "已用 {old_name} 替换 {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "撤销" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" -msgstr "" +msgstr "执行删除" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 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 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "大小" @@ -212,26 +213,26 @@ msgstr "大小" msgid "Modified" msgstr "修改日期" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 个文件夹" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 个文件" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" 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,10 +306,6 @@ msgstr "这里没有东西.上传点什么!" msgid "Download" msgstr "下载" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "取消分享" @@ -331,22 +328,22 @@ msgstr "正在扫描文件,请稍候." msgid "Current scanning" msgstr "正在扫描" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" -msgstr "" +msgstr "文件夹" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" -msgstr "" +msgstr "文件夹" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "文件" -#: templates/part.list.php:89 +#: templates/part.list.php:87 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 6e1fa3d3e97b8ee4ea5eae460990fb3580b20440..e2b7b32896378bda8886810c6b07cc5ea66518d9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 2b295f46e493ed4ad281bd3b04cd4d6b8bb26367..014194a08741e7d554bb8c069b9c475dd7b93791 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 301cf13b0616730949deb2d7ac8eb554c3a1d8c6..931b1011d7db7675501d994f6298ec49d3e9f640 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 a112ffc4e596913cef8e9474f1d10cded4865114..958e00ce8bbbbe41db2f12c9c82e5fd851149842 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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>。" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "秒前" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 分钟前" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d 分钟前" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1小时前" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "今天" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "昨天" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d 天前" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "上个月" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "去年" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index fad55f0c08752709eb91c2997f9645ed5ccf817f..93776a95056e7b56717d023f7177a29138ea83ff 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -457,7 +458,7 @@ msgstr "WebDAV" 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 "" +msgstr "访问WebDAV请点击 <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">此处</a>" #: templates/users.php:21 msgid "Login Name" @@ -469,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 a630a5b4c6841f2f32a9e31f3397099b88fc6b99..8e4e384b269a99fc027dfaaf808e6dd0a9c352db 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 32c0206d0907d99760fb6876d3dd8eb3c33b9aa2..e2a77942bf5c9eb10c855f3ea18b6a9a00e7b9a3 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -143,55 +143,55 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "秒前" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "今天" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "昨天" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "上月" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "月前" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "去年" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 5d112831207a759e95f7f8889fc8f6189432f580..684c5b7b6b06019286746e3254d5a1338485043c 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "等待" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "替换" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "建议名称" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "取消" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "已将 {old_name}替换成 {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "撤销" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "进行删除操作" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1个文件上传中" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "文件上传中" @@ -207,7 +207,7 @@ msgstr "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。" msgid "Name" msgstr "名称" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "大小" @@ -215,19 +215,19 @@ msgstr "大小" msgid "Modified" msgstr "修改日期" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 个文件" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} 个文件" @@ -308,10 +308,6 @@ msgstr "这里还什么都没有。上传些东西吧!" msgid "Download" msgstr "下载" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "取消共享" @@ -334,19 +330,19 @@ msgstr "文件正在被扫描,请稍候。" msgid "Current scanning" msgstr "当前扫描" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "文件" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "文件" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index d2a3305cf1307a315bba2fae1055f3ed7ac25a6d..9e186045372dc8dbc1119d98a5dd770194dc1e81 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 b65a9618655ce42a8fe71de0c48a32e5034b5b66..4b2cfe43bf92f1c2c30ee7aff7f288da2c339a02 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/zh_CN/files_trashbin.po index 2545afc0c7e063b868e9f24a87b1826219472836..de4c1a0f1ad6d6922dd54984e004211426b16929 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 fdaa20b74f82923e0731297e8a6af403ca5a051a..e5ac1806e9c619fb68234d7e2a561d9499fd45f0 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>." -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "秒前" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "一分钟前" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d 分钟前" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1小时前" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d小时前" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "今天" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "昨天" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d 天前" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "上月" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d 月前" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "去年" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index e5cfb5999a1dfc7a697b602fab1b8111bfcc5677..050a4523fc37dc9a933341ae72facf37592e118e 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/zh_CN/user_ldap.po index 24a78026bda7fd75b8d29bac123a6ec34771feaa..fe217328eb8353d1b26f15ee8805963a42f3af71 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 2308aaa24f2c309119dcc5521bc8b2dfc7da1f53..6d12be47ce04742ea7ac17b7f820b0d6e640ea48 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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" @@ -141,55 +141,55 @@ msgstr "十二月" msgid "Settings" msgstr "設定" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "今日" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "昨日" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "前一月" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "個月之前" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 8d0c82fad155e7451f3d896edb5224b1429f1a92..5075f77ace940d2bd3316d1995fb23ef704c1540 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -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:465 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "" @@ -204,7 +204,7 @@ msgstr "" msgid "Name" msgstr "名稱" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "" @@ -212,19 +212,19 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{}文件夾" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "" @@ -305,10 +305,6 @@ msgstr "" msgid "Download" msgstr "下載" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "取消分享" @@ -331,19 +327,19 @@ msgstr "" msgid "Current scanning" msgstr "" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" msgstr "" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" msgstr "" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" msgstr "" -#: templates/part.list.php:89 +#: templates/part.list.php:87 msgid "files" msgstr "" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index daabaa09e38c6638ab58ad9a98c8b9242b9de7ac..c17f2311737aff8edf4b5930dbc6f9c47c2f3d65 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 d95a8f14c0b2623950494baa6bff2f8fcf4cbb99..e29d626180c50116f53ee5207a24da566f127fe0 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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_trashbin.po b/l10n/zh_HK/files_trashbin.po index eb928a4dbdb6e689bd4cebb4a9eb109216cb811b..ee3c23dbdcbd4feee500da8650f3db0c10de3739 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 7ebc8cdc550b1016cffb75619e8114e3ff367579..d0977405310ab53286aa1e8205a4045829674645 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -170,74 +170,74 @@ 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 "" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "今日" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "昨日" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "前一月" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index c653a56f333242f43a6bff41ebdf4d96db80e5fb..05a3db8bcc4d227d421376de23d561987a80bc0a 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/user_ldap.po b/l10n/zh_HK/user_ldap.po index cd9a2adbf800afb396e67112dc0e9a2c8d676b14..919f13d502f62395a1f3cbf002c531cb0fa807c5 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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 8ae8ef4c04391d452de82e9a2db108d4ddd5bb8e..faf1c7c96238a65a37d0cf3954f494e0e975af1d 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+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." @@ -143,55 +143,55 @@ msgstr "十二月" msgid "Settings" msgstr "設定" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "1 小時之前" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} 小時前" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "今天" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "昨天" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "上個月" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "幾個月前" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "去年" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "幾年前" @@ -286,7 +286,7 @@ msgstr "密碼" #: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "允許任何人上傳" #: js/share.js:191 msgid "Email link to person" @@ -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" @@ -476,7 +476,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "嗨,\n\n通知您,%s 與您分享了 %s 。\n看一下:%s" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -614,7 +614,7 @@ msgstr "替代登入方法" 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 e33f5f1a53ef7af730b76fbf34b49264f8732410..cd2de3f3455f47ce1d340546a098f63080d6368d 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+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" @@ -30,11 +30,11 @@ msgstr "無法移動 %s" #: ajax/upload.php:16 ajax/upload.php:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "無法設定上傳目錄。" #: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "無效的 token" #: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" @@ -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:465 msgid "Pending" msgstr "等候中" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "取代" -#: js/filelist.js:302 +#: js/filelist.js:303 msgid "suggest name" msgstr "建議檔名" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "取消" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "使用 {new_name} 取代 {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:350 msgid "undo" msgstr "復原" -#: js/filelist.js:374 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "進行刪除動作" -#: js/filelist.js:456 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "檔案正在上傳中" @@ -205,7 +205,7 @@ msgstr "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留" msgid "Name" msgstr "名稱" -#: js/files.js:745 +#: js/files.js:745 templates/index.php:80 msgid "Size" msgstr "大小" @@ -213,26 +213,26 @@ msgstr "大小" msgid "Modified" msgstr "修改" -#: js/files.js:765 +#: js/files.js:763 msgid "1 folder" msgstr "1 個資料夾" -#: js/files.js:767 +#: js/files.js:765 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:775 +#: js/files.js:773 msgid "1 file" msgstr "1 個檔案" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" 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,10 +306,6 @@ msgstr "這裡什麼也沒有,上傳一些東西吧!" msgid "Download" msgstr "下載" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "取消共享" @@ -332,21 +328,21 @@ msgstr "正在掃描檔案,請稍等。" msgid "Current scanning" msgstr "目前掃描" -#: templates/part.list.php:76 +#: templates/part.list.php:74 msgid "directory" -msgstr "" +msgstr "目錄" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" -msgstr "" +msgstr "目錄" -#: templates/part.list.php:87 +#: templates/part.list.php:85 msgid "file" -msgstr "" +msgstr "檔案" -#: templates/part.list.php:89 +#: templates/part.list.php:87 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 c3d557e6fe2ce1b9605413eb7d159ec24d23fffb..cf0e97888c928c6a02c604135168955904fffdd6 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 92c4c1b7b3249997a01c11190102cbb90adcfe00..7dd5722a2fdc6d89c5871e88fbc56bf3488cddc9 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index fecece688306ec6769a648bc0956149be1d248bc..55811ae9215f823de858fec40a48791e47087438 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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 6720e139995f8f468ed6bc4ca4e5401ac46ea7dc..8c140b1aa3e457fae6d2dd597dcfd72cd8dd24e0 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -171,74 +171,74 @@ 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>。" -#: template.php:113 +#: template.php:95 msgid "seconds ago" msgstr "幾秒前" -#: template.php:114 +#: template.php:96 msgid "1 minute ago" msgstr "1 分鐘前" -#: template.php:115 +#: template.php:97 #, php-format msgid "%d minutes ago" msgstr "%d 分鐘前" -#: template.php:116 +#: template.php:98 msgid "1 hour ago" msgstr "1 小時之前" -#: template.php:117 +#: template.php:99 #, php-format msgid "%d hours ago" msgstr "%d 小時之前" -#: template.php:118 +#: template.php:100 msgid "today" msgstr "今天" -#: template.php:119 +#: template.php:101 msgid "yesterday" msgstr "昨天" -#: template.php:120 +#: template.php:102 #, php-format msgid "%d days ago" msgstr "%d 天前" -#: template.php:121 +#: template.php:103 msgid "last month" msgstr "上個月" -#: template.php:122 +#: template.php:104 #, php-format msgid "%d months ago" msgstr "%d 個月之前" -#: template.php:123 +#: template.php:105 msgid "last year" msgstr "去年" -#: template.php:124 +#: template.php:106 msgid "years ago" msgstr "幾年前" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 9233caaac10442b44209f04d373d376811a9b4a4..960ca8cabfdbaf69e2ce3dfa6ecca9a30abc2d7f 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-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+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" @@ -78,12 +78,12 @@ msgstr "管理者帳號無法從管理者群組中移除" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "使用者加入群組%s錯誤" +msgstr "使用者加入群組 %s 錯誤" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "使用者移出群組%s錯誤" +msgstr "使用者移出群組 %s 錯誤" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -144,7 +144,7 @@ msgstr "群組" #: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" -msgstr "群組 管理員" +msgstr "群組管理員" #: js/users.js:115 templates/users.php:164 msgid "Delete" @@ -156,11 +156,11 @@ msgstr "新增群組" #: js/users.js:428 msgid "A valid username must be provided" -msgstr "一定要提供一個有效的用戶名" +msgstr "必須提供一個有效的用戶名" #: js/users.js:429 js/users.js:435 js/users.js:450 msgid "Error creating user" -msgstr "創建用戶時出現錯誤" +msgstr "建立用戶時出現錯誤" #: js/users.js:434 msgid "A valid password must be provided" @@ -168,7 +168,7 @@ msgstr "一定要提供一個有效的密碼" #: personal.php:37 personal.php:38 msgid "__language_name__" -msgstr "__語言_名稱__" +msgstr "__language_name__" #: templates/admin.php:17 msgid "Security Warning" @@ -222,7 +222,7 @@ msgstr "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔 #: templates/admin.php:77 msgid "Internet connection not working" -msgstr "去連線" +msgstr "無網際網路存取" #: templates/admin.php:80 msgid "" @@ -236,7 +236,7 @@ msgstr "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功 #: templates/admin.php:94 msgid "Cron" -msgstr "定期執行" +msgstr "Cron" #: templates/admin.php:103 msgid "Execute one task with each page loaded" @@ -272,7 +272,7 @@ msgstr "允許連結" #: templates/admin.php:145 msgid "Allow users to share items to the public with links" -msgstr "允許使用者透過公開的連結分享檔案" +msgstr "允許使用者以結連公開分享檔案" #: templates/admin.php:152 msgid "Allow resharing" @@ -301,7 +301,7 @@ msgstr "強制啟用 HTTPS" #: templates/admin.php:184 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "強制指定用戶端使用加密的連線連接到 ownCloud" +msgstr "強制用戶端使用加密的連線連接到 ownCloud" #: templates/admin.php:187 msgid "" @@ -323,7 +323,7 @@ msgstr "更多" #: templates/admin.php:230 msgid "Less" -msgstr "少" +msgstr "更少" #: templates/admin.php:236 templates/personal.php:116 msgid "Version" @@ -337,7 +337,7 @@ msgid "" "licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " "target=\"_blank\"><abbr title=\"Affero General Public " "License\">AGPL</abbr></a>." -msgstr "由<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud 社區</a>開發,<a href=\"https://github.com/owncloud\" target=\"_blank\">源代碼</a>在<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>許可證下發布。" +msgstr "由 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud 社群</a>開發,<a href=\"https://github.com/owncloud\" target=\"_blank\">原始碼</a>在 <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> 許可證下發布。" #: templates/apps.php:13 msgid "Add your App" @@ -457,7 +457,7 @@ msgstr "WebDAV" 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 "" +msgstr "使用<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">這個網址</a>來透過 WebDAV 存取您的檔案" #: templates/users.php:21 msgid "Login Name" @@ -475,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 b550b20a8ebe241262f4df07093ae4928ac4e8b4..6e4c99722f2565800ffdca805f4b7ab68256627b 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:26+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" diff --git a/l10n/zh_TW/user_webdavauth.po b/l10n/zh_TW/user_webdavauth.po index 5e8abbbb84bed55f110018468229c6360a59c366..a72b457be2b5a5b927f88debc6fb8011a247eab9 100644 --- a/l10n/zh_TW/user_webdavauth.po +++ b/l10n/zh_TW/user_webdavauth.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-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-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 09:20+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" @@ -27,11 +27,11 @@ msgstr "WebDAV 認證" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL: " #: 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 "ownCloud 會將把用戶的登入資訊發送到這個網址以嘗試登入,並檢查回應, HTTP 狀態碼401和403視為登入失敗,所有其他回應視為登入成功。" +msgstr "ownCloud 將會把用戶的帳密傳送至這個網址以嘗試登入,並檢查回應,HTTP 狀態碼401和403視為登入失敗,所有其他回應視為登入成功。" diff --git a/lib/MDB2/Driver/Datatype/sqlite3.php b/lib/MDB2/Driver/Datatype/sqlite3.php deleted file mode 100644 index ca4c1cbceb8d3d85d651eb5656be0a1b01341fe7..0000000000000000000000000000000000000000 --- 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 4147a48199f54e1bdb1e1f2cc939c3f83790d75e..0000000000000000000000000000000000000000 --- 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 921153c17dd027f9c082caa4a6be73bba4ab7655..0000000000000000000000000000000000000000 --- 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 344d523bdf3285b38e12789f1959f9a8a41199b6..0000000000000000000000000000000000000000 --- 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 9703780954904d49165abd82d389f847f986f4d0..0000000000000000000000000000000000000000 --- 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 693ceffa01c0d22b9ef49ce5e3a6ddb5557d908d..0000000000000000000000000000000000000000 --- 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 f9b1c5ca7b55c21c065568ce135d2a6e2fd3f7f9..baacf508d8e280ad185c4a7fe9ca3091a225c938 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 61239c82076bb3394b6466aa80363e5807e31ef1..70615db714e40e8bc230ad19c8e882feaf5c5f18 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 e7c81389619a8f2d00cb94aea7cb3b275895cb46..a1c0535b1c3e49a71b706d64632fec92d96478f8 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 8e31795ded1512c02cdadd667c1175dc2263c949..8a866716a7949f7442611bb40ae8090fbba153c5 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 d1279a46337e6a37b5a209d1d7ed72a9a303fd94..1ff462819db4b5a1901cff0aeb213be6748f8bda 100644 --- a/lib/base.php +++ b/lib/base.php @@ -124,10 +124,9 @@ class OC { OC::$THIRDPARTYWEBROOT = rtrim(dirname(OC::$WEBROOT), '/'); OC::$THIRDPARTYROOT = rtrim(dirname(OC::$SERVERROOT), '/'); } else { - echo('3rdparty directory not found! Please put the ownCloud 3rdparty' + throw new Exception('3rdparty directory not found! Please put the ownCloud 3rdparty' .' folder in the ownCloud folder or the folder above.' .' You can also configure the location in the config.php file.'); - exit; } // search the apps folder $config_paths = OC_Config::getValue('apps_paths', array()); @@ -150,9 +149,8 @@ class OC { } if (empty(OC::$APPSROOTS)) { - echo('apps directory not found! Please put the ownCloud apps folder in the ownCloud folder' + throw new Exception('apps directory not found! Please put the ownCloud apps folder in the ownCloud folder' .' or the folder above. You can also configure the location in the config.php file.'); - exit; } $paths = array(); foreach (OC::$APPSROOTS as $path) { @@ -174,14 +172,11 @@ class OC { 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' => 'This can usually be fixed by ' + OC_Template::printErrorPage( + "Can't write into config directory 'config'", + '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(); + ); } } @@ -223,10 +218,7 @@ class OC { header('Retry-After: 120'); // render error page - $tmpl = new OC_Template('', 'error', 'guest'); - $tmpl->assign('errors', array(1 => array('error' => 'ownCloud is in maintenance mode'))); - $tmpl->printPage(); - exit(); + OC_Template::printErrorPage('ownCloud is in maintenance mode'); } } @@ -305,11 +297,7 @@ class OC { $error = 'Session could not be initialized. Please contact your '; $error .= 'system administrator'; - $tmpl = new OC_Template('', 'error', 'guest'); - $tmpl->assign('errors', array(1 => array('error' => $error))); - $tmpl->printPage(); - - exit(); + OC_Template::printErrorPage($error); } $sessionLifeTime = self::getSessionLifeTime(); @@ -370,6 +358,7 @@ class OC { self::$loader->registerPrefix('Symfony\\Component\\Routing', 'symfony/routing'); self::$loader->registerPrefix('Sabre\\VObject', '3rdparty'); self::$loader->registerPrefix('Sabre_', '3rdparty'); + self::$loader->registerPrefix('Patchwork', '3rdparty'); spl_autoload_register(array(self::$loader, 'load')); // set some stuff @@ -434,9 +423,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 @@ -598,6 +586,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)) { @@ -699,15 +690,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)); } @@ -805,8 +792,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 bc74ed83f8bf150b7c596b306a4df6de38867aaf..48b9964ba9d19dd0713f3b5d188e0daa9b20e4e0 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 895d307ea26bd9c5d9a2fc6529660568e912642d..0000000000000000000000000000000000000000 --- 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 00d9f5b4247e80fc47af09e8a4b34363cb820c61..a38ce19c74f1ce9731b2af7362864dffe5836739 100644 --- a/lib/config.php +++ b/lib/config.php @@ -144,7 +144,11 @@ class Config { continue; } unset($CONFIG); - include $file; + if((@include $file) === false) + { + throw new HintException("Can't read from config file '" . $file . "'. ". + 'This is usually caused by the wrong file permission.'); + } if (isset($CONFIG) && is_array($CONFIG)) { $this->cache = array_merge($this->cache, $CONFIG); } diff --git a/lib/connector/sabre/auth.php b/lib/connector/sabre/auth.php index 6990d928cffee9d462e08cb8d2c6de2c615fc571..bf3a49593cbc23419ed2dd404f589bb5b1dd24e8 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 6fec60e53ce85d3c364419a0d745550acbd81ead..e70d66fc2ba2f8c6403aba9f8bf951ea1e1f1095 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 + if(!self::$DOCTRINE) { + $config = new \Doctrine\DBAL\Configuration(); 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 - 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,134 +408,25 @@ 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; } /** @@ -733,7 +485,7 @@ class OC_DB { try { $result = self::executeAudited($query, $inserts); - } catch(PDOException $e) { + } catch(\Doctrine\DBAL\DBALException $e) { OC_Template::printExceptionErrorPage( $e ); } @@ -765,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); } @@ -848,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); } /** @@ -858,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); } /** @@ -910,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; @@ -933,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 @@ -968,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] . ', '; @@ -1015,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 or updated row count 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 0000000000000000000000000000000000000000..0ead9528c937d5b41d85b2103a7eb5182dbcf80a --- /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 0000000000000000000000000000000000000000..21b43cbfe806849279729a6c22a1cc99dd9fc520 --- /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 0000000000000000000000000000000000000000..fa053c64ef05c38b4d8fe4a26d4fecf491ce7ea3 --- /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 0000000000000000000000000000000000000000..f7bc45e068f8385fcbabbfee5602ddd4039fdcab --- /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 31d6edc1874cbd44f94a152a76f917c19eb01783..a83084d92514af6276d6ac4c7cfd8c64d1d8612c 100644 --- a/lib/eventsource.php +++ b/lib/eventsource.php @@ -53,7 +53,7 @@ class OC_EventSource{ /** * send a message to the client * @param string $type - * @param object $data + * @param mixed $data * * if only one parameter is given, a typeless message will be send with that parameter as data */ diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index 9b94a24f48123e3e6e20eb1c531cb2ab23f6cfd1..bcd6032fcac7649e108afc5c72607451936deb48 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -9,8 +9,18 @@ namespace OC\Files\Cache; use OC\Files\Filesystem; +use OC\Hooks\BasicEmitter; -class Scanner { +/** + * Class Scanner + * + * Hooks available in scope \OC\Files\Cache\Scanner: + * - scanFile(string $path, string $storageId) + * - scanFolder(string $path, string $storageId) + * + * @package OC\Files\Cache + */ +class Scanner extends BasicEmitter { /** * @var \OC\Files\Storage\Storage $storage */ @@ -71,6 +81,7 @@ class Scanner { if (!self::isPartialFile($file) and !Filesystem::isFileBlacklisted($file) ) { + $this->emit('\OC\Files\Cache\Scanner', 'scanFile', array($file, $this->storageId)); \OC_Hook::emit('\OC\Files\Cache\Scanner', 'scan_file', array('path' => $file, 'storage' => $this->storageId)); $data = $this->getData($file); if ($data) { @@ -134,7 +145,7 @@ class Scanner { if ($reuse === -1) { $reuse = ($recursive === self::SCAN_SHALLOW) ? self::REUSE_ETAG | self::REUSE_SIZE : 0; } - \OC_Hook::emit('\OC\Files\Cache\Scanner', 'scan_folder', array('path' => $path, 'storage' => $this->storageId)); + $this->emit('\OC\Files\Cache\Scanner', 'scanFolder', array($path, $this->storageId)); $size = 0; $childQueue = array(); $existingChildren = array(); diff --git a/lib/files/cache/updater.php b/lib/files/cache/updater.php index 87c33a313a482ebb755ef0bbdfc3ac56bfbb37ec..1f30173a8f8b18d1a1741e4171217d45813bb3b0 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 3d7d5abf8fe49463107cb329cd8179c7a68da183..d6ebe7d629a6d90e00332e7179f242de678c1f79 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: @@ -148,13 +148,20 @@ class Filesystem { */ private static $loader; - public static function getLoader(){ + public static function getLoader() { if (!self::$loader) { self::$loader = new Loader(); } return self::$loader; } + public static function getMountManager() { + if (!self::$mounts) { + \OC_Util::setupFS(); + } + return self::$mounts; + } + /** * get the mountpoint of the storage object for a path * ( note: because a storage is not always mounted inside the fakeroot, the @@ -717,7 +724,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/files/utils/scanner.php b/lib/files/utils/scanner.php new file mode 100644 index 0000000000000000000000000000000000000000..800bb64993429ba5f5dba1bd7149ac419f1984ab --- /dev/null +++ b/lib/files/utils/scanner.php @@ -0,0 +1,89 @@ +<?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\Files\Utils; + +use OC\Hooks\BasicEmitter; +use OC\Files\Filesystem; + +/** + * Class Scanner + * + * Hooks available in scope \OC\Utils\Scanner + * - scanFile(string $absolutePath) + * - scanFolder(string $absolutePath) + * + * @package OC\Files\Utils + */ +class Scanner extends BasicEmitter { + /** + * @var string $user + */ + private $user; + + /** + * @param string $user + */ + public function __construct($user) { + $this->user = $user; + } + + /** + * get all storages for $dir + * + * @param string $dir + * @return \OC\Files\Mount\Mount[] + */ + protected function getMounts($dir) { + //TODO: move to the node based fileapi once that's done + \OC_Util::tearDownFS(); + \OC_Util::setupFS($this->user); + $absolutePath = Filesystem::getView()->getAbsolutePath($dir); + + $mountManager = Filesystem::getMountManager(); + $mounts = $mountManager->findIn($absolutePath); + $mounts[] = $mountManager->find($absolutePath); + $mounts = array_reverse($mounts); //start with the mount of $dir + + return $mounts; + } + + /** + * attach listeners to the scanner + * + * @param \OC\Files\Mount\Mount $mount + */ + protected function attachListener($mount) { + $scanner = $mount->getStorage()->getScanner(); + $scanner->listen('\OC\Files\Cache\Scanner', 'scanFile', function ($path) use ($mount) { + $this->emit('\OC\Files\Utils\Scanner', 'scanFile', array($mount->getMountPoint() . $path)); + }); + $scanner->listen('\OC\Files\Cache\Scanner', 'scanFolder', function ($path) use ($mount) { + $this->emit('\OC\Files\Utils\Scanner', 'scanFolder', array($mount->getMountPoint() . $path)); + }); + } + + public function backgroundScan($dir) { + $mounts = $this->getMounts($dir); + foreach ($mounts as $mount) { + $scanner = $mount->getStorage()->getScanner(); + $this->attachListener($mount); + $scanner->backgroundScan(); + } + } + + public function scan($dir) { + $mounts = $this->getMounts($dir); + foreach ($mounts as $mount) { + $scanner = $mount->getStorage()->getScanner(); + $this->attachListener($mount); + $scanner->scan('', \OC\Files\Cache\Scanner::SCAN_RECURSIVE, \OC\Files\Cache\Scanner::REUSE_ETAG); + } + } +} + diff --git a/lib/helper.php b/lib/helper.php index 1860a55fc8fd7a3515341d5ad8ebbc534ed8bacf..df0d120976df44e9ef9bff1e701d9efeb9f123cb 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/installer.php b/lib/installer.php index 49ba44926323c8eb6054c8cdf58ceacd911db7d1..dcd29f9e1ade6571e44f49f62c0aa1f14df1da7d 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -436,10 +436,30 @@ class OC_Installer{ $blacklist=array( 'exec(', - 'eval(' + 'eval(', // more evil pattern will go here later - // will will also check if an app is using private api once the public api is in place + // classes replaced by the public api + 'OC_API::', + 'OC_App::', + 'OC_AppConfig::', + 'OC_BackgroundJob::', + 'OC_Config::', + 'OC_DB::', + 'OC_Files::', + 'OC_Helper::', + 'OC_Hook::', + 'OC_Image::', + 'OC_JSON::', + 'OC_L10N::', + 'OC_Log::', + 'OC_Mail::', + 'OC_Preferences::', + 'OC_Request::', + 'OC_Response::', + 'OC_Template::', + 'OC_User::', + 'OC_Util::', ); // is the code checker enabled? diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index e66771f7e747eec8e7967969ad987129269f3be3..cd1a0fbb530dd6b38c551ae14a0f2e6b60dfadbb 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -3,50 +3,50 @@ "Personal" => "Personal", "Settings" => "Configuración", "Users" => "Usuarios", -"Apps" => "Aplicaciones", +"Apps" => "Apps", "Admin" => "Administración", -"web services under your control" => "servicios web que controlás", +"web services under your control" => "servicios web sobre los que tenés 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 de a uno.", -"Back to Files" => "Volver a archivos", +"Back to Files" => "Volver a Archivos", "Selected files too large to generate zip file." => "Los archivos seleccionados son demasiado grandes para generar el archivo zip.", -"couldn't be determined" => "no pudo ser determinado", +"couldn't be determined" => "no se pudo determinar", "Application is not enabled" => "La aplicación no está habilitada", "Authentication error" => "Error al autenticar", "Token expired. Please reload page." => "Token expirado. Por favor, recargá la página.", "Files" => "Archivos", "Text" => "Texto", "Images" => "Imágenes", -"%s enter the database username." => "%s Entre el Usuario de la Base de Datos", -"%s enter the database name." => "%s Entre el Nombre de la Base de Datos", -"%s you may not use dots in the database name" => "%s no puede usar puntos en el nombre de la Base de Datos", +"%s enter the database username." => "%s Entrá el usuario de la base de datos", +"%s enter the database name." => "%s Entrá el nombre de la base de datos.", +"%s you may not use dots in the database name" => "%s no podés usar puntos en el nombre de la base de datos", "MS SQL username and/or password not valid: %s" => "Nombre de usuario y contraseña de MS SQL no son válidas: %s", -"You need to enter either an existing account or the administrator." => "Debe ingresar una cuenta existente o el administrador", +"You need to enter either an existing account or the administrator." => "Tenés que ingresar una cuenta existente o el administrador.", "MySQL username and/or password not valid" => "Usuario y/o contraseña MySQL no válido", "DB Error: \"%s\"" => "Error DB: \"%s\"", "Offending command was: \"%s\"" => "El comando no comprendido es: \"%s\"", -"MySQL user '%s'@'localhost' exists already." => "Usuario MySQL '%s'@'localhost' ya existente", +"MySQL user '%s'@'localhost' exists already." => "Usuario MySQL '%s'@'localhost' ya existe.", "Drop this user from MySQL" => "Borrar este usuario de MySQL", -"MySQL user '%s'@'%%' already exists" => "Usuario MySQL '%s'@'%%' ya existente", +"MySQL user '%s'@'%%' already exists" => "Usuario MySQL '%s'@'%%' ya existe", "Drop this user from MySQL." => "Borrar este usuario de MySQL", "Oracle connection could not be established" => "No fue posible establecer la conexión a Oracle", -"Oracle username and/or password not valid" => "El nombre de usuario y contraseña no son válidos", +"Oracle username and/or password not valid" => "El nombre de usuario y/o contraseña no son válidos", "Offending command was: \"%s\", name: %s, password: %s" => "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\"", -"PostgreSQL username and/or password not valid" => "Nombre de usuario o contraseña de PostgradeSQL no válido.", -"Set an admin username." => "Configurar un nombre de administrador", -"Set an admin password." => "Configurar una palabra clave de administrador", +"PostgreSQL username and/or password not valid" => "Nombre de usuario o contraseña PostgradeSQL inválido.", +"Set an admin username." => "Configurar un nombre de administrador.", +"Set an admin password." => "Configurar una contraseña de administrador.", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar.", "Please double check the <a href='%s'>installation guides</a>." => "Por favor, comprobá nuevamente la <a href='%s'>guía de instalación</a>.", "seconds ago" => "segundos atrás", "1 minute ago" => "hace 1 minuto", "%d minutes ago" => "hace %d minutos", -"1 hour ago" => "1 hora atrás", -"%d hours ago" => "%d horas atrás", +"1 hour ago" => "hace 1 hora", +"%d hours ago" => "hace %d horas", "today" => "hoy", "yesterday" => "ayer", "%d days ago" => "hace %d días", "last month" => "el mes pasado", -"%d months ago" => "%d meses atrás", +"%d months ago" => "hace %d meses", "last year" => "el año pasado", "years ago" => "años atrás", "Could not find category \"%s\"" => "No fue posible encontrar la categoría \"%s\"" diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 028ad0a631efc08673ddd56cfbfd04360cd0428b..131ac6d7daa3f25517554c7fca9a40ab09d2737c 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -29,6 +29,7 @@ "Drop this user from MySQL" => "Ezabatu erabiltzaile hau MySQLtik", "MySQL user '%s'@'%%' already exists" => "MySQL '%s'@'%%' erabiltzailea dagoeneko existitzen da", "Drop this user from MySQL." => "Ezabatu erabiltzaile hau MySQLtik.", +"Oracle connection could not be established" => "Ezin da Oracle konexioa sortu", "Oracle username and/or password not valid" => "Oracle erabiltzaile edota pasahitza ez dira egokiak.", "Offending command was: \"%s\", name: %s, password: %s" => "Errorea komando honek sortu du: \"%s\", izena: %s, pasahitza: %s", "PostgreSQL username and/or password not valid" => "PostgreSQL erabiltzaile edota pasahitza ez dira egokiak.", diff --git a/lib/legacy/log.php b/lib/legacy/log.php index 7802ead24127d27012fcfef31cb91dcf4668e791..027cb89e97cbe99fd8a53902c88c0fddac21c5dd 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/log/errorhandler.php b/lib/log/errorhandler.php new file mode 100644 index 0000000000000000000000000000000000000000..69cb960de915268fac38ac2cf5c0dacb77e507dc --- /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 0000000000000000000000000000000000000000..575ee4427db6d5773466ec573e906026fcc3f740 --- /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 0000000000000000000000000000000000000000..0ad1cc7ec0391025ef11be3296b9aa992375d0fa --- /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 0000000000000000000000000000000000000000..b1b49971031f2063e0f9f3d431c2925bb841782f --- /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 0000000000000000000000000000000000000000..978e6c2eff12b398beead40859e2eb87a2367e10 --- /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 similarity index 69% rename from lib/cache/xcache.php rename to lib/memcache/xcache.php index 9f380f870b98da0d83b72e77a90074abfdeddc8a..33de30562f901e7bbaef111cc823f70db700ec95 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 5f6434bcf9cd9a12b1ab43d7a8e4dd9fa796acef..11ca760830edea40b35ead1154e02d516fc92328 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/tests/lib/cache/xcache.php b/lib/public/image.php similarity index 68% rename from tests/lib/cache/xcache.php rename to lib/public/image.php index 43bed2db037a5f30ab45c2d280b42edcc83ddfd7..dcecc077e2f501d0541ceed61938a2d5460b370e 100644 --- a/tests/lib/cache/xcache.php +++ b/lib/public/image.php @@ -2,8 +2,8 @@ /** * ownCloud * -* @author Robin Appelman -* @copyright 2012 Robin Appelman icewind@owncloud.com +* @author Bart Visscher +* @copyright 2013 Bart Visscher <bartv@thisnet.nl> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -20,12 +20,10 @@ * */ -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(); - } +namespace OCP; + +/** + * This class provides functions to handle images + */ +class Image extends OC_Image { } diff --git a/lib/public/template.php b/lib/public/template.php index ccf19cf052cbefc4a7e52c7a22f82cb898560858..ab1089c332d659088c0ad69067a03af90fb3959c 100644 --- a/lib/public/template.php +++ b/lib/public/template.php @@ -77,12 +77,13 @@ function relative_modified_date($timestamp) { /** - * @brief Return a human readable outout for a file size. + * @brief DEPRECATED Return a human readable outout for a file size. + * @deprecated human_file_size() instead * @param $byte size of a file in byte * @returns human readable interpretation of a file size */ function simple_file_size($bytes) { - return(\simple_file_size($bytes)); + return(\human_file_size($bytes)); } diff --git a/lib/public/user.php b/lib/public/user.php index 9edebe0e7cf5ccc822b84f59193867403ba3b6d7..23ff991642dfb7e9c457bb34c5c5698c9eaeceb0 100644 --- a/lib/public/user.php +++ b/lib/public/user.php @@ -40,7 +40,7 @@ class User { * @return string uid or false */ public static function getUser() { - return \OC_USER::getUser(); + return \OC_User::getUser(); } /** @@ -50,7 +50,7 @@ class User { * Get a list of all users. */ public static function getUsers($search = '', $limit = null, $offset = null) { - return \OC_USER::getUsers(); + return \OC_User::getUsers($search, $limit, $offset); } /** @@ -58,7 +58,7 @@ class User { * @return string display name */ public static function getDisplayName($user=null) { - return \OC_USER::getDisplayName($user); + return \OC_User::getDisplayName($user); } /** @@ -68,7 +68,7 @@ class User { * Get a list of all display names and user ids. */ public static function getDisplayNames($search = '', $limit = null, $offset = null) { - return \OC_USER::getDisplayNames($search, $limit, $offset); + return \OC_User::getDisplayNames($search, $limit, $offset); } /** @@ -78,7 +78,7 @@ class User { * Checks if the user is logged in */ public static function isLoggedIn() { - return \OC_USER::isLoggedIn(); + return \OC_User::isLoggedIn(); } /** @@ -88,14 +88,14 @@ class User { * @return boolean */ public static function userExists( $uid, $excludingBackend = null ) { - return \OC_USER::userExists( $uid, $excludingBackend ); + return \OC_User::userExists( $uid, $excludingBackend ); } /** * @brief Loggs the user out including all the session data * Logout, destroys session */ public static function logout() { - \OC_USER::logout(); + \OC_User::logout(); } /** @@ -107,7 +107,7 @@ class User { * Check if the password is correct without logging in the user */ public static function checkPassword( $uid, $password ) { - return \OC_USER::checkPassword( $uid, $password ); + return \OC_User::checkPassword( $uid, $password ); } /** diff --git a/lib/public/util.php b/lib/public/util.php index d69602f4507af9654c60cc54b95aeaae544fd284..7205950d149803c44c69d86f0e59f108ee845bf4 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -77,6 +77,15 @@ class Util { \OC_LOG::write( $app, $message, $level ); } + /** + * @brief get l10n object + * @param string $app + * @return OC_L10N + */ + public static function getL10N( $application ) { + \OC_L10N::get( $application ); + } + /** * @brief add a css file * @param string $url diff --git a/lib/template.php b/lib/template.php index ae9ea187445912434622f0f0a8481ac9a2d98d44..d48e3b36821c4ea67b7f83eff37b5f0a342df288 100644 --- a/lib/template.php +++ b/lib/template.php @@ -84,24 +84,6 @@ function human_file_size( $bytes ) { return OC_Helper::humanFileSize( $bytes ); } -function simple_file_size($bytes) { - if ($bytes < 0) { - return '?'; - } - $mbytes = round($bytes / (1024 * 1024), 1); - if ($bytes == 0) { - return '0'; - } - if ($mbytes < 0.1) { - return '< 0.1'; - } - if ($mbytes > 1000) { - return '> 1000'; - } else { - return number_format($mbytes, 1); - } -} - function relative_modified_date($timestamp) { $l=OC_L10N::get('lib'); $timediff = time() - $timestamp; @@ -181,7 +163,7 @@ class OC_Template{ $this->renderas = $renderas; $this->application = $app; $this->vars = array(); - $this->vars['requesttoken'] = OC_Util::callRegister(); + $this->vars['requesttoken'] = OC::$session ? OC_Util::callRegister() : ''; $parts = explode('/', $app); // fix translation when app is something like core/lostpassword $this->l10n = OC_L10N::get($parts[0]); @@ -243,6 +225,9 @@ class OC_Template{ */ static public function getFormFactorExtension() { + if (!\OC::$session) { + return ''; + } // if the formfactor is not yet autodetected do the // autodetection now. For possible formfactors check the // detectFormfactor documentation @@ -547,6 +532,9 @@ class OC_Template{ $error_msg = '['.$exception->getCode().'] '.$error_msg; } $hint = $exception->getTraceAsString(); + if (!empty($hint)) { + $hint = '<pre>'.$hint.'</pre>'; + } while (method_exists($exception,'previous') && $exception = $exception->previous()) { $error_msg .= '<br/>Caused by: '; if ($exception->getCode()) { diff --git a/lib/user.php b/lib/user.php index 830f13bb8df6900304eb60d042d410ac844b54ef..d93ab1a5f73802ec650bd4dc04a497061632a610 100644 --- a/lib/user.php +++ b/lib/user.php @@ -316,7 +316,7 @@ class OC_User { * @return string uid or false */ public static function getUser() { - $uid = OC::$session->get('user_id'); + $uid = OC::$session ? OC::$session->get('user_id') : null; if (!is_null($uid)) { return $uid; } else { diff --git a/lib/util.php b/lib/util.php index 981b05b2b46130a60318203705059da1c9e5fc88..2586ad28320eaefc06174fd41ba8bba3b58d34bc 100755 --- a/lib/util.php +++ b/lib/util.php @@ -1,7 +1,5 @@ <?php -require_once 'Patchwork/PHP/Shim/Normalizer.php'; - /** * Class for utility functions * diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 55b48a4d606d0e82cd009eaf8b8c12749cfd055f..ca75653bf851645b520084cfdaf604287395b8ee 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -98,6 +98,7 @@ "Language" => "Idioma", "Help translate" => "Ajudeu-nos amb la traducció", "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>" => "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 433eb83462f5a61183c5b340ee75d779ffe15ca4..2c4cd545233b8372dde88263984dd27a9bfd2486 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -98,6 +98,7 @@ "Language" => "Jazyk", "Help translate" => "Pomoci s překladem", "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>" => "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/de_DE.php b/settings/l10n/de_DE.php index bb4ea79319009441085b60f49b02366e9788237f..ff71cbdd0fa1ff4a5b95fae0c638c2ed996af0bb 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 <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">access your Files via WebDAV</a>" => "Nutzen Sie diese Adresse um <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">auf ihre Dateien per WebDAV zuzugreifen</a>", +"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/eu.php b/settings/l10n/eu.php index 4cf22c06a981e998b3349a57b831030c7cb4421d..94751d916b1f6a454e00cf8dbbaf57f8bd02bdfb 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -98,6 +98,7 @@ "Language" => "Hizkuntza", "Help translate" => "Lagundu itzultzen", "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\">helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko</a>", "Login Name" => "Sarrera Izena", "Create" => "Sortu", "Admin Recovery Password" => "Kudeatzaile pasahitz berreskuratzea", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index f81f786370400815eae9ece2faa6a0ba47b6ef48..282e619009a0836f89580d721e4de8b6063a64c2 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -72,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", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index eb628a530eb10cb953b03a76853de93c3cd92f25..1e54dcb692676092ede0669956fe396ec1a8b034 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/nb_NO.php b/settings/l10n/nb_NO.php index f24aa50dbf399c5f96c1623ebe92e9fd742bfd6e..408b8570fd297ac6eb9963eefaeaa9a9c72b82e5 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -98,6 +98,7 @@ "Language" => "Språk", "Help translate" => "Bidra til oversettelsen", "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>" => "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 d51d1d3af5c3e4c78e8c8c583a581fdeb712dc95..910e321b5f568e6246a0ebb42e50f7968ad40165 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -98,6 +98,7 @@ "Language" => "Taal", "Help translate" => "Help met vertalen", "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>" => "Gebruik dit adres <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">toegang tot uw bestanden via WebDAV</a>", "Login Name" => "Inlognaam", "Create" => "Creëer", "Admin Recovery Password" => "Beheer herstel wachtwoord", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 1390cd16be5301dbcbca343f39cc2e4aae892ae1..259b3032744af291a81a8c93fe4204a26d1b8bf4 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -98,6 +98,7 @@ "Language" => "Idioma", "Help translate" => "Ajude a traduzir", "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>" => "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/sv.php b/settings/l10n/sv.php index 567c21999015d1c45fea5ad4cb2db9754f77de39..7a9f341e4dd0878e422619bd65e3128a8484c5da 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -98,6 +98,7 @@ "Language" => "Språk", "Help translate" => "Hjälp att översätta", "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>" => "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/tr.php b/settings/l10n/tr.php index 30b637ab94da48aa90adad09423ca3927dbde0cd..0f33eb036cf2931e55a4c1b6790106f137656e88 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -98,9 +98,11 @@ "Language" => "Dil", "Help translate" => "Çevirilere yardım edin", "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\">Dosyalarınıza WebDAV üzerinen erişme </a> için bu adresi kullanın", "Login Name" => "Giriş Adı", "Create" => "Oluştur", "Admin Recovery Password" => "Yönetici kurtarma parolası", +"Enter the recovery password in order to recover the users files during password change" => "Parola değiştirme sırasında kullanıcı dosyalarını kurtarmak için bir kurtarma paroalsı girin", "Default Storage" => "Varsayılan Depolama", "Unlimited" => "Limitsiz", "Other" => "Diğer", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 65a6938c8b6e48b901027c15bb7ec400b82629ee..789c93de23bc7722b5bd1ed2aec53fc7cb8f0a5f 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,8 +98,11 @@ "Language" => "语言", "Help translate" => "帮助翻译", "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>" => "访问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_TW.php b/settings/l10n/zh_TW.php index 8bdfc37b2bacb87bbaec313302861e67eabcaf54..937347d5a14ca9475163f3be87d71ea7ea9cd538 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -13,8 +13,8 @@ "Language changed" => "語言已變更", "Invalid request" => "無效請求", "Admins can't remove themself from the admin group" => "管理者帳號無法從管理者群組中移除", -"Unable to add user to group %s" => "使用者加入群組%s錯誤", -"Unable to remove user from group %s" => "使用者移出群組%s錯誤", +"Unable to add user to group %s" => "使用者加入群組 %s 錯誤", +"Unable to remove user from group %s" => "使用者移出群組 %s 錯誤", "Couldn't update app." => "無法更新應用程式", "Update to {appversion}" => "更新至 {appversion}", "Disable" => "停用", @@ -29,13 +29,13 @@ "undo" => "復原", "Unable to remove user" => "無法刪除用戶", "Groups" => "群組", -"Group Admin" => "群組 管理員", +"Group Admin" => "群組管理員", "Delete" => "刪除", "add group" => "新增群組", -"A valid username must be provided" => "一定要提供一個有效的用戶名", -"Error creating user" => "創建用戶時出現錯誤", +"A valid username must be provided" => "必須提供一個有效的用戶名", +"Error creating user" => "建立用戶時出現錯誤", "A valid password must be provided" => "一定要提供一個有效的密碼", -"__language_name__" => "__語言_名稱__", +"__language_name__" => "__language_name__", "Security Warning" => "安全性警告", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。", "Setup Warning" => "設定警告", @@ -45,9 +45,9 @@ "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。", "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" => "去連線", +"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 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。", -"Cron" => "定期執行", +"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 服務當中註冊,請每分鐘透過 HTTP 呼叫 ownCloud 根目錄當中的 cron.php 一次。", "Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系統的 cron 服務,每分鐘執行一次 owncloud 資料夾中的 cron.php 。", @@ -55,21 +55,21 @@ "Enable Share API" => "啟用分享 API", "Allow apps to use the Share API" => "允許 apps 使用分享 API", "Allow links" => "允許連結", -"Allow users to share items to the public with links" => "允許使用者透過公開的連結分享檔案", +"Allow users to share items to the public with links" => "允許使用者以結連公開分享檔案", "Allow resharing" => "允許轉貼分享", "Allow users to share items shared with them again" => "允許使用者分享其他使用者分享給他的檔案", "Allow users to share with anyone" => "允許使用者與任何人分享檔案", "Allow users to only share with users in their groups" => "僅允許使用者在群組內分享", "Security" => "安全性", "Enforce HTTPS" => "強制啟用 HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "強制指定用戶端使用加密的連線連接到 ownCloud", +"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" => "少", +"Less" => "更少", "Version" => "版本", -"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "由<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud 社區</a>開發,<a href=\"https://github.com/owncloud\" target=\"_blank\">源代碼</a>在<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>許可證下發布。", +"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "由 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud 社群</a>開發,<a href=\"https://github.com/owncloud\" target=\"_blank\">原始碼</a>在 <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> 許可證下發布。", "Add your App" => "添加你的 App", "More Apps" => "更多Apps", "Select an App" => "選擇一個應用程式", @@ -98,9 +98,11 @@ "Language" => "語言", "Help translate" => "幫助翻譯", "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\">這個網址</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 147ad834a9c5c8422d1e23148ff9aeb7386d4f07..ee5ebae708ffa022755a61f3d151dff67444640c 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> diff --git a/tests/lib/cache/apc.php b/tests/lib/cache/apc.php deleted file mode 100644 index bb5eb483dbf150bcb523c2907f64eed31cf09998..0000000000000000000000000000000000000000 --- 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/config.php b/tests/lib/config.php index 87ee2807c2daa5c9c2a83ceffa184cb946dbcd8c..1a1d062d6882626154f81c47c8540580425505fb 100644 --- a/tests/lib/config.php +++ b/tests/lib/config.php @@ -43,26 +43,15 @@ class Test_Config extends PHPUnit_Framework_TestCase { $this->config->setValue('foo', 'moo'); $this->assertAttributeEquals(array('foo' => 'moo'), 'cache', $this->config); $content = file_get_contents(self::CONFIG_FILE); - $this->assertEquals(<<<EOL -<?php -\$CONFIG = array ( - 'foo' => 'moo', -); -EOL - , $content); + $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); - $this->assertEquals(<<<EOL -<?php -\$CONFIG = array ( - 'foo' => 'moo', - 'bar' => 'red', -); -EOL - , $content); + $expected = "<?php\n\$CONFIG = array (\n 'foo' => 'moo',\n 'bar' => 'red',\n);\n"; + $this->assertEquals($expected, $content); } public function testDeleteKey() { @@ -70,13 +59,9 @@ EOL $this->config->deleteKey('foo'); $this->assertAttributeEquals(array(), 'cache', $this->config); $content = file_get_contents(self::CONFIG_FILE); - $this->assertEquals(<<<EOL -<?php -\$CONFIG = array ( -); -EOL - , $content); + $expected = "<?php\n\$CONFIG = array (\n);\n"; + $this->assertEquals($expected, $content); } public function testSavingDebugMode() { @@ -85,14 +70,9 @@ EOL $this->assertAttributeEquals(array(), 'cache', $this->config); $this->assertAttributeEquals(true, 'debugMode', $this->config); $content = file_get_contents(self::CONFIG_FILE); - $this->assertEquals(<<<EOL -<?php -define('DEBUG',true); -\$CONFIG = array ( -); -EOL - , $content); + $expected = "<?php\ndefine('DEBUG',true);\n\$CONFIG = array (\n);\n"; + $this->assertEquals($expected, $content); } /** @@ -100,6 +80,17 @@ EOL */ public function testWriteData() { $config = new OC\Config('/non-writable'); + // TODO never get's called, because the previous call throws the exception + // maybe include some more logic to create a readable dir and then try to + // write to this dir + // + // console commands: + // $ sudo touch /non-writableconfig.php + // $ sudo chmod go-rwx /non-writableconfig.php + // ---- call the tests now -> above statemant throws the exception + // + // $ sudo chmod go+r /non-writableconfig.php + // ---- call the tests now -> bellow statemant throws the exception $config->setValue('foo', 'bar'); } } diff --git a/tests/lib/db.php b/tests/lib/db.php index 69e3542f9263f4a29cdf2b309cdb014fb6089464..e817a2db5edc3dd9ca53ccdfb0d6654be639f244 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -37,7 +37,7 @@ 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); @@ -94,7 +94,7 @@ class Test_DB extends PHPUnit_Framework_TestCase { $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() { diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index 830913a91ad991161d4cebcce871b63504fadca9..3bac9e770aa1b73fa81bd0b162a3c83618bdc8ce 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 6acb0dfaa6b1cf1a2eb8b2e7f5e1079e7a089d58..67b5a3d43ecc509bd56822e0df00341ea05cb881 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/memcache/apc.php b/tests/lib/memcache/apc.php new file mode 100644 index 0000000000000000000000000000000000000000..6b2a49470ba21d7391ae6920c2f83e33ff27222a --- /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 0000000000000000000000000000000000000000..d07c492cef01d05814e7fd76d5cf3025ce2ec0cb --- /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 0000000000000000000000000000000000000000..4b38ae8ef3c54b3e92011ceb55b13b23efba0453 --- /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 0000000000000000000000000000000000000000..f59afda396664ec1c63e94a7c37816a80cd21ba1 --- /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/upgrade.php b/upgrade.php new file mode 100644 index 0000000000000000000000000000000000000000..518b514cd8a61de61b6a93059c9da6c60ca60726 --- /dev/null +++ b/upgrade.php @@ -0,0 +1,77 @@ +<?php + +/** +* ownCloud +* +* @author Arthur Schiwon +* @copyright 2013 Arthur Schiwon blizzz@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/>. +* +*/ + +$RUNTIME_NOAPPS = true; //no apps, yet + +require_once 'lib/base.php'; + +// Don't do anything if ownCloud has not been installed +if(!OC_Config::getValue('installed', false)) { + exit(0); +} + +$br = OC::$CLI ? PHP_EOL : '<br/>'; + +if(OC::checkUpgrade(false)) { + $updater = new \OC\Updater(); + + $updater->listen('\OC\Updater', 'maintenanceStart', function () use ($br) { + echo 'Turned on maintenance mode'.$br; + }); + $updater->listen('\OC\Updater', 'maintenanceEnd', function () use ($br) { + echo 'Turned off maintenance mode'.$br; + echo 'Update successful'.$br; + }); + $updater->listen('\OC\Updater', 'dbUpgrade', function () use ($br) { + echo 'Updated database'.$br; + }); + $updater->listen('\OC\Updater', 'filecacheStart', function () use ($br) { + echo 'Updating filecache, this may take really long...'.$br; + }); + $updater->listen('\OC\Updater', 'filecacheDone', function () use ($br) { + echo 'Updated filecache'.$br; + }); + $updater->listen('\OC\Updater', 'filecacheProgress', function ($out) + use ($br) { + echo '... ' . $out . '% done ...'.$br; + }); + + $updater->listen('\OC\Updater', 'failure', function ($message) use ($br) { + echo $message.$br; + OC_Config::setValue('maintenance', false); + }); + + $updater->upgrade(); +} else { + if(OC_Config::getValue('maintenance', false)) { + //Possible scenario: ownCloud core is updated but an app failed + echo 'ownCloud is in maintenance mode'.$br; + echo 'Maybe an upgrade is already in process. Please check the ' + . 'logfile (data/owncloud.log). If you want to re-run the ' + . 'upgrade procedure, remove the "maintenance mode" from ' + . 'config.php and call this script again.' + .$br; + } else { + echo 'ownCloud is already latest version'.$br; + } +}