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/ca.php b/apps/files/l10n/ca.php index 51d450b4f68ef5faa9a2dcb14b8bbd2a73e9b08c..8d5f69f33184da19368df9b830fa157c77882ce5 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -68,7 +68,6 @@ "You don’t have write permissions here." => "No teniu permisos d'escriptura aquí.", "Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!", "Download" => "Baixa", -"Size (MB)" => "Mida (MB)", "Unshare" => "Deixa de compartir", "Upload too large" => "La pujada és massa gran", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor", 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_BR.php b/apps/files/l10n/pt_BR.php index a1e06483b688164b9311400afcdc5f834de5f05a..3ad679f87646cc426cccfbf00ffad669ee138f12 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -68,7 +68,6 @@ "You don’t have write permissions here." => "Você não possui permissão de escrita aqui.", "Nothing in here. Upload something!" => "Nada aqui.Carrege alguma coisa!", "Download" => "Baixar", -"Size (MB)" => "Tamanho (MB)", "Unshare" => "Descompartilhar", "Upload too large" => "Upload muito grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor.", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 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 a515b8ac1bf55dd0b5c819789aff3bb51360d04a..469211ca7f457828b828637177eb9c35c53a05a8 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.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/zh_TW.php b/apps/files/l10n/zh_TW.php index 6801b311ae4d9aeba5678eb1a7bfd40e44d9aaa6..63d2bd923654cd33a8a538ce9bf3f88cb6fbdb06 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.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/templates/index.php b/apps/files/templates/index.php index 7d679bc4bf65434cc14be3369d9df7c7230d1c9d..fa4cda6f6b2ed1f49818336b27a314830b24bf0a 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/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/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 4bec973946795d5733d58315b33b7b006e93fd17..f093a687f82bd0d8cc3c5e87ebf5acb614d1355a 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -89,7 +89,7 @@ "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" => "對,我現在想要重設我的密碼。", 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 7a01f98a8fafa3ac88db9f65a425298053c6bfef..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 "" 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 e81fc22070b381f9717ce8101b17e9081613ac8a..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 98bf833ddf9394e607b57a0526e9566b8002b950..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 a61fcd7d7bd256c9e1cf77ccea890784e9c4ed7b..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "قيد الانتظار" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} موجود مسبقا" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "استبدال" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "اقترح إسم" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "إلغاء" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "استبدل {new_name} بـ {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "تراجع" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "جاري تنفيذ عملية الحذف" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "جاري رفع 1 ملف" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 9e5bf4bf1f7dea327b0f36f495dffdfc2a4998dd..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 7844194142fd104c38debcafc00fbe3e906dc97c..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 c47098d0555532d6dec73353fcc1c0290498c30a..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 a2590ff9fd8bd2b1e7d503ae7c7f8d83dbc82f6e..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بم 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 c1f5ac6922071dfb2b629c3b7c8cf97162957bbd..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9f37b094194ddb3d94f47d544c87b014b7cc2c56..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 d147d515c4ed57266ff00fbeae400f0412fec6e5..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 e8cbbef59cd5a75d86d8409bdadd4a7d9655f43c..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Чакащо" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "препокриване" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "отказ" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "възтановяване" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 0fcfc21da0787f80ea8e18264557e42f2d9e6db2..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 51c4cb6e9378112128a1ee588ac22fa5108fda26..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 951c4ffab70e36a0850b02a6371f900c806f4656..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 60da0a5e0f5f4a24a5465ecbfedd25c89aa34cd1..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Вашият web сървър все още не е удачно нас 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 0f93416deb2fc05a4c4f7a25672100c5c80b0093..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 5a17cd41ed3ed5a747aaea1dc6b32b9b145d25f5..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 fde42f5d9811c6118cdd976c06c99957d0830f13..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 59f0552ecdc70ce879f0d33e3d42738ef6f78f8d..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "মুলতুবি" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "প্রতিস্থাপন" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "নাম সুপারিশ করুন" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "বাতিল" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "১টি ফাইল আপলোড করা হচ্ছে" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 97a7a748c5deb639dee85cb7f178d316499c4b07..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 c468e5af86953054b1cf3f0c1f79030edbf15f60..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 6a511480a20af11c6ea711edfbf03db95f398952..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 2252505ef0d956d86a7f9aa08ae34ddffd78809d..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 e3b8ca053529866ebb9889e688852120aa8500e6..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 69ac8639e1b7cdb51cd92e8fc1989a49a23f35da..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 0b003304313822c2f8146bf0dfc1f4e787cc1155..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:24+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 7eec57eeb9c9a63715a44fd07f54b2d8b8ee92b8..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 5a20901c76ff026782848737f29f755ab00a916d..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 c7400ac9db4ea27eb71e91c2c0a2854454791a80..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 f302c091306762c63e716b66e10ed8f1962fe1f4..05da9e60e51e0cbbfe73369b229bb652756ab229 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" -"Last-Translator: rogerc\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -130,43 +130,43 @@ msgstr "Esborra" msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Pendent" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "substitueix" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugereix un nom" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "cancel·la" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "s'ha substituït {old_name} per {new_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "desfés" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "executa d'operació d'esborrar" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 "Mida (MB)" - #: 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 7711e8dc3d1fd962c0d953f3d2cc2edbf6fba8f1..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 3cf80bc3ee25dd0c4514f6adc03ba20408084f9f..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 1d89ecfbe990fcded1e0cd136124068b98c8509d..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 7d73b9585d72b5a8cd7eff85d133e81e5b9b7a0c..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "El servidor web no està configurat correctament per permetre la sincron 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 b57bef18bafefe1b839c6ca3c5f7a005ba8fb206..80a797da910f8c9d2b342d85ffd0dd6cd3a7f634 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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/user_ldap.po b/l10n/ca/user_ldap.po index c387cd2bbab5d1c12abfdf7d70dcca620d69181c..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 cb9c75038141df67ac5f84d2473e13b777a6222b..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 14baccb8d14eb4413976113bd90475002af44251..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Nevyřízené" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "nahradit" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "navrhnout název" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "zrušit" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "nahrazeno {new_name} s {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "zpět" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "provést smazání" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "odesílá se 1 soubor" -#: js/filelist.js:461 js/filelist.js:519 +#: 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_external.po b/l10n/cs_CZ/files_external.po index 0bd95c47fbfcacd8efbe1266b81aac6560819976..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 89f5e4a6437c857b1105d6e7cc0dd62f5f0ed559..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 c436ea9c1dd3a97630ce89159f7551b01ee2cabf..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 0934df91bc18403aa8b2c1848b9b06f4eb2e14db..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Váš webový server není správně nastaven pro umožnění synchroniz 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 e57309eadcfeb3a1ccf12c65d7105b302d0839f1..277e281c0018e2fd0b48c14315ffc1fc331f65ea 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\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" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 384c6dca28cff90fe274b8fe2a0350c25208dd45..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 c6b7517c5705096492117b1e1cb696a728f5a2fa..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 75dd7cf708475b9741ce916ffc4d4fab2ce3ca2a..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "I ddod" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} yn bodoli'n barod" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "amnewid" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "awgrymu enw" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "diddymu" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "newidiwyd {new_name} yn lle {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "dadwneud" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "cyflawni gweithred dileu" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 ffeil yn llwytho i fyny" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 b061e77f23c0a62e712eb8fb7dd881fadc71c4dc..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 74080cb9b9de9ac51466b61d53ff04bb66b76275..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 7f552d0aef02ab3ca403fa0992b8c450a67b27a5..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 f53493488d48d5fd5c83adc2a20a7f09d15006af..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau o 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 5fe9ee583da67abd0407b103c5dafeac3fb697f0..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 1b20cbda12fff7b8c05eaf707a79dcb29fbc4797..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 5f0816847c5669460383cc9f9c99cd4a999a886e..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 2280300c20b262d815af2b5a9eca5304837f7861..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Afventer" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "erstat" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "fortryd" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "udfør slet operation" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fil uploades" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 97927b1bf33dc1de8f44d4d498b609e45a2081b0..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 708ccea9744ba9ac88ef2f9751872ca49bc04e8e..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 6a5f9c277d1c40b7f93cd45bf25bd5603f626ab3..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 a6d93ebdb9edfe91c12c26fddf680785fc4815ee..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering for 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 0909e08611cae3fb4795e1bd3480e0f46ea6517a..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 5cf21dcf87cf5e39369358eca0eaa4b08746e5fc..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 aab8b54fa0ca83912ae67f7eb82f63a37325dcdc..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 74cf41dea8cae59a94f0292cf1a54abfd2b9a918..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "Namen vorschlagen" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} ersetzt durch {new_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 3f33a144a289bd21db11d53596e4b658bcb011fd..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 8f35904ecf98993c635eb10404497f15e0e5ae52..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 3fecf1fa38d3360bb63ee222b012c5515b03caa7..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 491541398cde4b1d0d3077c9d9bc667dec59dd24..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -191,55 +191,55 @@ msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil d 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 461eed065497bd3ffbea004abc3dcf1e0002a342..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 a188d16c5f50df5a3a902546297fb7d287401c5f..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 4e6d227320b02cc0b1d9efa02774e9ed9087a575..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 28d664e02dc655899e72aedfcf46a9056e50107a..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "Namen vorschlagen" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 a5c722729993069ae890d91c0da43effb5d60d77..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 aede741f5030ed7f8927427e03c37665bc7f7447..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 6defdd31ee40a2ab7581226c225e7837fdf2762f..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 c763a3d95ccf61349ecb151f5d5be0d1e36cfdfa..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfigurie 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 3d8e333baf9417fdb724db1ffe20bbf4d2c77789..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 e7ba773674e897d2aa81deaef63cd5e4de3538be..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 d284cd712a10e9a24adcd288e229af45005350b2..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 73ad879739ac3e2afb6d7ccf3596d7c1bd8c30b3..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Εκκρεμεί" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "αντικατέστησε" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "συνιστώμενο όνομα" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "ακύρωση" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "αντικαταστάθηκε το {new_name} με {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "εκτέλεση της διαδικασίας διαγραφής" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 20e70d6700ec1f2d4cd5c240fea62679b1104a97..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 634cc17e5438f2ee53cb0e8713eb98c49bb49d22..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 b4f223976b228f5a2c0a870fb371113333e9c499..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 6c96fbf186226ca52c2dc9982d16adc985180852..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κα 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 1c2cdcbe3a884c5852bb9c8c7d83e212c4d046be..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 973160630396bd15d4bc131ea6ccf2a958699250..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 657ded3ad4778d2a6fd9fe112a8785e9a4649393..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 01d61e1fbab8ed7977b9670e1cd8ef420155beda..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 beb69ea265d30fffb3b9d7efb1c4b292fa15c307..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 a3df6ef17aaf3f1978df2d33543339ef1b8a213a..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Traktotaj" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugesti nomon" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "malfari" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "plenumi forigan operacion" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 3b9be7fe2c1816d6891e636621e0cd43abce920e..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 1cbe546c2285d70009a6db219d31c1e37626f225..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 2d5339b6ac2c3985e8e233b25c31eabeaf7e3c28..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 c4a11f439ceefe103d4fd635df82883b944e19b3..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dos 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 9fa5a1571066d7a889e910adc3b632c491372c45..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 746ce516aade8080821ced8110ccc5575a37f91c..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 3f18cde6c5a95333e17958b612d920849daa5b7c..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 c1758c8957d59e5559def183ba4c82db20396539..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "deshacer" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "Realizar operación de borrado" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 61aef3a650db3865fdf1d5ed641cdf5d51320b5e..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 fdd0bb62ee2a3979eb8dce93cbd564918e39350e..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 121641634079902caade0f1bb4768028b16ce58c..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 b4872992c16111d73f0b1145ae45007b29501482..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Su servidor web aún no está configurado adecuadamente para permitir si 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 f9dee575499e861c0ae5252e8d5b21b845a1c003..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 7e2e43da7bbc4b85c07f0feef0a56b8bb2bb921e..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 b6099b5fc9ee13261c7c3da12c52e1ccb4fd7d1b..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 eb1317c895a85ffcd1585ae6ad7a1fa64ef3b017..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Pendientes" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:351 +#: 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:351 +#: js/filelist.js:350 msgid "undo" msgstr "deshacer" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" -msgstr "Eliminar" +msgstr "Llevar a cabo borrado" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 0c14fcd4d9870c2f31b01cd52a2da76e05e29b9f..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 c20a28c0f09670eb04247d5fe8712197e994d162..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 4bf320b149286797f75b6589db340dd96dee2fc3..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 23fa03fb4218b9a58f36a0b98853fbd9c2e09f80..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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,15 +169,15 @@ 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:28 msgid "Set an admin username." -msgstr "Configurar un nombre de administrador" +msgstr "Configurar un nombre de administrador." #: setup.php:31 msgid "Set an admin password." -msgstr "Configurar una palabra clave de administrador" +msgstr "Configurar una contraseña de administrador." #: setup.php:184 msgid "" @@ -190,55 +190,55 @@ msgstr "Tu servidor web no está configurado todavía para permitir sincronizaci 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 8bccf0fa4b2969c03d07f01c612e227e1312dfed..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 0149a7affb035e534749027c0f1f55575b7a2cf2..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 cd3bb0d8cb949dc23f246c7978a272df69cf85f0..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 b2e8c35d4182c92438abe5347b6e3a987efe9f11..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "asenda" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "soovita nime" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "loobu" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "tagasi" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "teosta kustutamine" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fail üleslaadimisel" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 0588c0691846e1f2c2fbd5151e86f46c24873861..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 185a61737e907a7151e4742967ee3c84e7e910af..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 01f1f71d77acdda80f4cdd17422b6762d28ca812..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 7751bd79084f726fd08c0ab2affa34652c300651..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -191,55 +191,55 @@ msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide s 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 fcd8b7814866bf8343666d4515b4532ac8c739b5..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 573356e6edb4570caa741dd7a7ca9654b4612546..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 f91c61b45b5115b57b8e4aef31c7f765aad8c25a..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 a0fb2b92a025d2b32c037ebdf88fa1ec7f808d6f..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Zain" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ordeztu" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "aholkatu izena" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "ezeztatu" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr " {new_name}-k {old_name} ordezkatu du" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "desegin" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "Ezabatu" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 342c6faea5446f1428416c84639cc3c51dab97fa..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 a14dae9124028007ca413b508174d2097c50cf37..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 e1846e562658ffcf2813fdf5141f2ced0027c80b..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 538827e6195faedb579649fb05ea314cfad6d345..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +190,55 @@ msgstr "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sin 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 b9ffd7c916563342178f2ee76b5047a1ec6a55cf..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 4bbaef94f608ed5dfa2697289e8c8afe73ec8c73..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 b471ca25a6b67b57f968ac3cf5f4556b4fcbc7d9..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 2ef8fbc44cba50f436260836c118d10507c75550..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "در انتظار" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{نام _جدید} در حال حاضر وجود دارد." -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "جایگزین" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "پیشنهاد نام" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "لغو" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد." -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "انجام عمل حذف" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 پرونده آپلود شد." -#: js/filelist.js:461 js/filelist.js:519 +#: 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 4a2a89eaa498884263224b235463c7a433ca6728..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 b28fd6a30dfcbaf0ac3e46aedf0928c79d308504..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 14bb3e307deea27b2b7a894ca1dcb7247c25075e..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 7c654f4af3aaae2ab971f7e805b20c579aa07f8f..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "احتمالاً وب سرور شما طوری تنظیم نشده اس 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 88d9b9729fe661d9f478dee3d74f396a50e23c65..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 b876c7e18b990ca5e49bd7baa821d0a61dbaeba5..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 23c656d76585c1c2d19404239f8f74ac3bb68a48..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 769eda72a0c6d121a6471af7d51488a5479348e3..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "korvaa" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "ehdota nimeä" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "peru" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "kumoa" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "suorita poistotoiminto" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 af197411d234452f0601764e996fb103f5f183d2..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 6cb58f71cf93099a9f0ee647a558b1c4f7e81595..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 54de6f374b94c7c58788f28d69ad5158928b9aa6..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 02d6f5351a988d7513dd2e556b15672292b565ab..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "" 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 02afc024f900beb69180f4cbf0c65a8602331928..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 0737b4bc06ff40f02ebae7d93434abbc88b45ebe..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 dee88b2508436d0330b50b5906c3a8139b07fb13..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 d7f65f32823530b0688a177dfec82c1317c13200..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "En attente" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "remplacer" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "Suggérer un nom" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "annuler" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a été remplacé par {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "annuler" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "effectuer l'opération de suppression" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fichier en cours d'envoi" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 65d20c78313754bde11ce857cd95dfd579c84e77..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 0ae12c3ded16f5e25522ce35b08737993f0b1232..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 cc9085180af92ff65a8fc3790c5f28fdb585a97c..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 49018beafe2f9fc44e20981f3784609022e8e8d7..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la s 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 70e31b44bd0807e4fbe8c824aa8bbe7c692444cb..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 6960d656a0f599d2121c6cb1ba64d947c69dab8b..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 5b393d74d19459fcabc7949f08e03ca31e691d8a..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 6853906459125c18c25e20e61621d5f571a457f6..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "substituír" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "suxerir nome" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "substituír {new_name} por {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "desfacer" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "realizar a operación de eliminación" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "Enviándose 1 ficheiro" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 c64addd5c85d703299b3a6e06f4b48c3dc396075..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 09b6f9fc503bf49c5055f3ece20dfef9db151f12..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 23c20011a290183abf878d1aec0a231f024f9397..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 237adf5f3cff940cb001432087f3cd0d8be9c7bc..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "O seu servidor web non está aínda configurado adecuadamente para permi 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 cc5b76cef7c316e3d0d3ca4632a10121b5a640a4..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 724566131372131f6374e6a86ef0c73131ee9469..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 ef48a202761672d73b6267f6299839c1af1bcbe5..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 3b6df10aa63bfe22db577922833f07942cb42e9c..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "ממתין" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "החלפה" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "הצעת שם" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "ביטול" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} הוחלף ב־{old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "ביטול" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "ביצוע פעולת מחיקה" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 52562d075e7cd950afbb217107f3e92c1dafb03c..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 1ca2d4c54b01f26ea0d413112a332fc36f88bfba..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 09391b3ddef26c7203622296d105ae4325cfac26..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 5da87298fa86f96dcb0e8789a43f9c08cab6363d..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "שרת האינטרנט שלך אינו מוגדר לצורכי סנכר 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 f9cc9d49f02d6fa3b2861f1ea528e0999db189d8..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9a716be54df5a5ab035a8b8672f952e6ae76f028..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 5da80d7d608fa0e431d4ee924f5f491b2401e110..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 41ddb12355c51cc1e8faf97b8e9d9a0cee0a3d81..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 c09e3f73977dc1d1e9b736a386b2cd307f3ee17d..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 43405095dc9957bc041a36c22665bb6099cf6ab4..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 bdaa881db37cddcaebb1a4ba53cbdaf9660e17ce..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 0cba9904ba55643b8becd19c8597a3e520c4a222..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 f89b696a8d5fb7b75a6de8185827a7bff0f0eba9..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 3f8de3fa3adf6b2e67500cb1e7a4a83aad1e8877..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "U tijeku" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "predloži ime" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "odustani" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "vrati" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 5cfa64c1c8ce57e4923539f26d294d5bf8dfce01..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 dd9765afb8b044d6817c5d98696aabedbcc55c69..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 a37d8ef328cfc645f8118806483eac78875f6408..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 0247748899c54d003a3edd41d01863d5a6c24343..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 5ada653ae270cd45c506d4480d12a4569b5b02f2..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9d45f9968b9c554a05fc4e7fb698b156a235642e..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 060fe7f19de50fc22913dea04fe73a85312921b9..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 032b336c800e4e6b31a050f92a0fcab8688d1fe0..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Folyamatban" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "írjuk fölül" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "legyen más neve" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "mégse" -#: js/filelist.js:351 +#: 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:351 +#: js/filelist.js:350 msgid "undo" msgstr "visszavonás" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "a törlés végrehajtása" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 e32bc77c6fac190b89e45999521aff69cafb1f72..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 040296b40659ee690f7cb63aeb6fc6ea53692524..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 b5e998aa8cc1412d42ed41a2f0bb8f4b9ca3cbe1..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 6644f9be3123bca98d97e02d0215a5e3955b7ce1..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok 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 830c8080347c055be9e69631490e04b7dbbe9017..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 38b4934ae2486d14fcc496ca5f65f3f803a5cfaf..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 78f096a57c29d71b92a31225e56d5c6e718fc874..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 04526c1aaf45ef5d934d2400d7b8020239d8ca93..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-15 02:24+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 75a044682e721ab58bd8bd367cbbfeb9aa5c129d..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 26541c8326edf903570c29bf550b2bc01ee3bc00..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-15 02:24+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 9a7542a4e96e44234fbb201fadeaf38a4539bbb7..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 64286762b529c75caaf881b97e973fb30c131062..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 57c489bd82fe4801a7d9f2ecff4759049d3cbf50..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 4c419fe3ee738a01958d5e689a0b90f76581f6c6..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 86a6867bc808d1cbbafc0d2458dd6ba22f79b480..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 991ae73746dc1f9e572b3e9c682032615bfa1ed8..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 123e470a96346adcef51632e56959e327bec8b80..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 f4d5747b9eeca6afb1a7aff36d5f4e91bfe325bf..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 e174d2dbc79fd990f65522917e6a589e10a9bb7a..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 d1530c519352ebeffa1134b5eccae9e9a6a54545..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 f00a58c6fbdde1b3eefce5f0f8605d4203a6374f..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Menunggu" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} sudah ada" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ganti" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "sarankan nama" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "mengganti {new_name} dengan {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "urungkan" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "Lakukan operasi penghapusan" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 berkas diunggah" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 1f85c66277097c983e27d771cb2b739cbcbd05d3..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 ed2f983ab45368711840a20289eb48c6aa705193..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 dfa8b074a55a1bd5825e179fbd109079f98ec965..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 90b921a57a33004782a4e40fd00d5917068e14e1..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sin 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 ac325b2c7b1df4ebea57b857e7f56c2bca31323f..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 2130a127c3e49b6b954b1fec51d6bb9ad46ce763..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 70cd24829f2f00e5bff6154fd0a61a9f850baeec..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 4e9f2fab68f9348f27fbb3f6df1ef3719af3798e..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Bíður" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "yfirskrifa" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "stinga upp á nafni" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "hætta við" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "yfirskrifaði {new_name} með {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "afturkalla" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 skrá innsend" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 6634245eeef6863f56d667a95ee5ae751bfab59b..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 09e733b54475ae35c660cb52788d5cb277c664d2..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 f52eccdd15105ff5e622989e8f22d78ccebf3431..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 01eeede2ecc9668ac7f48db3d669f5c947e99c83..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 e03e16dfec0214b6074fa35f4a5f2db6299ada59..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 3066b044f052999bc2375651cdd3e6c58b0ba8ad..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9fcdd7d564a1882c48d3884528ea731108d343aa..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 610fa380bee594b45ead2404c07b39be765af814..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "In corso" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "suggerisci nome" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "annulla" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "annulla" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "esegui l'operazione di eliminazione" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 7bbcf1cd0ff2ef90b54f588db65620dadedf1f19..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 0b3a9710583dc388d225f4cda0a7f8c97aed1bda..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9a7fb771923f46d2760d6831050be42f50e93142..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 737dce7b4b8ba37e221a6374f0d7f76016ea1f4d..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Il tuo server web non è configurato correttamente per consentire la sin 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 ac27b24fb7c4c9f6cd156fa08449ac793f6c32ca..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 beffcc9b7add3f478c541715f3c62c2c9c7fc0e9..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 0b1f3ea0b7b7701a41d8c516223315b87cf019ae..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 cd7bb1d2583aa442d5a732f709104586d2e960b0..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "中断" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在しています" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "置き換え" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "推奨名称" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "キャンセル" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} を {new_name} に置換" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "削除を実行" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 df3947af79c4f924b24a8166facec3e989ff7227..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 f141a95f8b9b127621554e836f16a87a8a6e6b8b..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 4c15cd46ae1164e0a3e7c73eabba6a6d3f087927..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 552a26b81185ca1361b8599b1c189907a0509739..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "WebDAVインタフェースが動作していないと考えられるた 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 1e131eaa702cb744ff375267681f0c76c44c8186..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 b9b1a169b1724a98152b84551bb6e1211e16240d..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 8b71e233b3d02b930c47c1d624e4018e33f2c5bc..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 32885cbd737a47094cef0b7d8426f85005bb84d4..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 ca46ff0d925402e6bfe2a51f2c05b61bf7f1e6ec..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 d3efe720de8bc50a9a83e5e3d308f276e7419766..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "შეცვლა" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "სახელის შემოთავაზება" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "უარყოფა" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} შეცვლილია {old_name}–ით" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "მიმდინარეობს წაშლის ოპერაცია" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 dec9518fbfed0e2fc04f14aa14c8b69c11bdb86b..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 c456d55bdc6d3b4f0cda8c478632dc101623a4bd..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 8c1a4e2c128f1574a70d9ec4d5d1767bfc03244e..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 d48c26c11a10e744a2c6bc968ffc74fcaabbe413..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "თქვენი web სერვერი არ არის კო 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 5d1a3d4061edf5a0c2424ab9d9ded1dabab085aa..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 faf89cbefd920231295f0beb93a34a974728e785..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 a8ade2a35ab4e251dc792e5c818fd0e1c5e5db66..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 240743a726244f16c4b093ce4898c2bdcf845328..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "대기 중" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "바꾸기" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "이름 제안" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "취소" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{old_name}이(가) {new_name}(으)로 대체됨" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "되돌리기" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "삭제 작업중" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 c3cd16a9578f9dabd972d97ec2221aed68680a86..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 6682175242d81e2f53c7dee4a5502f903fa6f26b..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 0438f39decdb566873d67d4b5336089cc8fc3416..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 6c52cabd671992a22a9d7f78c14ddc4486d621bd..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서 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 2bdfd76e938b42d5f2426ccbfef03fac9191221d..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 2b1872ce5a5188e7c841808e9939c1fb21ca4e15..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 8893aff0169e832891f609d10b9bddef5b21cac8..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 276346a4e205f1134a93d2d95b34c2aef7c13577..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 b26a8184dd5f0c5fb7b263a13eac9b01e7990ace..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 072368fb82c45cabdc5b4c3d508ebbd3d84dfa45..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 4174dad54931d8e26f2dd2c1f2cab962029a5c5b..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 dc81a204e45b2d3d15023c9d189c3a7315802045..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 4df95acb1d6295effb70e020125aef40753ce3a5..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 40b48a44a2eb78b1dbba58eeac797d7d0a4c2c27..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 42f147b1c60319177de1e68179be1a5871fe4ce8..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 192e6a0e6c5cdb80c44525506715354ddeb5dc13..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 cb32e6aa5f70bb4a8c82fcdaeb375a901b2e4215..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 5fef4353fe40147ad8661fa39733ef8292007c20..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 2b28ee704221796cae491d5608e1a56599566219..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "" 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 192b91ba0bb59e32a20dc6d6c7f5452db6009b70..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 0f8102ebabeee2460d5635af58e8b4810598e1dd..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 0b06bba805732eb0cd6fead9845a16fbfacdef20..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 b021b74b7072f12ea3e6d69f3cb90654f4206908..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Laukiantis" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "pakeisti" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "pasiūlyti pavadinimą" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "ištrinti" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 bce7b9b52c208580009cd770a8dfb9008d2e6bf6..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 30e55fb41a61d288410f45f77929e5477a002f88..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 f66a8a0ce39f74b4a6d5d70e748c3e1c0e6d1114..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 11111dcc7f77bc40aaa51ce204cd7740f53f7412..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "" 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 7b85423bd97e4a5f4b025399d83c235840b6d994..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 57d42c468d2f49d2386634b9aed5ade1edc44890..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 fad8ca39fb82f7a054a63461815f15ae0104537d..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 85bf37da9ad3d59caabbc998ae583554553f7a91..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} jau eksistē" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "ieteiktais nosaukums" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "aizvietoja {new_name} ar {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "atsaukt" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "veikt dzēšanas darbību" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "Augšupielādē 1 datni" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 e82a461679b5a1f1ee6569b06d214d25f330fe84..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 826e012207602402e10088bfe388ceb85d65e234..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 63822c585450cd90c9ae52fbe2132197e1927a23..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 ba2b3139b7c99d8e467f042fd41eaed6ffa2e51c..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datn 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 07c7792f156b1ba265a5a596ddf6f1db1ab55234..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 dc4a7df6b793cd9fd670c29f39a5aea82bcd2c2d..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 1538e502fdbfd3bdab99731c1ab8d1fdd3aa523b..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 4f01df822664181c1f42e4bf05b59606279dd77d..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Чека" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "замени" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "предложи име" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "откажи" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "заменета {new_name} со {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "врати" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 523da5dd22fe02c99406e75fefb74633fcddee5f..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 ed98aff16c037e3d8576ba15f0d065bf97ba6358..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 de0653196a311b31de522eaf6df1f3c216ba8b7d..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 cfcea7371c05252c0313a13771b74b055b945db8..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 d34e84d39a2fc522ef24df5669be4d4d447eb47d..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 f0dace2af5ae619df0ace1ef0912ac90d6399379..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9615d06035975c31ea238f5c73d9ec7a0a76f916..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 e929bcc185e50177dc604e9ec1d0c28f998fad2b..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Dalam proses" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ganti" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "Batal" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 d1043430098d2b4271653f0b5b0ff99e4bf1cec7..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 a5f2b676ea90f46a897d28da47d38069620e22e8..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9ba6691ec17143557ba2c7173d77a7d07d83ded5..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 752176b6b4c2e31c3c5320f521851ad941288b47..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 a8b0954c4399dad0b7bcd5cab901f05e20ef0eb9..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 a494c386f7a060ee648b1addf8218d25016e8e30..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 7f3d05ae19b4501cd33507fed450e9de1de395a8..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:24+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 e23e9949dcdbeea1c0ba9e652340c1e88a3eab28..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 e71a33fcbc06d4882cd19edfad1608b63f9b1b4e..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 7271da3853f505415c03ab63a737aca6e95d8d3e..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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" @@ -189,55 +189,55 @@ msgstr "" 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 75e1d2d324b49b2a906f291f651631794859f775..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 cd443c4e26b050f2f21693851f504cfa88462ac8..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Ventende" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "erstatt" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "erstatt {new_name} med {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "angre" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 ad13ec7ed23aa7227d605e045acb6bf9e0c4435c..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 151cd1b5e0fa00b5086c9455b77722968b93161f..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 8ac5cc0bc5df4d261f55824efe02f4b208ad6d88..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 ac149328d9c45ab9619b831ad326d3e6c9c23eff..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV 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 4bd2dc39b3ce6c2850e2e8c5b2a6bb1aac4113cc..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 0c3fdb1ebb2d6695b95085c2f746ade45b0b4104..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 7352282bf368e08fa781c1573dcf3735aec1c2b8..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 8b170f50afee35b2c4d52c57c4ff419cd9168c6f..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "vervang" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "Stel een naam voor" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "uitvoeren verwijderactie" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 ba3676225e12ac7f999ea1af297b6cfc5593f4a8..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 4f993adf254e13c5e7a66933a1f42a217753c5d3..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 281c9ff9e57e7f60a080ea1b02483359de1c5c64..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 93d98cb31053867f3132535640b0460fdc702092..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omda 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 1e5c9f0e7b9f245ca1fb60a2d15bd83928b73709..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 26d4c128899bee157551a9f779732f355b4b4842..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 e94b904a95988e3c06c871b95359e60fa9e1ddd6..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 1dba71c23747f06106bc97e9ab6b6dd3e202fb1c..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Under vegs" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} finst allereie" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "byt ut" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "føreslå namn" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "bytte ut {new_name} med {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "angre" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fil lastar opp" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 27824f544c90698c4d4b04ef520ab18c7b1e0259..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 0c79189c66cfb5a5f769d11bbf9528eae7b105a7..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 4ed6f8ac88dc777a7bfb70d829957e54be5a5972..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 3ea1252cb61567889b16ba64484e6602b04c0e43..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering s 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 d37243cd2d34be276caa7719572349faf269cfaf..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9e17b44a97dc3d0f0c4eeb059cf947dbdab38024..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 d1a67634572a941fcc5ef14b4b13cb810d0ecc78..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 abada5005017794f6ed2dd4162e4a19912ccf8fc..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Al esperar" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "remplaça" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "nom prepausat" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "anulla" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "defar" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 e4794bb67dbdaa8554c692000cf4d44dab29d207..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 85c347a7be9f9a577ece48550db2eab907d1dd84..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9792a345a80e4f1621e5aa787fa16ac898f254f7..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 192782b61835cbfd09632b0b7a8288bde3504454..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 a832efe3d35d702db4acfbee03f0504ee4220548..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 bad4c6ac4f4ed83bdc5dbec97db2002ce397bcc8..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 d21e338c2815b3ad6447fb3a41757baa05f86243..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 e38832452215b7d79b5984a21c6513fefd81a0a3..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "zastąp" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "zasugeruj nazwę" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "zastąpiono {new_name} przez {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "cofnij" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "wykonaj operację usunięcia" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 plik wczytywany" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 5b62e8b973d9f650de6f95e43941dae69696a530..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 897622cbf76511a8be491e643a55f043c92186eb..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 30a78df05bc570e0e08f1acca149e2b7405237e9..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 82cf85ccef3c5387d060e2d8052f792b159e94c9..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożl 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 401d110a51b7e72973d45f8c3d037820b34223a3..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 3a5aecaec74718eb6e150191f1bbbf6071633af1..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 851b751237f4fb56315b2d19abc951ed00ad87bd..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 e4ee8420c7078482be9d192b2c35c8ee45125794..4dfc4e348628579b7aca5b676e42f0ddaf2eff8c 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" -"Last-Translator: Flávio Veras <flaviove@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: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -131,43 +131,43 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "substituir" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugerir nome" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "Substituído {old_name} por {new_name} " -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "desfazer" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "realizar operação de exclusão" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 "Tamanho (MB)" - #: 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 fe1ee79dce2a7d0c09dbf47e62b5728852a7b98f..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 3422c03176fadaba2918da098a08c14a58609336..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 7a55ae541c8583135788f3a0285d6df31dd3f9f7..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 ca8d184de0c5521e93febaf748dafee1be6781a2..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Seu servidor web não está configurado corretamente para permitir sincr 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 4487c3b7fe4d6dedf4f95ffadd023682b653ea7c..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 c8570e2a6c5c50294766c70deadcac8364da69b0..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 ab4a61676447d62a3b87981ffc3180e1b973fcde..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 699f88e106db5a0b7370e6dabc92f4ca8db7d1f6..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "substituir" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugira um nome" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "substituido {new_name} por {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "desfazer" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "Executar a tarefa de apagar" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 391f85fb8f306d5fe057069a84ec97dedcbbcc56..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9829fd295fabdbd7917f945ec5edc57ea62fe864..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 3304ccf5a79e024271fe1187b4375f740eb61bf4..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 07cdc42d55e5c0c653126419a654f3c51e0b1b4e..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "O seu servidor web não está configurado correctamente para autorizar s 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 70ff56b300721db1216c186309f28922727d7706..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 7f8dcde86b006965d9b04c523cc7ebc1e7bd99b8..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 e14e432dfb17d03d94b03b42390bc86fabe3eae2..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 0cc3d416faa17dc5667574cad9b1a63abcde1377..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "În așteptare" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} deja exista" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "înlocuire" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugerează nume" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "anulare" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} inlocuit cu {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "efectueaza operatiunea de stergere" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 7ee2a4352878889797fae91a2d072a9085a33353..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 acfd04d5105f67b15b764c0c7166563d878ef06f..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 49decc1d2de7336d7baf95fa50ce44ef9da9843d..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 a62e744fc397aad792cdb257bf2c557d1280522d..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "Serverul de web nu este încă setat corespunzător pentru a permite sin 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 f1404b57c717b30b64cee1c412ef35e2539e2296..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9c46adecb95382d8eeb2a3d1bcf9f1c1208734cc..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 2f0ef020294fba75c09174ff36aec837469afd40..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 0962d656277b946fa755fb8f87d062ccc77f01f8..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Ожидание" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "заменить" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "предложить название" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "отмена" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "заменено {new_name} на {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "отмена" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "выполнить операцию удаления" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 7876985280f6b67eeb41abe07c76a38b3ac207dc..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 b33a063e57ed099f702f8d1e93468eed7d6f2a8b..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 b19b239b908ff0ad58a66d93da3ddbfac7ed1b3d..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 491d0013c84b54470ccb52e0c80ce224bf2e0672..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Ваш веб сервер до сих пор не настроен пр 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 398034211dbb04beede549f5ea4905f28510f380..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 78a6b5a775565e31c60d1b649c2817e2c91c8e53..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 241364d696cdc3a54d7f1531f5d8ae6ff17232e3..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 d675c9a020879d9700ace33cb9e56a382cb2f776..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ප්රතිස්ථාපනය කරන්න" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "නමක් යෝජනා කරන්න" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "අත් හරින්න" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "නිෂ්ප්රභ කරන්න" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 c9587e7c2ee5f12564bf0834e6ea6ac5fb5308cf..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 dd1c9253926dd2259cc3003101083120ffb4c30c..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 be3dbf051deb09202e136944fac50592db034616..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 3b0a235ff4eb89a165fdc4036ddf86328a89c362..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 00d90845d3e9ac00cad18e8de69b9b806ade1568..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 02b48bf1e14ab460a64e2c412600b233245efcca..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 5a38e3cde1fa0bf03e288cd44e77b988cbea6508..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 612c648884bf83c561da4946521715c390424eaf..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Prebieha" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "nahradiť" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "pomôcť s menom" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "zrušiť" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "prepísaný {new_name} súborom {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "vrátiť" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "vykonať zmazanie" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/filelist.js:461 js/filelist.js:519 +#: 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 b96779e7240b1eda78dd98765f4019ab9745bec7..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 dfac301505e7acdc7e1d2196d7304308586473dc..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 7caf00ae6421ff876b089efcc57ba20de7b37fbf..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 22e085b9c41b82768f0bc47378e4f844f19f672e..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Váš webový server nie je správne nastavený na synchronizáciu, pret 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 d5ceb46ed68a684bd3a09653b8162b99793c4c5e..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 b38b7f9b26c6717e30fef190995590e7fd67dd63..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 bde8c0efc4cc5ba19ece9ca29f888e1411e063a6..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 7f12f5658abd8665a408af555afbe468f5a91f55..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "V čakanju ..." -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "zamenjaj" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "predlagaj ime" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "prekliči" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "preimenovano ime {new_name} z imenom {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "izvedi opravilo brisanja" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 56165c45f3da8eb10508cb4abbd6b15856abaa71..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 409099790539d02be36a2c1e5165cb675bf94b68..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 2a2d9fd9c158d9890b49d80b4dd4544acd50df20..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 d24133b97f22b24a057cd1c2e5e8fde287ca2a2d..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja 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 08bb696a2a825ecd614c04c85f5f252dfb9548ac..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 af4a82838a5f90af4fad6422bda38cb85b628a09..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 df2352ab791c65279aee8136fcf555bac1799c54..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 b600099bf2bdd493b1b017b4b245f8bbd3874892..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Pezulluar" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} ekziston" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "zëvëndëso" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "sugjero një emër" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "anulo" -#: js/filelist.js:351 +#: 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:351 +#: js/filelist.js:350 msgid "undo" msgstr "anulo" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "ekzekuto operacionin e eliminimit" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "Po ngarkohet 1 skedar" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 0f18541d064c9e04cc7ef04cf8d2bbf5993f360e..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9a7354f0186333472f723c4e2ecad7d9eebdddc5..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9fa2254ba86833bdc2b677d8dde6a3fe6cab8c41..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 fc4b4c4ee7a4ff803190c2b44a593b27e27dc1ab..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkro 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 fc80cdb25ab2e9336999d7725f996946cde4e49e..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 e770beff7ddac685ed98f5482ae46973c873036f..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 2e0099bec54ab68a40cf5c9b2e6b8a06ebb9c7dc..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 d45e96c3d8f59dedf20673642276c122e278bc7b..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "На чекању" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "замени" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "предложи назив" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "откажи" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "замењено {new_name} са {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "опозови" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "обриши" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 b9d65615bb7178c2e9e862fc2e9416c0e2c8f485..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 975884c360d9c74fa72cf2f02646ac23bbf376ef..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 d64224cc6bd6b11c1f60bd5d3d5287167bc7ce14..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 e1581cf67995483d6e98a381ca9dee6a3e2a9e45..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "Ваш веб сервер тренутно не подржава син 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 dff75bc0bb6be70bc074e904048ff1c2006101d0..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 ed1a4788706886f532283c8d88925e25e98c2f82..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 7b59e3fe8cc65e78cfd91249b68018638fa409de..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 c37ee9257338cdb70fabbdec8db8ab761e4be101..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 7ac341e6a339c816c7f1a5654cd907a0112e0ac2..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 ff0f95b5ad98250258e4fc718a603c42dd396fa9..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 bd30195cdbf4800029ca3aa5d8f514b100130921..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 dd4a250c7b58aa032a0ea4c1c1881e0288b43139..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 7f2ed32e2eba02b35521f2cdb40cf2c7edb92e0b..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 0160bfadfa15b6de3c162801872c78a6290daabb..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 22905c13e489b076e858a15bab94ecaf4e9ceb65..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Väntar" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ersätt" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "föreslå namn" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "ångra" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "utför raderingen" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 3d023396257046661e187a6872916e88f17423ca..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 451764e4ceb8f55479e83bf0c7a54541edac08cd..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 e64f396bc06510dcc4167578be3d606b8c32c6ce..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 4e44caa616e6693dc5624ccb9dbf167854b41b94..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkro 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 d394264d0ebff7f3ef63ef438c79ffe19f41b57c..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 565c1dbfd028bc657a2a817cba4b91a2004f2e34..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 e61e79bdb634c4c49dc1a3e98c695d8c4987aafd..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 cd1ff4e11453d35319089a37b2a5faee1a61eff5..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "மாற்றிடுக" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "பெயரை பரிந்துரைக்க" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "இரத்து செய்க" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 a60d8a642fafba7963eb68b2c3603b338bef87ae..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 430ee0ffb2ebce213dea7db9ff160fdb3188a39c..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 6f0f999df14ef0700a928dcddf221d960115ba82..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 1cd7fe01a7e13e883b760094356db273f7587645..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 adb32964fb36e2388466b5030f480822424eebf1..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 b872eca681caa60ef127f10776303aa7af2c3a7a..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 2a60430f2fba5d67aea80a4ec216eb1c23d074c2..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 9f18053d6f560cc0a815eed0929fe24e40b6d8c5..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "రద్దుచేయి" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 16188ad42e5dbd3579f925e6e76517b32379da36..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 305d92124414386d7d59850fd5344677925059a0..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 2a549aa34ed922a0b00598d8179ed4fba1bcae7e..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 fca68ec405cd0e3de744a96e62f6d9dbfc1204ce..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 7849b02383f1c6f36b8ef498f0ea08ab1fd633fa..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 c4f2550a16ae1471c2dcffe38450ebf7be502bed..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-15 02:25+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 ad77f50160a09ef97346e59cd161e47f61182b9e..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-15 02:24+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 7cceecbf0fd79261089fc974d8f5a1431bc6b469..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-15 02:24+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 a9ea19cdddb5c9dba156242fbfd942c2230a1587..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-15 02:24+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 a921d1a8ed1dd1da284e22b660158177f1e1b941..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-15 02:24+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 6ad9827d19f0467c5acc0c91724b9738b842c7ac..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-15 02:24+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 8665bc3adf6c32ec37f651debd17c398143b78f8..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-15 02:24+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 b1f13d414534434a0d0f4b1564109c9e309de623..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-15 02:25+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" @@ -189,55 +189,55 @@ msgstr "" 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 f8506866fd37d96d61b9b95f4c2574df65e9704f..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-15 02:25+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 206db8400e4dbca453ddbe2253f71fd5626abb9b..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-15 02:25+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 af49ea18b832cd1e2a272d655bf780067a69aadd..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-15 02:25+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 111f06216631cf0b602b95665efc2fbebe180dac..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 b8125d1f63795bfb47416ef44bed31fd6c4e8e11..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "แนะนำชื่อ" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "ดำเนินการตามคำสั่งลบ" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 cf0eefa56324232f8eca5a83430c270f72f7866a..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 94f41c9ed69272f6cb86fdecbef6036ed8bfb5bb..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9a40ef8a30cbb39f8601f4284dbc2144173b47e8..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 506a51f60ace1f0017b1d1868c95e6fe5972c20c..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 a6df1feb4fac7d87d2b1f33768a291460b5f2fa0..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 c5979e4761a9ebf8ae6ce0c563a8336a7da04e73..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 5c076caf65c8909570b00cd4338b00d09cdd1642..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 8833925006d253419a921e9fd84083d4dae3266f..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "değiştir" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "Öneri ad" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "iptal" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ismi {old_name} ile değiştirildi" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "geri al" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "Silme işlemini gerçekleştir" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 0ed35574e685104822a8e0dff12ef11dd9a0d924..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 e827128270034af29bd9cbe650da5c9b7d553ad4..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 214cd80004125f292888ccf5917540559d2a025e..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 a7332a0207c07763859dea3f35469956448f2200..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırı 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 f9319558c153a078b55d5d928f2383942aecedcf..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 4e70f9a172248abfd56136279da9d2fceacb2218..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 368c0bd38cef0532422a362ba5a39f2de8a7970d..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 b5f4f16463dcd265bf5d89c98e6ad39a8095e7e4..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} مەۋجۇت" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "ئالماشتۇر" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "تەۋسىيە ئات" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "ۋاز كەچ" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "يېنىۋال" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 ھۆججەت يۈكلىنىۋاتىدۇ" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 281b9af76c4ef7c3bf9080a65eabeb4c4de4ec4c..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 72ef7aa68e2dbfb51c2992e46538b737f6487152..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 abaad6da6babd0a5280970063c7dd5fd94429018..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 195d29ebfe8f93c5c142cf1c25105bf80a4a655c..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 da7d24ed20ad66c7bac6989e7a0052469097cba0..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 a47ab578136652648e534a06a31341909b5d5a8e..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 d71b5c193e9f2fc38d624a568c17a11f33dbf975..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 43a6e93ee4ff29c36a4e827227b206976bbd52a9..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Очікування" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "заміна" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "запропонуйте назву" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "відміна" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "замінено {new_name} на {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "відмінити" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "виконати операцію видалення" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 b0896b102af113c23c9f60b46e3b2705e55a52a1..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 20d7cdf05ff68fc982e5a539a05d13b9eb734c51..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 c51cf52d658b77559c8bfa0511397a0868172f81..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 fe2c54f7d8563c51105b365d6e6b301e573a34dc..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "Ваш Web-сервер ще не налаштований належн 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 762a1fc9853999a58dd02695cb6a90493f14c728..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9e9850740052eda8e5f629f2367c586aa6f59ea4..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 34d13d1aca69ac6c2e0aa60a8f4ce034d50e616a..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 9bca9c312672439e328624d69b32582fe9b11530..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 2b69f937b43caa26e211fca0f59deb5cef459df9..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 e6bf367183c334c607801ce3f2144bbff9ce29f4..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 9b0e912067c261104bae8ea900e11c9e49692d94..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 9024d9ebc4eedba93ec92be7c8e74be1d882ecaa..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 0bf8a7dc14bd5ea9c65c287256fe8ad31ee3f906..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 eb4a3e5bcfaebd691634b537549d564641cd0b72..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Đang chờ" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "thay thế" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "tên gợi ý" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "hủy" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "đã thay thế {new_name} bằng {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "lùi lại" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "thực hiện việc xóa" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 035432deaed6d217524a6472a1722ae11b689bab..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 533c49aa46be374799e59e7ff7f1f9c501ad8be2..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 7a31471c31ee8ef465ffdf98ea80b03b924aed76..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 8a6484d59270aa1a4bab6e4c0ed1e3693eab67de..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 c523cd0b9bcf0171addd6c307078e4d90f2b7752..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 07e15714eb8b71d4668bd1f7101b9b7a3fba7951..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 51d82094493959e80853fe585fa7860601a9c03f..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 2e30b9e9adf736269a1bd4ed37dfdce4e867aa64..eaefb2344f49215a3b2329937c8f78c38b53b5dd 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" -"Last-Translator: hlx98007 <hlx98007@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: 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" @@ -129,43 +129,43 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "等待中" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "替换" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "推荐名称" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "取消" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "已用 {old_name} 替换 {new_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "撤销" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "执行删除" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:460 js/filelist.js:518 msgid "files uploading" msgstr "个文件正在上传" @@ -205,7 +205,7 @@ msgstr "不正确文件夹名。Shared是保留名,不能使用。" 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 "大小 (MB)" - #: 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/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 309abfab5680d6d5dde794588e1a17364c806df4..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 20f1559728dd84fb9e016a5088cd8546aa5e8ac0..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 48ff2d15443a011963a3e69288904eb58c9af734..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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/lib.po b/l10n/zh_CN.GB2312/lib.po index 74b66273592cd6bfee9740d3c1aa3cdbd54033ef..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "因WebDAV接口故障,您的网络服务器好像并未允许文件同 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 d2d81b8cd361e5ae4fa1b3c05dcaa7ac46abcc0e..93776a95056e7b56717d023f7177a29138ea83ff 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\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" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 90e7e3a439a54c4d36f8bd6cf0086726fddadec6..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 7cf105e73acc168b8ebd699e19980d8f52037ed3..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 b24140fdde0513b112e0bd6dcfa66fd7e0fcda86..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "等待" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "替换" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "建议名称" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "取消" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "已将 {old_name}替换成 {new_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "撤销" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "进行删除操作" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1个文件上传中" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 18c19624e9a97e5b520e77baf1a42684271cde9a..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 379972fb0bd2f453e2b9ebb14f1c6c80a4ea5864..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 cc6fa911f06c023804ebffd02d69e25dcfce239d..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 febe52a6b33bcb34de6ebfac336acae05643c0d3..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV 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 e96e4ca49984fa8b1c8880649dec4f76697eb14c..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 ad676005c627bca0f7d14394a5ba1d3d8f6caeb3..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 5d49b7ebad5e16772fd689107c4ebc9720f2a73c..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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 0074c64e88986ffda3b10e548633dbb91c987500..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "" -#: js/filelist.js:461 js/filelist.js:519 +#: 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 883d6ad8bd725117d719b39b7eed01d113c554f1..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 0f9f15d05cee563ae45927ce7e8f8e7070fee0fc..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 40e6ce74adf8b1e4687ab312b9674d9e5fab225e..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 a231b950195653e6d0d9f3cff15b5ac19ed4687a..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -189,55 +189,55 @@ msgstr "" 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 dbd77f5710b995e8da78a55b4b3d9f03e469b1ea..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 f8dd3bf30aae11e4d81a7d9a48a34e2a73518c21..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 aaaedfad51ebc250055c2809ac445f230c82d884..faf1c7c96238a65a37d0cf3954f494e0e975af1d 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+0000\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" @@ -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 "幾年前" @@ -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 diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index b5b7cfd25058a2bc346bda6c77f7a2ca0a0ddadc..cd2de3f3455f47ce1d340546a098f63080d6368d 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" -"Last-Translator: pellaeon <nfsmwlin@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: 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" @@ -129,43 +129,43 @@ msgstr "刪除" msgid "Rename" msgstr "重新命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "等候中" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "取代" -#: js/filelist.js:304 +#: js/filelist.js:303 msgid "suggest name" msgstr "建議檔名" -#: js/filelist.js:304 js/filelist.js:306 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "取消" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "使用 {new_name} 取代 {old_name}" -#: js/filelist.js:351 +#: js/filelist.js:350 msgid "undo" msgstr "復原" -#: js/filelist.js:376 +#: js/filelist.js:375 msgid "perform delete operation" msgstr "進行刪除動作" -#: js/filelist.js:458 +#: js/filelist.js:457 msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/filelist.js:461 js/filelist.js:519 +#: 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,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 "大小 (MB)" - #: 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/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 24c58078bfbb1551888ac9f919fb83a5a4608874..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 0ebb7992ec7ccbc9f3935bfe6d39d6e6f63c5908..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 a3fc309021ec7dc8b336c9e49087740329df3bb6..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-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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 46256bfa863949ae3b5c570f9da58be80bfed99b..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+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" @@ -190,55 +190,55 @@ msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為 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 65f392229c39d393954438d5b9cfcc646751c151..960ca8cabfdbaf69e2ce3dfa6ecca9a30abc2d7f 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+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" @@ -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" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 51881a38249ef637d2f8a5f66ba0878e5d706d51..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-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+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 14754a00161c1521d49008af637fedd47314a5cc..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 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/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_TW.php b/settings/l10n/zh_TW.php index 74040fcfa2ddabbbce448f7e40b73c88f18d03f4..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" => "選擇一個應用程式", 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; + } +}