From 44133a07d63ed3bcfd95585caad3f0be7421a277 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 9 Oct 2012 21:07:31 +0200 Subject: [PATCH 001/108] Add doctrine-common and doctrine-dbal --- .gitmodules | 6 ++++++ 3rdparty/doctrine-common | 1 + 3rdparty/doctrine-dbal | 1 + lib/base.php | 6 ++++++ 4 files changed, 14 insertions(+) create mode 100644 .gitmodules create mode 160000 3rdparty/doctrine-common create mode 160000 3rdparty/doctrine-dbal diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000000..ffcaaf952b --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "3rdparty/doctrine-common"] + path = 3rdparty/doctrine-common + url = git://github.com/doctrine/common.git +[submodule "3rdparty/doctrine-dbal"] + path = 3rdparty/doctrine-dbal + url = git://github.com/doctrine/dbal.git diff --git a/3rdparty/doctrine-common b/3rdparty/doctrine-common new file mode 160000 index 0000000000..d1c7d4334e --- /dev/null +++ b/3rdparty/doctrine-common @@ -0,0 +1 @@ +Subproject commit d1c7d4334e38cad603a5c863d4c7b91bb04ec6b2 diff --git a/3rdparty/doctrine-dbal b/3rdparty/doctrine-dbal new file mode 160000 index 0000000000..30dc433ea0 --- /dev/null +++ b/3rdparty/doctrine-dbal @@ -0,0 +1 @@ +Subproject commit 30dc433ea08f4863479700492bdb70c3b06440bd diff --git a/lib/base.php b/lib/base.php index 51f8f4efc5..ad485342d2 100644 --- a/lib/base.php +++ b/lib/base.php @@ -93,6 +93,12 @@ class OC{ elseif(strpos($className, 'Sabre_')===0) { $path = str_replace('_', '/', $className) . '.php'; } + elseif(strpos($className, 'Doctrine\\Common')===0) { + $path = 'doctrine-common/lib/'.str_replace('\\', '/', $className) . '.php'; + } + elseif(strpos($className, 'Doctrine\\DBAL')===0) { + $path = 'doctrine-dbal/lib/'.str_replace('\\', '/', $className) . '.php'; + } elseif(strpos($className, 'Test_')===0) { $path = 'tests/lib/'.strtolower(str_replace('_', '/', substr($className, 5)) . '.php'); }else{ From 24b10be7625fab71ddf54f5cab59d445dac611fc Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 9 Oct 2012 22:08:29 +0200 Subject: [PATCH 002/108] Basic support for Doctrine\DBAL --- lib/db.php | 172 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 172 insertions(+) diff --git a/lib/db.php b/lib/db.php index 6c9eec5637..0d1a70c724 100644 --- a/lib/db.php +++ b/lib/db.php @@ -27,6 +27,7 @@ class OC_DB { const BACKEND_PDO=0; const BACKEND_MDB2=1; + const BACKEND_DOCTRINE=2; /** * @var MDB2_Driver_Common @@ -37,6 +38,10 @@ class OC_DB { * @var MDB2_Driver_Common */ static private $MDB2=null; + /** + * @var Doctrine + */ + static private $DOCTRINE=null; /** * @var PDO */ @@ -54,6 +59,7 @@ class OC_DB { * @return int BACKEND_MDB2 or BACKEND_PDO */ private static function getDBBackend() { + return self::BACKEND_DOCTRINE; //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" ); @@ -83,6 +89,11 @@ class OC_DB { if(is_null($backend)) { $backend=self::getDBBackend(); } + if($backend==self::BACKEND_DOCTRINE) { + $success = self::connectDoctrine(); + self::$connection=self::$DOCTRINE; + self::$backend=self::BACKEND_DOCTRINE; + } else if($backend==self::BACKEND_PDO) { $success = self::connectPDO(); self::$connection=self::$PDO; @@ -95,6 +106,93 @@ class OC_DB { return $success; } + /** + * connect to the database using doctrine + * + * @return bool + */ + public static function connectDoctrine() { + if(self::$connection) { + if(self::$backend!=self::BACKEND_DOCTRINE) { + self::disconnect(); + }else{ + return true; + } + } + // 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" ); + if(strpos($host, ':')) { + list($host, $port)=explode(':', $host,2); + }else{ + $port=false; + } + + // do nothing if the connection already has been established + if(!self::$DOCTRINE) { + $config = new \Doctrine\DBAL\Configuration(); + switch($type) { + case 'sqlite': + if (!self::connectPDO()) { + return false; + } + $connectionParams = array( + 'driver' => 'pdo', + 'pdo' => self::$PDO, + ); + break; + case 'sqlite3': + $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ); + $connectionParams = array( + 'user' => $user, + 'password' => $pass, + 'path' => $datadir.'/'.$name.'.db', + 'driver' => 'pdo_sqlite', + ); + break; + case 'mysql': + $connectionParams = array( + 'user' => $user, + 'password' => $pass, + 'host' => $host, + 'port' => $port, + 'dbname' => $name, + 'charset' => 'UTF8', + 'driver' => 'pdo_mysql', + ); + break; + case 'pgsql': + $connectionParams = array( + 'user' => $user, + 'password' => $pass, + 'host' => $host, + 'port' => $port, + 'dbname' => $name, + 'driver' => 'pdo_mysql', + ); + break; + case 'oci': + $connectionParams = array( + 'user' => $user, + 'password' => $pass, + 'host' => $host, + 'port' => $port, + 'dbname' => $name, + 'charset' => 'AL32UTF8', + 'driver' => 'oci8', + ); + break; + default: + return false; + } + self::$DOCTRINE = \Doctrine\DBAL\DriverManager::getConnection($connectionParams, $config); + } + return true; + } + /** * connect to the database using pdo * @@ -317,6 +415,18 @@ class OC_DB { self::connect(); // return the result + if (self::$backend == self::BACKEND_DOCTRINE) { + try{ + $result=self::$connection->prepare($query); + }catch(PDOException $e) { + $entry = 'DB Error: "'.$e->getMessage().'"
'; + $entry .= 'Offending command was: '.htmlentities($query).'
'; + OC_Log::write('core', $entry,OC_Log::FATAL); + error_log('DB error: '.$entry); + die( $entry ); + } + $result=new DoctrineStatementWrapper($result); + } else if(self::$backend==self::BACKEND_MDB2) { $result = self::$connection->prepare( $query ); @@ -376,6 +486,7 @@ class OC_DB { self::$connection->disconnect(); } self::$connection=false; + self::$DOCTRINE=false; self::$MDB2=false; self::$PDO=false; } @@ -713,6 +824,67 @@ class OC_DB { } } +/** + * small wrapper around \Doctrine\DBAL\Driver\Statement to make it behave, more like an MDB2 Statement + */ +class DoctrineStatementWrapper { + /** + * @var \Doctrine\DBAL\Driver\Statement + */ + private $statement=null; + private $lastArguments=array(); + + public function __construct($statement) { + $this->statement=$statement; + } + + /** + * 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() { + return $this->statement->rowCount(); + } + + /** + * make execute return the result instead of a bool + */ + public function execute($input=array()) { + $this->lastArguments=$input; + if(count($input)>0) { + $result=$this->statement->execute($input); + }else{ + $result=$this->statement->execute(); + } + if($result) { + return $this; + }else{ + return false; + } + } + + /** + * 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 + */ + public function fetchOne($colnum = 0) { + return $this->statement->fetchColumn($colnum); + } +} /** * small wrapper around PDOStatement to make it behave ,more like an MDB2 Statement */ From 5686183e4345d798ded448b016a2f73ad5f37984 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Wed, 10 Oct 2012 20:49:47 +0200 Subject: [PATCH 003/108] Use Doctrine for schema changes --- lib/db.php | 172 +++++----------------------- lib/db/mdb2schemareader.php | 220 ++++++++++++++++++++++++++++++++++++ lib/db/schema.php | 128 +++++++++++++++++++++ 3 files changed, 375 insertions(+), 145 deletions(-) create mode 100644 lib/db/mdb2schemareader.php create mode 100644 lib/db/schema.php diff --git a/lib/db.php b/lib/db.php index 0d1a70c724..d43ca77ff5 100644 --- a/lib/db.php +++ b/lib/db.php @@ -20,6 +20,7 @@ * */ +define('MDB2_SCHEMA_DUMP_STRUCTURE', '1'); /** * This class manages the access to the database. It basically is a wrapper for * MDB2 with some adaptions. @@ -503,18 +504,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::$connection, $file); } /** @@ -525,19 +516,8 @@ 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" ); - - 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 ); + self::connectDoctrine(); + return OC_DB_Schema::createDbFromStructure(self::$connection, $file); /* 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 0000-01-01 00:00:00 everywhere * [1] http://bugs.mysql.com/bug.php?id=27645 @@ -549,34 +529,6 @@ class OC_DB { if( $CONFIG_DBTYPE == 'pgsql' ) { //mysql support it too but sqlite doesn't $content = str_replace( '0000-00-00 00:00:00', 'CURRENT_TIMESTAMP', $content ); } - - file_put_contents( $file2, $content ); - - // Try to create tables - $definition = self::$schema->parseDatabaseDefinitionFile( $file2 ); - - //clean up memory - unlink( $file2 ); - - // Die in case something went wrong - if( $definition instanceof MDB2_Schema_Error ) { - die( $definition->getMessage().': '.$definition->getUserInfo()); - } - 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 ); - } - - $ret=self::$schema->createDatabase( $definition ); - - // Die in case something went wrong - if( $ret instanceof MDB2_Error ) { - echo (self::$MDB2->getDebugOutput()); - die ($ret->getMessage() . ': ' . $ret->getUserInfo()); - } - - return true; } /** @@ -585,26 +537,14 @@ class OC_DB { * @return bool */ public static function updateDbFromStructure($file) { - $CONFIG_DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); - $CONFIG_DBTYPE = OC_Config::getValue( "dbtype", "sqlite" ); - - self::connectScheme(); - - // read file - $content = file_get_contents( $file ); - - $previousSchema = self::$schema->getDefinitionFromDatabase(); - if (PEAR::isError($previousSchema)) { - $error = $previousSchema->getMessage(); - $detail = $previousSchema->getDebugInfo(); - OC_Log::write('core', 'Failed to get existing database structure for upgrading ('.$error.', '.$detail.')', OC_Log::FATAL); + self::connectDoctrine(); + try { + $result = OC_DB_Schema::updateDbFromStructure(self::$connection, $file); + } catch (Exception $e) { + OC_Log::write('core', 'Failed to update database structure ('.$e.')', OC_Log::FATAL); return false; } - - // 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 ); + return $result; /* 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 0000-01-01 00:00:00 everywhere * [1] http://bugs.mysql.com/bug.php?id=27645 @@ -616,40 +556,6 @@ class OC_DB { if( $CONFIG_DBTYPE == 'pgsql' ) { //mysql support it too but sqlite doesn't $content = str_replace( '0000-00-00 00:00:00', 'CURRENT_TIMESTAMP', $content ); } - file_put_contents( $file2, $content ); - $op = self::$schema->updateDatabase($file2, $previousSchema, array(), false); - - //clean up memory - unlink( $file2 ); - - if (PEAR::isError($op)) { - $error = $op->getMessage(); - $detail = $op->getDebugInfo(); - OC_Log::write('core', 'Failed to update database structure ('.$error.', '.$detail.')', OC_Log::FATAL); - return false; - } - 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); - } - - return true; } /** @@ -696,9 +602,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::$connection, $tableName); } /** @@ -706,28 +611,8 @@ 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::$connection, $file); } /** @@ -735,21 +620,8 @@ class OC_DB { * @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::$connection, $file); } /** @@ -817,6 +689,16 @@ class OC_DB { }else{ $msg = ''; } + } elseif (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] . ', '; + $msg .= 'Driver Message = '.$errorInfo[2]; + }else{ + $msg = ''; + } }else{ $msg = ''; } diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php new file mode 100644 index 0000000000..3f6cadd3dc --- /dev/null +++ b/lib/db/mdb2schemareader.php @@ -0,0 +1,220 @@ + + * 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; + + public static function loadSchemaFromFile($file) { + self::$DBNAME = OC_Config::getValue( "dbname", "owncloud" ); + self::$DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); + $schema = new \Doctrine\DBAL\Schema\Schema(); + $xml = simplexml_load_file($file); + foreach($xml->children() as $child) { + switch($child->getName()) { + case 'name': + $name = (string)$child; + $name = str_replace( '*dbname*', self::$DBNAME, $name ); + break; + case 'create': + case 'overwrite': + case 'charset': + break; + case 'table': + self::loadTable($schema, $child); + break; + default: + var_dump($child->getName()); + + } + } + return $schema; + } + + 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 ); + $table = $schema->createTable($name); + break; + case 'create': + case 'overwrite': + case 'charset': + break; + case 'declaration': + self::loadDeclaration($table, $child); + break; + default: + var_dump($child->getName()); + + } + } + } + + 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: + var_dump($child->getName()); + + } + } + } + + private static function loadField($table, $xml) { + $options = array(); + foreach($xml->children() as $child) { + switch($child->getName()) { + case 'name': + $name = (string)$child; + 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; + default: + var_dump($child->getName()); + + } + } + if (isset($name) && isset($type)) { + if ($name == 'x') { + var_dump($name, $type, $options); + echo '
';
+			debug_print_backtrace();
+		}
+			if (empty($options['default'])) {
+				if ($type == 'integer') {
+					if (empty($options['default'])) {
+						$options['default'] = 0;
+					}
+				}
+				if (!empty($options['autoincrement'])) {
+					unset($options['default']);
+				}
+			}
+			if ($type == 'integer') {
+				$length = $options['length'];
+				if ($length == 1) {
+					$type = 'boolean';
+				}
+				else if ($length < 4) {
+					$type = 'smallint';
+				}
+				else if ($length > 4) {
+					$type = 'bigint';
+				}
+			}
+			$table->addColumn($name, $type, $options);
+			if (!empty($options['autoincrement'])
+			    && !empty($options['notnull'])) {
+				$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;
+								$fields[] = $field_name;
+								break;
+							case 'sorting':
+								break;
+							default:
+								var_dump($field->getName());
+
+						}
+					}
+					break;
+				default:
+					var_dump($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 {
+			var_dump($name, $fields);
+		}
+	}
+
+	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/schema.php b/lib/db/schema.php
new file mode 100644
index 0000000000..ca90e300e0
--- /dev/null
+++ b/lib/db/schema.php
@@ -0,0 +1,128 @@
+
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+class OC_DB_Schema {
+	private static $DBNAME;
+	private static $DBTABLEPREFIX;
+
+	/**
+	 * @brief saves database scheme to xml file
+	 * @param string $file name of file
+	 * @param int $mode
+	 * @return bool
+	 *
+	 * TODO: write more documentation
+	 */
+	public static function getDbStructure( $conn, $file ,$mode=MDB2_SCHEMA_DUMP_STRUCTURE) {
+		$sm = $conn->getSchemaManager();
+		$fromSchema = $sm->createSchema();
+
+		return OC_DB_MDB2SchemaWriter::saveSchemaToFile($file);
+	}
+
+	/**
+	 * @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);
+		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);
+
+		// remove tables we don't know about
+		foreach($fromSchema->getTables() as $table) {
+			if (!$toSchema->hasTable($table->getName())) {
+				$fromSchema->dropTable($table->getName());
+			}
+		}
+
+		$comparator = new \Doctrine\DBAL\Schema\Comparator();
+		$schemaDiff = $comparator->compare($fromSchema, $toSchema);
+
+		//$from = $fromSchema->toSql($conn->getDatabasePlatform());
+		//$to = $toSchema->toSql($conn->getDatabasePlatform());
+		//echo($from[9]);
+		//echo '
'; + //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('user'); + $sql = $fromSchema->getMigrateToSql($toSchema, $conn->getDatabasePlatform()); + var_dump($sql); + die; + $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); + $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( 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::commit(); + } + + private static function executeSchemaChange($conn, $schema) { + $conn->beginTransaction(); + foreach($schema->toSql($conn->getDatabasePlatform()) as $sql) { + $conn->query($sql); + } + $conn->commit(); + } +} From 8e140ae03bc4aa886c2e2386d106fd89ff2d302b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sat, 13 Oct 2012 15:09:06 +0200 Subject: [PATCH 004/108] Don't test the schema export for now, first decide which format we are going to use --- tests/lib/dbschema.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/lib/dbschema.php b/tests/lib/dbschema.php index cd408160af..becfe9edf4 100644 --- a/tests/lib/dbschema.php +++ b/tests/lib/dbschema.php @@ -55,6 +55,7 @@ class Test_DBSchema extends UnitTestCase { } public function doTestSchemaDumping() { + return; $outfile = 'static://db_out.xml'; OC_DB::getDbStructure($outfile); $content = file_get_contents($outfile); From 8fb36c93f576a23b49b6044640ddfae963f10b00 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 26 Oct 2012 10:51:21 +0200 Subject: [PATCH 005/108] Add MDB2 compatible database schema writer --- lib/db/mdb2schemareader.php | 7 +- lib/db/mdb2schemawriter.php | 127 ++++++++++++++++++++++++++++++++++++ lib/db/schema.php | 5 +- tests/lib/dbschema.php | 1 - 4 files changed, 135 insertions(+), 5 deletions(-) create mode 100644 lib/db/mdb2schemawriter.php diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index 3f6cadd3dc..05b9bd2128 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -131,7 +131,12 @@ class OC_DB_MDB2SchemaReader { if (empty($options['default'])) { if ($type == 'integer') { if (empty($options['default'])) { - $options['default'] = 0; + if (empty($options['notnull'])) { + unset($options['default']); + } + else { + $options['default'] = 0; + } } } if (!empty($options['autoincrement'])) { diff --git a/lib/db/mdb2schemawriter.php b/lib/db/mdb2schemawriter.php new file mode 100644 index 0000000000..a6367a0e35 --- /dev/null +++ b/lib/db/mdb2schemawriter.php @@ -0,0 +1,127 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class OC_DB_MDB2SchemaWriter { + static public function saveSchemaToFile($file, $sm) { + $xml = new SimpleXMLElement(''); + $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 index ca90e300e0..231b8068af 100644 --- a/lib/db/schema.php +++ b/lib/db/schema.php @@ -18,11 +18,10 @@ class OC_DB_Schema { * * TODO: write more documentation */ - public static function getDbStructure( $conn, $file ,$mode=MDB2_SCHEMA_DUMP_STRUCTURE) { + public static function getDbStructure( $conn, $file, $mode=MDB2_SCHEMA_DUMP_STRUCTURE) { $sm = $conn->getSchemaManager(); - $fromSchema = $sm->createSchema(); - return OC_DB_MDB2SchemaWriter::saveSchemaToFile($file); + return OC_DB_MDB2SchemaWriter::saveSchemaToFile($file, $sm); } /** diff --git a/tests/lib/dbschema.php b/tests/lib/dbschema.php index becfe9edf4..cd408160af 100644 --- a/tests/lib/dbschema.php +++ b/tests/lib/dbschema.php @@ -55,7 +55,6 @@ class Test_DBSchema extends UnitTestCase { } public function doTestSchemaDumping() { - return; $outfile = 'static://db_out.xml'; OC_DB::getDbStructure($outfile); $content = file_get_contents($outfile); From 8bb62e74bd14e4fec6ed1cd371d21af0f618076b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 1 Nov 2012 18:11:50 +0100 Subject: [PATCH 006/108] Remove other database implementations from OC_DB --- lib/db.php | 395 ++++------------------------------------------------- 1 file changed, 25 insertions(+), 370 deletions(-) diff --git a/lib/db.php b/lib/db.php index d43ca77ff5..a6500a2e3b 100644 --- a/lib/db.php +++ b/lib/db.php @@ -23,57 +23,31 @@ define('MDB2_SCHEMA_DUMP_STRUCTURE', '1'); /** * 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; /** - * @var MDB2_Driver_Common + * @var \Doctrine\DBAL\Connection */ - static private $connection; //the prefered connection to use, either PDO or MDB2 + static private $connection; //the prefered connection to use, only Doctrine static private $backend=null; - /** - * @var MDB2_Driver_Common - */ - static private $MDB2=null; /** * @var Doctrine */ static private $DOCTRINE=null; - /** - * @var PDO - */ - static private $PDO=null; - /** - * @var MDB2_Schema - */ - static private $schema=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() { return self::BACKEND_DOCTRINE; - //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; } /** @@ -94,15 +68,6 @@ class OC_DB { $success = self::connectDoctrine(); self::$connection=self::$DOCTRINE; self::$backend=self::BACKEND_DOCTRINE; - } else - 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; } return $success; } @@ -137,14 +102,6 @@ class OC_DB { $config = new \Doctrine\DBAL\Configuration(); switch($type) { case 'sqlite': - if (!self::connectPDO()) { - return false; - } - $connectionParams = array( - 'driver' => 'pdo', - 'pdo' => self::$PDO, - ); - break; case 'sqlite3': $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ); $connectionParams = array( @@ -194,220 +151,33 @@ class OC_DB { return true; } - /** - * connect to the database using pdo - * - * @return bool - */ - public static function connectPDO() { - if(self::$connection) { - if(self::$backend==self::BACKEND_MDB2) { - self::disconnect(); - }else{ - return true; - } - } - // 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" ); - if(strpos($host, ':')) { - list($host, $port)=explode(':', $host,2); - }else{ - $port=false; - } - $opts = array(); - $datadir=OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ); - - // do nothing if the connection already has been established - if(!self::$PDO) { - // Add the dsn according to the database type - switch($type) { - case 'sqlite': - $dsn='sqlite2:'.$datadir.'/'.$name.'.db'; - break; - case 'sqlite3': - $dsn='sqlite:'.$datadir.'/'.$name.'.db'; - break; - case 'mysql': - if($port) { - $dsn='mysql:dbname='.$name.';host='.$host.';port='.$port; - }else{ - $dsn='mysql:dbname='.$name.';host='.$host; - } - $opts[PDO::MYSQL_ATTR_INIT_COMMAND] = "SET NAMES 'UTF8'"; - break; - case 'pgsql': - if($port) { - $dsn='pgsql:dbname='.$name.';host='.$host.';port='.$port; - }else{ - $dsn='pgsql:dbname='.$name.';host='.$host; - } - /** - * Ugly fix for pg connections pbm when password use spaces - */ - $e_user = addslashes($user); - $e_password = addslashes($pass); - $pass = $user = null; - $dsn .= ";user='$e_user';password='$e_password'"; - /** END OF FIX***/ - break; - case 'oci': // Oracle with PDO is unsupported - if ($port) { - $dsn = 'oci:dbname=//' . $host . ':' . $port . '/' . $name; - } else { - $dsn = 'oci:dbname=//' . $host . '/' . $name; - } - break; - default: - return false; - } - try{ - self::$PDO=new PDO($dsn, $user, $pass, $opts); - }catch(PDOException $e) { - echo( 'can not connect to database, using '.$type.'. ('.$e->getMessage().')'); - die(); - } - // 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; - } - } - // 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' => '
', - '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' - ); - break; - case 'mysql': - $dsn = array( - 'phptype' => 'mysql', - 'username' => $user, - 'password' => $pass, - 'hostspec' => $host, - 'database' => $name - ); - break; - case 'pgsql': - $dsn = array( - 'phptype' => 'pgsql', - 'username' => $user, - 'password' => $pass, - 'hostspec' => $host, - 'database' => $name - ); - break; - case 'oci': - $dsn = array( - 'phptype' => 'oci8', - 'username' => $user, - 'password' => $pass, - 'charset' => 'AL32UTF8', - ); - if ($host != '') { - $dsn['hostspec'] = $host; - $dsn['database'] = $name; - } else { // use dbname for hostspec - $dsn['hostspec'] = $name; - $dsn['database'] = $user; - } - break; - default: - return false; - } - - // Try to establish connection - self::$MDB2 = MDB2::factory( $dsn, $options ); - - // Die if we could not connect - if( PEAR::isError( self::$MDB2 )) { - echo( 'can not connect to database, using '.$type.'. ('.self::$MDB2->getUserInfo().')'); - OC_Log::write('core', self::$MDB2->getUserInfo(), OC_Log::FATAL); - OC_Log::write('core', self::$MDB2->getMessage(), OC_Log::FATAL); - die(); - } - - // We always, really always want associative arrays - self::$MDB2->setFetchMode(MDB2_FETCHMODE_ASSOC); - } - - // we are done. great! - return true; - } - /** * @brief Prepare a SQL query * @param string $query Query string * @param int $limit * @param int $offset - * @return MDB2_Statement_Common prepared SQL query + * @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 ) { if (!is_null($limit) && $limit != -1) { - if (self::$backend == self::BACKEND_MDB2) { - //MDB2 uses or emulates limits & offset internally - self::$MDB2->setLimit($limit, $offset); + //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 { - //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; - } + $query.=$limitsql; } } @@ -427,29 +197,6 @@ class OC_DB { die( $entry ); } $result=new DoctrineStatementWrapper($result); - } else - if(self::$backend==self::BACKEND_MDB2) { - $result = self::$connection->prepare( $query ); - - // Die if we have an error (error means: bad query, not 0 results!) - if( PEAR::isError($result)) { - $entry = 'DB Error: "'.$result->getMessage().'"
'; - $entry .= 'Offending command was: '.htmlentities($query).'
'; - OC_Log::write('core', $entry,OC_Log::FATAL); - error_log('DB error: '.$entry); - die( $entry ); - } - }else{ - try{ - $result=self::$connection->prepare($query); - }catch(PDOException $e) { - $entry = 'DB Error: "'.$e->getMessage().'"
'; - $entry .= 'Offending command was: '.htmlentities($query).'
'; - OC_Log::write('core', $entry,OC_Log::FATAL); - error_log('DB error: '.$entry); - die( $entry ); - } - $result=new PDOStatementWrapper($result); } return $result; } @@ -459,7 +206,7 @@ class OC_DB { * @param string $table The optional table name (will replace *PREFIX*) and add sequence suffix * @return int id * - * MDB2 lastInsertID() + * \Doctrine\DBAL\Connection lastInsertId * * Call this method right after the insert command or other functions may * cause trouble! @@ -483,13 +230,8 @@ 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::$DOCTRINE=false; - self::$MDB2=false; - self::$PDO=false; } return true; @@ -630,9 +372,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; @@ -653,15 +392,13 @@ 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) { if(!$result) { return true; - }elseif(self::$backend==self::BACKEND_MDB2 and PEAR::isError($result)) { - return true; }else{ return false; } @@ -669,27 +406,12 @@ class OC_DB { /** * 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 ( self::$backend==self::BACKEND_MDB2 and PEAR::isError($error) ) { - $msg = $error->getCode() . ': ' . $error->getMessage(); - if (defined('DEBUG') && DEBUG) { - $msg .= '(' . $error->getDebugInfo() . ')'; - } - } elseif (self::$backend==self::BACKEND_PDO and self::$PDO) { - $msg = self::$PDO->errorCode() . ': '; - $errorInfo = self::$PDO->errorInfo(); - if (is_array($errorInfo)) { - $msg .= 'SQLSTATE = '.$errorInfo[0] . ', '; - $msg .= 'Driver Code = '.$errorInfo[1] . ', '; - $msg .= 'Driver Message = '.$errorInfo[2]; - }else{ - $msg = ''; - } - } elseif (self::$backend==self::BACKEND_DOCTRINE and self::$DOCTRINE) { + if (self::$backend==self::BACKEND_DOCTRINE and self::$DOCTRINE) { $msg = self::$DOCTRINE->errorCode() . ': '; $errorInfo = self::$DOCTRINE->errorInfo(); if (is_array($errorInfo)) { @@ -767,70 +489,3 @@ class DoctrineStatementWrapper { return $this->statement->fetchColumn($colnum); } } -/** - * small wrapper around PDOStatement to make it behave ,more like an MDB2 Statement - */ -class PDOStatementWrapper{ - /** - * @var PDOStatement - */ - private $statement=null; - private $lastArguments=array(); - - public function __construct($statement) { - $this->statement=$statement; - } - - /** - * make execute return the result instead of a bool - */ - public function execute($input=array()) { - $this->lastArguments=$input; - if(count($input)>0) { - $result=$this->statement->execute($input); - }else{ - $result=$this->statement->execute(); - } - if($result) { - return $this; - }else{ - return false; - } - } - - /** - * 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]}", PDO::FETCH_NUM); - 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); - } -} From dc8b22485e556a01d73754e94e513ec05f15d225 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 7 Dec 2012 13:50:59 +0100 Subject: [PATCH 007/108] Change to use 3rdparty version --- .gitmodules | 6 ------ 3rdparty/doctrine-common | 1 - 3rdparty/doctrine-dbal | 1 - lib/base.php | 4 ++-- 4 files changed, 2 insertions(+), 10 deletions(-) delete mode 100644 .gitmodules delete mode 160000 3rdparty/doctrine-common delete mode 160000 3rdparty/doctrine-dbal diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index ffcaaf952b..0000000000 --- a/.gitmodules +++ /dev/null @@ -1,6 +0,0 @@ -[submodule "3rdparty/doctrine-common"] - path = 3rdparty/doctrine-common - url = git://github.com/doctrine/common.git -[submodule "3rdparty/doctrine-dbal"] - path = 3rdparty/doctrine-dbal - url = git://github.com/doctrine/dbal.git diff --git a/3rdparty/doctrine-common b/3rdparty/doctrine-common deleted file mode 160000 index d1c7d4334e..0000000000 --- a/3rdparty/doctrine-common +++ /dev/null @@ -1 +0,0 @@ -Subproject commit d1c7d4334e38cad603a5c863d4c7b91bb04ec6b2 diff --git a/3rdparty/doctrine-dbal b/3rdparty/doctrine-dbal deleted file mode 160000 index 30dc433ea0..0000000000 --- a/3rdparty/doctrine-dbal +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 30dc433ea08f4863479700492bdb70c3b06440bd diff --git a/lib/base.php b/lib/base.php index d9a0e2c757..7acad72f02 100644 --- a/lib/base.php +++ b/lib/base.php @@ -100,10 +100,10 @@ class OC{ $path = str_replace('_', '/', $className) . '.php'; } elseif(strpos($className, 'Doctrine\\Common')===0) { - $path = 'doctrine-common/lib/'.str_replace('\\', '/', $className) . '.php'; + $path = 'doctrine/common/lib/'.str_replace('\\', '/', $className) . '.php'; } elseif(strpos($className, 'Doctrine\\DBAL')===0) { - $path = 'doctrine-dbal/lib/'.str_replace('\\', '/', $className) . '.php'; + $path = 'doctrine/dbal/lib/'.str_replace('\\', '/', $className) . '.php'; } elseif(strpos($className, 'Symfony\\Component\\Routing\\')===0) { $path = 'symfony/routing/'.str_replace('\\', '/', $className) . '.php'; From d0d9b63ab535d103a2607f6e589ee5c04807d6ce Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sat, 23 Feb 2013 13:43:05 +0100 Subject: [PATCH 008/108] Codestyle cleanup --- lib/db.php | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/lib/db.php b/lib/db.php index e10a548466..54b6de947c 100644 --- a/lib/db.php +++ b/lib/db.php @@ -22,15 +22,15 @@ define('MDB2_SCHEMA_DUMP_STRUCTURE', '1'); -class DatabaseException extends Exception{ +class DatabaseException extends Exception { private $query; - public function __construct($message, $query){ + public function __construct($message, $query) { parent::__construct($message); $this->query = $query; } - public function getQuery(){ + public function getQuery() { return $this->query; } } @@ -97,7 +97,7 @@ class OC_DB { if(self::$connection) { if(self::$backend!=self::BACKEND_DOCTRINE) { self::disconnect(); - }else{ + } else { return true; } } @@ -220,9 +220,9 @@ class OC_DB { self::connect(); // return the result if (self::$backend == self::BACKEND_DOCTRINE) { - try{ + try { $result=self::$connection->prepare($query); - }catch(PDOException $e) { + } catch(PDOException $e) { throw new DatabaseException($e->getMessage(), $query); } $result=new DoctrineStatementWrapper($result); @@ -438,11 +438,11 @@ 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 ); } @@ -513,7 +513,7 @@ class OC_DB { public static function isError($result) { if(!$result) { return true; - }else{ + } else { return false; } } @@ -532,10 +532,10 @@ class OC_DB { $msg .= 'SQLSTATE = '.$errorInfo[0] . ', '; $msg .= 'Driver Code = '.$errorInfo[1] . ', '; $msg .= 'Driver Message = '.$errorInfo[2]; - }else{ + } else { $msg = ''; } - }else{ + } else { $msg = ''; } return $msg; @@ -577,12 +577,12 @@ class DoctrineStatementWrapper { $this->lastArguments=$input; if(count($input)>0) { $result=$this->statement->execute($input); - }else{ + } else { $result=$this->statement->execute(); } if($result) { return $this; - }else{ + } else { return false; } } From e97c7ae806acc1687604a887dd8558c9b7222f5d Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sat, 23 Feb 2013 14:46:37 +0100 Subject: [PATCH 009/108] Change PDO Exceptions to Doctrine Exceptions --- lib/db.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/db.php b/lib/db.php index 54b6de947c..3b2590c310 100644 --- a/lib/db.php +++ b/lib/db.php @@ -191,7 +191,7 @@ class OC_DB { static public function prepare( $query , $limit=null, $offset=null ) { if (!is_null($limit) && $limit != -1) { - //PDO does not handle limit and offset. + //Doctrine 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) @@ -222,7 +222,7 @@ class OC_DB { if (self::$backend == self::BACKEND_DOCTRINE) { try { $result=self::$connection->prepare($query); - } catch(PDOException $e) { + } catch(\Doctrine\DBAL\DBALException $e) { throw new DatabaseException($e->getMessage(), $query); } $result=new DoctrineStatementWrapper($result); @@ -345,7 +345,7 @@ class OC_DB { * @brief Insert a row if a matching row doesn't exists. * @param string $table. The table to insert into in the form '*PREFIX*tableName' * @param array $input. An array of fieldname/value pairs - * @returns The return value from PDOStatementWrapper->execute() + * @returns The return value from DoctrineStatementWrapper->execute() */ public static function insertIfNotExist($table, $input) { self::connect(); @@ -370,7 +370,7 @@ class OC_DB { try { $stmt = self::prepare($query); $result = $stmt->execute(); - } catch(PDOException $e) { + } catch(\Doctrine\DBAL\DBALException $e) { $entry = 'DB Error: "'.$e->getMessage() . '"
'; $entry .= 'Offending command was: ' . $query . '
'; OC_Log::write('core', $entry, OC_Log::FATAL); @@ -402,7 +402,7 @@ class OC_DB { try { $result = self::prepare($query); - } catch(PDOException $e) { + } catch(\Doctrine\DBAL\DBALException $e) { $entry = 'DB Error: "'.$e->getMessage() . '"
'; $entry .= 'Offending command was: ' . $query.'
'; OC_Log::write('core', $entry, OC_Log::FATAL); From e1818675d24f37898f0c50d0804bc458d2acb72f Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sat, 23 Feb 2013 14:48:02 +0100 Subject: [PATCH 010/108] Remove MDB2 sqlite3 driver --- lib/MDB2/Driver/Datatype/sqlite3.php | 385 -------- lib/MDB2/Driver/Function/sqlite3.php | 136 --- lib/MDB2/Driver/Manager/sqlite3.php | 1362 -------------------------- lib/MDB2/Driver/Native/sqlite3.php | 33 - lib/MDB2/Driver/Reverse/sqlite3.php | 586 ----------- lib/MDB2/Driver/sqlite3.php | 1332 ------------------------- 6 files changed, 3834 deletions(-) delete mode 100644 lib/MDB2/Driver/Datatype/sqlite3.php delete mode 100644 lib/MDB2/Driver/Function/sqlite3.php delete mode 100644 lib/MDB2/Driver/Manager/sqlite3.php delete mode 100644 lib/MDB2/Driver/Native/sqlite3.php delete mode 100644 lib/MDB2/Driver/Reverse/sqlite3.php delete mode 100644 lib/MDB2/Driver/sqlite3.php diff --git a/lib/MDB2/Driver/Datatype/sqlite3.php b/lib/MDB2/Driver/Datatype/sqlite3.php deleted file mode 100644 index ca4c1cbceb..0000000000 --- a/lib/MDB2/Driver/Datatype/sqlite3.php +++ /dev/null @@ -1,385 +0,0 @@ -. - * - */ - -require_once 'MDB2/Driver/Datatype/Common.php'; - -/** - * MDB2 SQLite driver - * - * @package MDB2 - * @category Database - * @author Lukas Smith - */ -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 4147a48199..0000000000 --- a/lib/MDB2/Driver/Function/sqlite3.php +++ /dev/null @@ -1,136 +0,0 @@ -. - * - */ - -require_once 'MDB2/Driver/Function/Common.php'; - -/** - * MDB2 SQLite driver for the function modules - * - * @package MDB2 - * @category Database - * @author Lukas Smith - */ -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 921153c17d..0000000000 --- a/lib/MDB2/Driver/Manager/sqlite3.php +++ /dev/null @@ -1,1362 +0,0 @@ -. - * - */ - -require_once 'MDB2/Driver/Manager/Common.php'; - -/** - * MDB2 SQLite driver for the management modules - * - * @package MDB2 - * @category Database - * @author Lukas Smith - * @author Lorenzo Alberton - */ -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; $iexec(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 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 344d523bdf..0000000000 --- a/lib/MDB2/Driver/Native/sqlite3.php +++ /dev/null @@ -1,33 +0,0 @@ -. - * - */ -require_once 'MDB2/Driver/Native/Common.php'; - -/** - * MDB2 SQLite driver for the native module - * - * @package MDB2 - * @category Database - * @author Lukas Smith - */ -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 9703780954..0000000000 --- a/lib/MDB2/Driver/Reverse/sqlite3.php +++ /dev/null @@ -1,586 +0,0 @@ -. - * - */ - -require_once 'MDB2/Driver/Reverse/Common.php'; - -/** - * MDB2 SQlite driver for the schema reverse engineering module - * - * @package MDB2 - * @category Database - * @author Lukas Smith - */ -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 8f057cfb6e..0000000000 --- a/lib/MDB2/Driver/sqlite3.php +++ /dev/null @@ -1,1332 +0,0 @@ -. - * - */ - -/** - * MDB2 SQLite3 driver - * - * @package MDB2 - * @category Database - * @author Lukas Smith - */ -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(100); - } - $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->db->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 - */ -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 - */ -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 - */ -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(); - } -} From 34e4e490b863f0628868fd50eed98573f1673f6f Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sun, 10 Mar 2013 11:40:08 +0100 Subject: [PATCH 011/108] Fix mssql connection parameters and correct driver for pgsql --- lib/db.php | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/lib/db.php b/lib/db.php index 4a511908e5..4a956674d1 100644 --- a/lib/db.php +++ b/lib/db.php @@ -147,7 +147,7 @@ class OC_DB { 'host' => $host, 'port' => $port, 'dbname' => $name, - 'driver' => 'pdo_mysql', + 'driver' => 'pdo_pgsql', ); break; case 'oci': @@ -162,13 +162,14 @@ class OC_DB { ); break; case 'mssql': - $dsn = array( - 'phptype' => 'sqlsrv', - 'username' => $user, - 'password' => $pass, - 'hostspec' => $host, - 'database' => $name - ); + $connectionParams = array( + 'user' => $user, + 'password' => $pass, + 'host' => $host, + 'port' => $port, + 'dbname' => $name, + 'driver' => 'pdo_sqlsrv', + ); break; default: return false; From 4a02dacf16b880e404994084584c59bc99bf6e0b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sun, 17 Mar 2013 13:49:54 +0100 Subject: [PATCH 012/108] Point 3rdparty submodule to the doctrine branch --- 3rdparty | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty b/3rdparty index 63cb284792..93f76b4392 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit 63cb2847921d668c2b48b572872cfddbcf41bea4 +Subproject commit 93f76b4392b9e6b60fe0d052793741f348cb2536 From e9213a67110d87c8127d0609859fe31726afbdbd Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Sun, 17 Mar 2013 14:15:36 +0100 Subject: [PATCH 013/108] Change var_dumps to exceptions --- lib/db/mdb2schemareader.php | 19 +++++++------------ lib/db/schema.php | 2 -- 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index 05b9bd2128..6408c27e91 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -29,7 +29,7 @@ class OC_DB_MDB2SchemaReader { self::loadTable($schema, $child); break; default: - var_dump($child->getName()); + throw new DomainException('Unknown element: '.$child->getName()); } } @@ -52,7 +52,7 @@ class OC_DB_MDB2SchemaReader { self::loadDeclaration($table, $child); break; default: - var_dump($child->getName()); + throw new DomainException('Unknown element: '.$child->getName()); } } @@ -68,7 +68,7 @@ class OC_DB_MDB2SchemaReader { self::loadIndex($table, $child); break; default: - var_dump($child->getName()); + throw new DomainException('Unknown element: '.$child->getName()); } } @@ -118,16 +118,11 @@ class OC_DB_MDB2SchemaReader { $options['default'] = $default; break; default: - var_dump($child->getName()); + throw new DomainException('Unknown element: '.$child->getName()); } } if (isset($name) && isset($type)) { - if ($name == 'x') { - var_dump($name, $type, $options); - echo '
';
-			debug_print_backtrace();
-		}
 			if (empty($options['default'])) {
 				if ($type == 'integer') {
 					if (empty($options['default'])) {
@@ -187,13 +182,13 @@ class OC_DB_MDB2SchemaReader {
 							case 'sorting':
 								break;
 							default:
-								var_dump($field->getName());
+								throw new DomainException('Unknown element: '.$field->getName());
 
 						}
 					}
 					break;
 				default:
-					var_dump($child->getName());
+					throw new DomainException('Unknown element: '.$child->getName());
 
 			}
 		}
@@ -207,7 +202,7 @@ class OC_DB_MDB2SchemaReader {
 				$table->addIndex($fields, $name);
 			}
 		} else {
-			var_dump($name, $fields);
+			throw new DomainException('Empty index definition: '.$name.' options:'. print_r($fields, true));
 		}
 	}
 
diff --git a/lib/db/schema.php b/lib/db/schema.php
index 231b8068af..cd356e7ff8 100644
--- a/lib/db/schema.php
+++ b/lib/db/schema.php
@@ -76,8 +76,6 @@ class OC_DB_Schema {
 		$toSchema = clone $fromSchema;
 		$toSchema->dropTable('user');
 		$sql = $fromSchema->getMigrateToSql($toSchema, $conn->getDatabasePlatform());
-		var_dump($sql);
-		die;
 		$conn->execute($sql);
 	}
 

From 427242cf32da2dbdabada5b6311ae96685fb1112 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Sun, 17 Mar 2013 14:32:01 +0100
Subject: [PATCH 014/108] Use the correct property for connection object

---
 lib/db.php    | 12 ++++++------
 lib/setup.php |  2 +-
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/lib/db.php b/lib/db.php
index 518fcc56a0..49eeeea430 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -308,7 +308,7 @@ class OC_DB {
 	 */
 	public static function getDbStructure( $file, $mode=MDB2_SCHEMA_DUMP_STRUCTURE) {
 		self::connectDoctrine();
-		return OC_DB_Schema::getDbStructure(self::$connection, $file);
+		return OC_DB_Schema::getDbStructure(self::$DOCTRINE, $file);
 	}
 
 	/**
@@ -320,7 +320,7 @@ class OC_DB {
 	 */
 	public static function createDbFromStructure( $file ) {
 		self::connectDoctrine();
-		return OC_DB_Schema::createDbFromStructure(self::$connection, $file);
+		return OC_DB_Schema::createDbFromStructure(self::$DOCTRINE, $file);
 		/* 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 0000-01-01 00:00:00 everywhere
 		 * [1] http://bugs.mysql.com/bug.php?id=27645
@@ -343,7 +343,7 @@ class OC_DB {
 	public static function updateDbFromStructure($file) {
 		self::connectDoctrine();
 		try {
-			$result = OC_DB_Schema::updateDbFromStructure(self::$connection, $file);
+			$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;
@@ -543,7 +543,7 @@ class OC_DB {
 	 */
 	public static function dropTable($tableName) {
 		self::connectDoctrine();
-		OC_DB_Schema::dropTable(self::$connection, $tableName);
+		OC_DB_Schema::dropTable(self::$DOCTRINE, $tableName);
 	}
 
 	/**
@@ -552,7 +552,7 @@ class OC_DB {
 	 */
 	public static function removeDBStructure($file) {
 		self::connectDoctrine();
-		OC_DB_Schema::removeDBStructure(self::$connection, $file);
+		OC_DB_Schema::removeDBStructure(self::$DOCTRINE, $file);
 	}
 
 	/**
@@ -561,7 +561,7 @@ class OC_DB {
 	 */
 	public static function replaceDB( $file ) {
 		self::connectDoctrine();
-		OC_DB_Schema::replaceDB(self::$connection, $file);
+		OC_DB_Schema::replaceDB(self::$DOCTRINE, $file);
 	}
 
 	/**
diff --git a/lib/setup.php b/lib/setup.php
index 8814447f52..bee70e7ebc 100644
--- a/lib/setup.php
+++ b/lib/setup.php
@@ -178,7 +178,7 @@ class OC_Setup {
 				}
 			}
 			else {
-				//delete the old sqlite database first, might cause infinte loops otherwise
+				//delete the old sqlite database first, might cause infinite loops otherwise
 				if(file_exists("$datadir/owncloud.db")) {
 					unlink("$datadir/owncloud.db");
 				}

From ee57ddd0b78d83afeeded76057177e990fff9fa4 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Mon, 25 Feb 2013 08:48:28 +0100
Subject: [PATCH 015/108] Rewrite query for numRows function for SELECT queries

---
 lib/db.php | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/lib/db.php b/lib/db.php
index 49eeeea430..379cb342db 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -661,7 +661,14 @@ class DoctrineStatementWrapper {
 	 * provide numRows
 	 */
 	public function numRows() {
-		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]}", PDO::FETCH_NUM);
+			return $query->execute($this->lastArguments)->fetchColumn();
+		}else{
+			return $this->statement->rowCount();
+		}
 	}
 
 	/**

From 2866376f344b83d3aa6f1692b571a359c880909d Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Sun, 17 Mar 2013 15:25:41 +0100
Subject: [PATCH 016/108] Fix handling of empty defaults in schema

---
 lib/db/mdb2schemareader.php | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php
index 6408c27e91..1d71af1700 100644
--- a/lib/db/mdb2schemareader.php
+++ b/lib/db/mdb2schemareader.php
@@ -124,17 +124,13 @@ class OC_DB_MDB2SchemaReader {
 		}
 		if (isset($name) && isset($type)) {
 			if (empty($options['default'])) {
-				if ($type == 'integer') {
-					if (empty($options['default'])) {
-						if (empty($options['notnull'])) {
-							unset($options['default']);
-						}
-						else {
-							$options['default'] = 0;
-						}
-					}
+				if (empty($options['notnull']) || !$options['notnull']) {
+					unset($options['default']);
 				}
-				if (!empty($options['autoincrement'])) {
+				if ($type == 'integer') {
+					$options['default'] = 0;
+				}
+				if (!empty($options['autoincrement']) && $options['autoincrement']) {
 					unset($options['default']);
 				}
 			}

From 80a3f8d066b7deffe70a232ca956746db02db138 Mon Sep 17 00:00:00 2001
From: Robin Appelman 
Date: Sun, 17 Mar 2013 16:00:39 +0100
Subject: [PATCH 017/108] Seperate memory based cache from OC_Cache

---
 lib/cache.php                                 | 67 ++--------------
 lib/cache/apc.php                             | 64 ----------------
 lib/memcache/apc.php                          | 76 +++++++++++++++++++
 lib/memcache/cache.php                        | 69 +++++++++++++++++
 lib/{cache => memcache}/xcache.php            | 31 +++++---
 tests/lib/cache/apc.php                       | 35 ---------
 .../{cache/xcache.php => memcache/apc.php}    |  8 +-
 tests/lib/memcache/xcache.php                 | 31 ++++++++
 8 files changed, 210 insertions(+), 171 deletions(-)
 delete mode 100644 lib/cache/apc.php
 create mode 100644 lib/memcache/apc.php
 create mode 100644 lib/memcache/cache.php
 rename lib/{cache => memcache}/xcache.php (66%)
 delete mode 100644 tests/lib/cache/apc.php
 rename tests/lib/{cache/xcache.php => memcache/apc.php} (80%)
 create mode 100644 tests/lib/memcache/xcache.php

diff --git a/lib/cache.php b/lib/cache.php
index bc74ed83f8..48b9964ba9 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 895d307ea2..0000000000
--- a/lib/cache/apc.php
+++ /dev/null
@@ -1,64 +0,0 @@
-
- * 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/memcache/apc.php b/lib/memcache/apc.php
new file mode 100644
index 0000000000..b3bb68223b
--- /dev/null
+++ b/lib/memcache/apc.php
@@ -0,0 +1,76 @@
+
+ * 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 {
+	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;
+	}
+
+	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 0000000000..d77ea27933
--- /dev/null
+++ b/lib/memcache/cache.php
@@ -0,0 +1,69 @@
+
+ * 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 {
+	/**
+	 * get a cache instance
+	 *
+	 * @param bool $global
+	 * @return Cache
+	 */
+	static function create($global = false) {
+		if (XCache::isAvailable()) {
+			return new XCache($global);
+		} elseif (APC::isAvailable()) {
+			return new APC($global);
+		} else {
+			return null;
+		}
+	}
+
+	/**
+	 * @param bool $global
+	 */
+	abstract public function __construct($global);
+
+	/**
+	 * @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 = '');
+
+	/**
+	 * @return bool
+	 */
+	//static public function isAvailable();
+}
diff --git a/lib/cache/xcache.php b/lib/memcache/xcache.php
similarity index 66%
rename from lib/cache/xcache.php
rename to lib/memcache/xcache.php
index 9f380f870b..0ee34c667d 100644
--- a/lib/cache/xcache.php
+++ b/lib/memcache/xcache.php
@@ -6,13 +6,15 @@
  * See the COPYING-README file.
  */
 
-class OC_Cache_XCache {
+namespace OC\Memcache;
+
+class XCache extends Cache {
 	protected $prefix;
 
 	public function __construct($global = false) {
-		$this->prefix = OC_Util::getInstanceId().'/';
+		$this->prefix = \OC_Util::getInstanceId().'/';
 		if (!$global) {
-			$this->prefix .= OC_User::getUser().'/';
+			$this->prefix .= \OC_User::getUser().'/';
 		}
 	}
 
@@ -44,13 +46,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/tests/lib/cache/apc.php b/tests/lib/cache/apc.php
deleted file mode 100644
index bb5eb483db..0000000000
--- a/tests/lib/cache/apc.php
+++ /dev/null
@@ -1,35 +0,0 @@
-.
-*
-*/
-
-class Test_Cache_APC extends Test_Cache {
-	public function setUp() {
-		if(!extension_loaded('apc')) {
-			$this->markTestSkipped('The apc extension is not available.');
-			return;
-		}
-		if(!ini_get('apc.enable_cli') && OC::$CLI) {
-			$this->markTestSkipped('apc not available in CLI.');
-			return;
-		}
-		$this->instance=new OC_Cache_APC();
-	}
-}
diff --git a/tests/lib/cache/xcache.php b/tests/lib/memcache/apc.php
similarity index 80%
rename from tests/lib/cache/xcache.php
rename to tests/lib/memcache/apc.php
index 43bed2db03..e3dccc0966 100644
--- a/tests/lib/cache/xcache.php
+++ b/tests/lib/memcache/apc.php
@@ -20,12 +20,12 @@
 *
 */
 
-class Test_Cache_XCache extends Test_Cache {
+class Test_Memcache_APC extends Test_Cache {
 	public function setUp() {
-		if(!function_exists('xcache_get')) {
-			$this->markTestSkipped('The xcache extension is not available.');
+		if(!\OC\Memcache\APC::isAvailable()) {
+			$this->markTestSkipped('The apc extension is not available.');
 			return;
 		}
-		$this->instance=new OC_Cache_XCache();
+		$this->instance=new \OC\Memcache\APC();
 	}
 }
diff --git a/tests/lib/memcache/xcache.php b/tests/lib/memcache/xcache.php
new file mode 100644
index 0000000000..48773533c8
--- /dev/null
+++ b/tests/lib/memcache/xcache.php
@@ -0,0 +1,31 @@
+.
+ *
+ */
+
+class Test_Memcache_XCache extends Test_Cache {
+	public function setUp() {
+		if (!\OC\Memcache\XCache::isAvailable()) {
+			$this->markTestSkipped('The xcache extension is not available.');
+			return;
+		}
+		$this->instance = new \OC\Memcache\XCache();
+	}
+}

From 5418c98a81caba2da00b2e81fb56fe373737a7c8 Mon Sep 17 00:00:00 2001
From: Robin Appelman 
Date: Sun, 17 Mar 2013 16:01:10 +0100
Subject: [PATCH 018/108] Add memcached backend

---
 lib/memcache/cache.php           |  6 ++-
 lib/memcache/memcached.php       | 81 ++++++++++++++++++++++++++++++++
 tests/lib/memcache/memcached.php | 17 +++++++
 3 files changed, 103 insertions(+), 1 deletion(-)
 create mode 100644 lib/memcache/memcached.php
 create mode 100644 tests/lib/memcache/memcached.php

diff --git a/lib/memcache/cache.php b/lib/memcache/cache.php
index d77ea27933..331c689f06 100644
--- a/lib/memcache/cache.php
+++ b/lib/memcache/cache.php
@@ -20,6 +20,8 @@ abstract class Cache {
 			return new XCache($global);
 		} elseif (APC::isAvailable()) {
 			return new APC($global);
+		} elseif (Memcached::isAvailable()) {
+			return new Memcached($global);
 		} else {
 			return null;
 		}
@@ -65,5 +67,7 @@ abstract class Cache {
 	/**
 	 * @return bool
 	 */
-	//static public function isAvailable();
+	static 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 0000000000..ab35bd8bba
--- /dev/null
+++ b/lib/memcache/memcached.php
@@ -0,0 +1,81 @@
+
+ * 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 {
+	protected $prefix;
+
+	/**
+	 * @var \Memcached $cache
+	 */
+	private static $cache = null;
+
+	public function __construct($global = false) {
+		$this->prefix = \OC_Util::getInstanceId() . '/';
+		if (!$global) {
+			$this->prefix .= \OC_User::getUser() . '/';
+		}
+		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/tests/lib/memcache/memcached.php b/tests/lib/memcache/memcached.php
new file mode 100644
index 0000000000..a0be047ed1
--- /dev/null
+++ b/tests/lib/memcache/memcached.php
@@ -0,0 +1,17 @@
+
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+class Test_Memcache_Memcached extends Test_Cache {
+	public function setUp() {
+		if (!\OC\Memcache\Memcached::isAvailable()) {
+			$this->markTestSkipped('The memcached extension is not available.');
+			return;
+		}
+		$this->instance = new \OC\Memcache\Memcached();
+	}
+}

From 947e03aab51493a860778a541b31f991006bf6ff Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Sun, 17 Mar 2013 17:00:07 +0100
Subject: [PATCH 019/108] Quote index columns that need it

---
 lib/db/mdb2schemareader.php | 8 +++++++-
 lib/db/schema.php           | 6 +++---
 2 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php
index 1d71af1700..827323a551 100644
--- a/lib/db/mdb2schemareader.php
+++ b/lib/db/mdb2schemareader.php
@@ -9,10 +9,12 @@
 class OC_DB_MDB2SchemaReader {
 	static protected $DBNAME;
 	static protected $DBTABLEPREFIX;
+	static protected $platform;
 
-	public static function loadSchemaFromFile($file) {
+	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) {
@@ -173,6 +175,10 @@ class OC_DB_MDB2SchemaReader {
 						switch($field->getName()) {
 							case 'name':
 								$field_name = (string)$field;
+								$keywords = self::$platform->getReservedKeywordsList();
+								if ($keywords->isKeyword($field_name)) {
+									$field_name = self::$platform->quoteIdentifier($field_name);
+								}
 								$fields[] = $field_name;
 								break;
 							case 'sorting':
diff --git a/lib/db/schema.php b/lib/db/schema.php
index cd356e7ff8..7a1ec20404 100644
--- a/lib/db/schema.php
+++ b/lib/db/schema.php
@@ -32,7 +32,7 @@ class OC_DB_Schema {
 	 * TODO: write more documentation
 	 */
 	public static function createDbFromStructure( $conn, $file ) {
-		$toSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file);
+		$toSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform());
 		return self::executeSchemaChange($conn, $toSchema);
 	}
 
@@ -45,7 +45,7 @@ class OC_DB_Schema {
 		$sm = $conn->getSchemaManager();
 		$fromSchema = $sm->createSchema();
 
-		$toSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file);
+		$toSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform());
 
 		// remove tables we don't know about
 		foreach($fromSchema->getTables() as $table) {
@@ -84,7 +84,7 @@ class OC_DB_Schema {
 	 * @param string $file the xml file describing the tables
 	 */
 	public static function removeDBStructure($conn, $file) {
-		$fromSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file);
+		$fromSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform());
 		$toSchema = clone $fromSchema;
 		foreach($toSchema->getTables() as $table) {
 			$toSchema->dropTable($table->getName());

From 82f0bcce30329df723001b0d08c62d4f0af3afc1 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Sun, 17 Mar 2013 17:28:36 +0100
Subject: [PATCH 020/108] Also fix sequences in schemachange

---
 lib/db/schema.php | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/lib/db/schema.php b/lib/db/schema.php
index 7a1ec20404..8941881d4e 100644
--- a/lib/db/schema.php
+++ b/lib/db/schema.php
@@ -53,6 +53,12 @@ class OC_DB_Schema {
 				$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);

From d44f457d2d08ed72354a39e0cb8c34c829e83ecb Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Sun, 17 Mar 2013 17:34:35 +0100
Subject: [PATCH 021/108] integer length 1 is not only used for boolean values

---
 lib/db/mdb2schemareader.php | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php
index 827323a551..53eb849d86 100644
--- a/lib/db/mdb2schemareader.php
+++ b/lib/db/mdb2schemareader.php
@@ -138,10 +138,7 @@ class OC_DB_MDB2SchemaReader {
 			}
 			if ($type == 'integer') {
 				$length = $options['length'];
-				if ($length == 1) {
-					$type = 'boolean';
-				}
-				else if ($length < 4) {
+				if ($length < 4) {
 					$type = 'smallint';
 				}
 				else if ($length > 4) {

From 6f13a35513b212de937c44522df17501360dd870 Mon Sep 17 00:00:00 2001
From: Thomas Mueller 
Date: Tue, 19 Mar 2013 18:52:54 +0100
Subject: [PATCH 022/108] documentation added and trying to fix minor code
 issues

---
 lib/db.php                  | 11 ++++++++---
 lib/db/mdb2schemareader.php | 16 ++++++++++++++++
 lib/db/schema.php           |  6 +++---
 3 files changed, 27 insertions(+), 6 deletions(-)

diff --git a/lib/db.php b/lib/db.php
index 379cb342db..951c21f414 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -196,6 +196,7 @@ class OC_DB {
 	 * @param string $query Query string
 	 * @param int $limit
 	 * @param int $offset
+	 * @throws DatabaseException
 	 * @return \Doctrine\DBAL\Statement prepared SQL query
 	 *
 	 * SQL query via Doctrine prepare(), needs to be execute()'d!
@@ -235,7 +236,7 @@ class OC_DB {
 			try {
 				$result=self::$connection->prepare($query);
 			} catch(\Doctrine\DBAL\DBALException $e) {
-				throw new DatabaseException($e->getMessage(), $query);
+				throw new \DatabaseException($e->getMessage(), $query);
 			}
 			$result=new DoctrineStatementWrapper($result);
 		}
@@ -338,6 +339,7 @@ class OC_DB {
 	/**
 	 * @brief update the database scheme
 	 * @param string $file file to read structure from
+	 * @throws Exception
 	 * @return bool
 	 */
 	public static function updateDbFromStructure($file) {
@@ -367,7 +369,7 @@ class OC_DB {
 	 * @brief Insert a row if a matching row doesn't exists.
 	 * @param string $table. The table to insert into in the form '*PREFIX*tableName'
 	 * @param array $input. An array of fieldname/value pairs
-	 * @returns The return value from DoctrineStatementWrapper->execute()
+	 * @return bool return value from DoctrineStatementWrapper->execute()
 	 */
 	public static function insertIfNotExist($table, $input) {
 		self::connect();
@@ -398,6 +400,7 @@ class OC_DB {
 				OC_Log::write('core', $entry, OC_Log::FATAL);
 				error_log('DB error: '.$entry);
 				OC_Template::printErrorPage( $entry );
+				return false;
 			}
 
 			if($result->numRows() == 0) {
@@ -430,6 +433,7 @@ class OC_DB {
 			OC_Log::write('core', $entry, OC_Log::FATAL);
 			error_log('DB error: ' . $entry);
 			OC_Template::printErrorPage( $entry );
+			return false;
 		}
 
 		return $result->execute();
@@ -556,7 +560,7 @@ class OC_DB {
 	}
 
 	/**
-	 * @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 ) {
@@ -799,6 +803,7 @@ class DoctrineStatementWrapper {
 	 * 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/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php
index 53eb849d86..7a7efe551c 100644
--- a/lib/db/mdb2schemareader.php
+++ b/lib/db/mdb2schemareader.php
@@ -11,6 +11,12 @@ class OC_DB_MDB2SchemaReader {
 	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_" );
@@ -38,6 +44,11 @@ class OC_DB_MDB2SchemaReader {
 		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()) {
@@ -60,6 +71,11 @@ class OC_DB_MDB2SchemaReader {
 		}
 	}
 
+	/**
+	 * @param \Doctrine\DBAL\Schema\Table $table
+	 * @param $xml
+	 * @throws DomainException
+	 */
 	private static function loadDeclaration($table, $xml) {
 		foreach($xml->children() as $child) {
 			switch($child->getName()) {
diff --git a/lib/db/schema.php b/lib/db/schema.php
index 8941881d4e..37379f6066 100644
--- a/lib/db/schema.php
+++ b/lib/db/schema.php
@@ -101,19 +101,19 @@ class OC_DB_Schema {
 	}
 
 	/**
-	 * @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( $conn, $file ) {
 		$apps = OC_App::getAllApps();
 		self::beginTransaction();
 		// Delete the old tables
-		self::removeDBStructure( OC::$SERVERROOT . '/db_structure.xml' );
+		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( $path );
+				self::removeDBStructure( $conn, $path );
 			}
 		}
 

From 28d2379c43b31ec362f1e0b4d09fed3ac9812cd2 Mon Sep 17 00:00:00 2001
From: Thomas Mueller 
Date: Tue, 19 Mar 2013 19:17:40 +0100
Subject: [PATCH 023/108] initial fix for MSSQL

---
 lib/db.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/db.php b/lib/db.php
index 951c21f414..3aff9cc68a 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -703,11 +703,11 @@ class DoctrineStatementWrapper {
 	}
 
 	private function tryFixSubstringLastArgumentDataForMSSQL($input) {
-		$query = $this->statement->queryString;
+		$query = $this->statement->getWrappedStatement()->queryString;
 		$pos = stripos ($query, 'SUBSTRING');
 
 		if ( $pos === false) {
-			return;
+			return $input;
 		}
 
 		try {

From d89e748926f4ea901c0c17f0f7c3651548611b87 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Fri, 3 May 2013 16:02:53 +0200
Subject: [PATCH 024/108] Use supplied tablename

---
 lib/db/schema.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/db/schema.php b/lib/db/schema.php
index 37379f6066..89ab238161 100644
--- a/lib/db/schema.php
+++ b/lib/db/schema.php
@@ -80,7 +80,7 @@ class OC_DB_Schema {
 		$sm = $conn->getSchemaManager();
 		$fromSchema = $sm->createSchema();
 		$toSchema = clone $fromSchema;
-		$toSchema->dropTable('user');
+		$toSchema->dropTable($tableName);
 		$sql = $fromSchema->getMigrateToSql($toSchema, $conn->getDatabasePlatform());
 		$conn->execute($sql);
 	}

From 854da1d9ca19ded3bddbd79f4c70d630148bb916 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Fri, 17 May 2013 15:48:51 +0200
Subject: [PATCH 025/108] Add classes replaced by the public api to the code
 checker

---
 lib/installer.php | 22 ++++++++++++++++++++--
 1 file changed, 20 insertions(+), 2 deletions(-)

diff --git a/lib/installer.php b/lib/installer.php
index 49ba449263..2229559208 100644
--- a/lib/installer.php
+++ b/lib/installer.php
@@ -436,10 +436,28 @@ 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_JSON::',
+			'OC_Log::',
+			'OC_Mail::',
+			'OC_Preferences::',
+			'OC_Request::',
+			'OC_Response::',
+			'OC_Template::',
+			'OC_User::',
+			'OC_Util::',
 		);
 
 		// is the code checker enabled?

From 26c91bfbc23788928f7b6c2d8666b7a4e63318ff Mon Sep 17 00:00:00 2001
From: Thomas Mueller 
Date: Fri, 24 May 2013 15:19:13 +0200
Subject: [PATCH 026/108] adding Oracle support to autotest.sh

---
 autotest.sh | 59 +++++++++++++++++++++++++++++++++++++++++++++++++----
 1 file changed, 55 insertions(+), 4 deletions(-)

diff --git a/autotest.sh b/autotest.sh
index fdf6d2fe09..eb07cf8748 100755
--- a/autotest.sh
+++ b/autotest.sh
@@ -54,6 +54,22 @@ cat > ./tests/autoconfig-pgsql.php < ./tests/autoconfig-oci.php < false,
+  'dbtype' => 'oci',
+  'dbtableprefix' => 'oc_',
+  'adminlogin' => 'admin',
+  'adminpass' => 'admin',
+  'directory' => '$BASEDIR/$DATADIR',
+  'dbuser' => 'oc_autotest',
+  'dbname' => 'XE',
+  'dbhost' => 'localhost',
+  'dbpass' => 'owncloud',
+);
+DELIM
+
 function execute_tests {
 	echo "Setup environment for $1 testing ..."
 	# back to root folder
@@ -77,6 +93,30 @@ function execute_tests {
 	if [ "$1" == "pgsql" ] ; then
 		dropdb -U oc_autotest oc_autotest
 	fi
+	if [ "$1" == "oci" ] ; then
+		echo "drop the database"
+		sqlplus -s -l / as sysdba <
Date: Sat, 25 May 2013 05:51:51 +0300
Subject: [PATCH 027/108] Hack base.php to make Basic Auth work

---
 lib/base.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/base.php b/lib/base.php
index 724bd250a5..8622d0f8bf 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -571,6 +571,7 @@ class OC {
 			self::checkUpgrade();
 		}
 
+		OC::tryBasicAuthLogin();
 		if (!self::$CLI) {
 			try {
 				if (!OC_Config::getValue('maintenance', false)) {
@@ -779,7 +780,7 @@ class OC {
 			//OC_Log::write('core',"Logged in with HTTP Authentication", OC_Log::DEBUG);
 			OC_User::unsetMagicInCookie();
 			$_REQUEST['redirect_url'] = OC_Request::requestUri();
-			OC_Util::redirectToDefaultPage();
+			//OC_Util::redirectToDefaultPage();
 		}
 		return true;
 	}

From 138c7f615bef9994629d4aa283ae7f037dc0f14d Mon Sep 17 00:00:00 2001
From: Thomas Tanghus 
Date: Fri, 31 May 2013 00:28:03 +0200
Subject: [PATCH 028/108] Clean up hack.

---
 3rdparty     | 2 +-
 lib/base.php | 6 ++----
 2 files changed, 3 insertions(+), 5 deletions(-)
 mode change 160000 => 120000 3rdparty

diff --git a/3rdparty b/3rdparty
deleted file mode 160000
index a13af72fbe..0000000000
--- a/3rdparty
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit a13af72fbe8983686fc47489a750e60319f68ac2
diff --git a/3rdparty b/3rdparty
new file mode 120000
index 0000000000..ae24324a4b
--- /dev/null
+++ b/3rdparty
@@ -0,0 +1 @@
+/home/tol/owncloud/3rdparty/
\ No newline at end of file
diff --git a/lib/base.php b/lib/base.php
index 8622d0f8bf..42d8fb3c8d 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -572,6 +572,7 @@ class OC {
 		}
 
 		OC::tryBasicAuthLogin();
+
 		if (!self::$CLI) {
 			try {
 				if (!OC_Config::getValue('maintenance', false)) {
@@ -679,9 +680,8 @@ class OC {
 			$error[] = 'invalidpassword';
 
 			// The user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP
-		} elseif (OC::tryBasicAuthLogin()) {
-			$error[] = 'invalidpassword';
 		}
+
 		OC_Util::displayLoginPage(array_unique($error));
 	}
 
@@ -779,8 +779,6 @@ class OC {
 		if (OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) {
 			//OC_Log::write('core',"Logged in with HTTP Authentication", OC_Log::DEBUG);
 			OC_User::unsetMagicInCookie();
-			$_REQUEST['redirect_url'] = OC_Request::requestUri();
-			//OC_Util::redirectToDefaultPage();
 		}
 		return true;
 	}

From e21649ccfffc8f4c02b62126d8b49d45ba280656 Mon Sep 17 00:00:00 2001
From: Thomas Tanghus 
Date: Fri, 31 May 2013 00:53:15 +0200
Subject: [PATCH 029/108] Revert "Clean up hack."

This reverts commit 138c7f615bef9994629d4aa283ae7f037dc0f14d.
---
 3rdparty     | 2 +-
 lib/base.php | 6 ++++--
 2 files changed, 5 insertions(+), 3 deletions(-)
 mode change 120000 => 160000 3rdparty

diff --git a/3rdparty b/3rdparty
deleted file mode 120000
index ae24324a4b..0000000000
--- a/3rdparty
+++ /dev/null
@@ -1 +0,0 @@
-/home/tol/owncloud/3rdparty/
\ No newline at end of file
diff --git a/3rdparty b/3rdparty
new file mode 160000
index 0000000000..a13af72fbe
--- /dev/null
+++ b/3rdparty
@@ -0,0 +1 @@
+Subproject commit a13af72fbe8983686fc47489a750e60319f68ac2
diff --git a/lib/base.php b/lib/base.php
index 42d8fb3c8d..8622d0f8bf 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -572,7 +572,6 @@ class OC {
 		}
 
 		OC::tryBasicAuthLogin();
-
 		if (!self::$CLI) {
 			try {
 				if (!OC_Config::getValue('maintenance', false)) {
@@ -680,8 +679,9 @@ class OC {
 			$error[] = 'invalidpassword';
 
 			// The user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP
+		} elseif (OC::tryBasicAuthLogin()) {
+			$error[] = 'invalidpassword';
 		}
-
 		OC_Util::displayLoginPage(array_unique($error));
 	}
 
@@ -779,6 +779,8 @@ class OC {
 		if (OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) {
 			//OC_Log::write('core',"Logged in with HTTP Authentication", OC_Log::DEBUG);
 			OC_User::unsetMagicInCookie();
+			$_REQUEST['redirect_url'] = OC_Request::requestUri();
+			//OC_Util::redirectToDefaultPage();
 		}
 		return true;
 	}

From ad5c4bf7717d96142d3b7a3526022e5bccecfdcc Mon Sep 17 00:00:00 2001
From: Thomas Tanghus 
Date: Fri, 31 May 2013 00:53:57 +0200
Subject: [PATCH 030/108] Cleanup hacke v.2

---
 lib/base.php | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/lib/base.php b/lib/base.php
index 8622d0f8bf..42d8fb3c8d 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -572,6 +572,7 @@ class OC {
 		}
 
 		OC::tryBasicAuthLogin();
+
 		if (!self::$CLI) {
 			try {
 				if (!OC_Config::getValue('maintenance', false)) {
@@ -679,9 +680,8 @@ class OC {
 			$error[] = 'invalidpassword';
 
 			// The user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP
-		} elseif (OC::tryBasicAuthLogin()) {
-			$error[] = 'invalidpassword';
 		}
+
 		OC_Util::displayLoginPage(array_unique($error));
 	}
 
@@ -779,8 +779,6 @@ class OC {
 		if (OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) {
 			//OC_Log::write('core',"Logged in with HTTP Authentication", OC_Log::DEBUG);
 			OC_User::unsetMagicInCookie();
-			$_REQUEST['redirect_url'] = OC_Request::requestUri();
-			//OC_Util::redirectToDefaultPage();
 		}
 		return true;
 	}

From 9cd6645037dc802fc0e1bc87ac8fdce76243f09d Mon Sep 17 00:00:00 2001
From: Thomas Tanghus 
Date: Wed, 5 Jun 2013 00:38:08 +0200
Subject: [PATCH 031/108] Move comment and set requesttoken.

---
 lib/base.php | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/lib/base.php b/lib/base.php
index 42d8fb3c8d..ab69b707d3 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -571,6 +571,7 @@ class OC {
 			self::checkUpgrade();
 		}
 
+		// Test it the user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP
 		OC::tryBasicAuthLogin();
 
 		if (!self::$CLI) {
@@ -674,12 +675,9 @@ class OC {
 		// remember was checked after last login
 		if (OC::tryRememberLogin()) {
 			$error[] = 'invalidcookie';
-
 			// Someone wants to log in :
 		} elseif (OC::tryFormLogin()) {
 			$error[] = 'invalidpassword';
-
-			// The user is already authenticated using Apaches AuthType Basic... very usable in combination with LDAP
 		}
 
 		OC_Util::displayLoginPage(array_unique($error));
@@ -779,6 +777,7 @@ class OC {
 		if (OC_User::login($_SERVER["PHP_AUTH_USER"], $_SERVER["PHP_AUTH_PW"])) {
 			//OC_Log::write('core',"Logged in with HTTP Authentication", OC_Log::DEBUG);
 			OC_User::unsetMagicInCookie();
+			$_SERVER['HTTP_REQUESTTOKEN'] = OC_Util::callRegister();
 		}
 		return true;
 	}

From d1b76f1b8829bcaad62f987650929abebf2faf03 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Mon, 24 Jun 2013 22:37:07 +0200
Subject: [PATCH 032/108] Fix not null with empty default

---
 lib/db/mdb2schemareader.php | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php
index 7a7efe551c..00b880a68b 100644
--- a/lib/db/mdb2schemareader.php
+++ b/lib/db/mdb2schemareader.php
@@ -144,6 +144,7 @@ class OC_DB_MDB2SchemaReader {
 			if (empty($options['default'])) {
 				if (empty($options['notnull']) || !$options['notnull']) {
 					unset($options['default']);
+					$options['notnull'] = false;
 				}
 				if ($type == 'integer') {
 					$options['default'] = 0;

From 6887d7daf5f0dfcd2f1da0d9c8f796a4fcc29963 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Mon, 24 Jun 2013 22:38:05 +0200
Subject: [PATCH 033/108] Skip Test_Archive_TAR in php 5.5 for now

---
 tests/lib/archive/tar.php | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/tests/lib/archive/tar.php b/tests/lib/archive/tar.php
index e66a874087..d831487b16 100644
--- a/tests/lib/archive/tar.php
+++ b/tests/lib/archive/tar.php
@@ -10,6 +10,12 @@ require_once 'archive.php';
 
 if (!OC_Util::runningOnWindows()) {
 class Test_Archive_TAR extends Test_Archive {
+	public function setUp() {
+		if (floatval(phpversion())>=5.5) {
+			$this->markTestSkipped('php 5.5 changed unpack function.');
+			return;
+		}
+	}
 	protected function getExisting() {
 		$dir = OC::$SERVERROOT . '/tests/data';
 		return new OC_Archive_TAR($dir . '/data.tar.gz');

From dca8c1cbc138203d4069660bb8c1caf23ff68e04 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Fri, 24 May 2013 21:57:34 +0200
Subject: [PATCH 034/108] Fixes connecting to Oracle without port set

---
 lib/db.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lib/db.php b/lib/db.php
index 8bd3964492..41ec5ec67e 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -156,11 +156,13 @@ class OC_DB {
 							'user' => $user,
 							'password' => $pass,
 							'host' => $host,
-							'port' => $port,
 							'dbname' => $name,
 							'charset' => 'AL32UTF8',
 							'driver' => 'oci8',
 					);
+					if (!empty($port)) {
+						$connectionParams['port'] = $port;
+					}
 					break;
 				case 'mssql':
 					$connectionParams = array(

From 6300b95896540dcac145598edf50ec778be1a3eb Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Wed, 12 Jun 2013 18:48:18 +0200
Subject: [PATCH 035/108] UNIX_TIMESTAMP replace for Oracle

---
 lib/db.php | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/db.php b/lib/db.php
index 41ec5ec67e..ab4364299c 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -517,6 +517,7 @@ class OC_DB {
 		} 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) - date'1970-01-01') * 86400", $query );
 		}elseif( $type == 'mssql' ) {
 			$query = preg_replace( "/\`(.*?)`/", "[$1]", $query );
 			$query = str_replace( 'NOW()', 'CURRENT_TIMESTAMP', $query );

From 159efa8bd4a5437bd2b028d40910132fd22702f1 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Wed, 12 Jun 2013 18:48:53 +0200
Subject: [PATCH 036/108] OCI doesn't have a queryString

---
 lib/db.php | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/lib/db.php b/lib/db.php
index ab4364299c..cf352fe9fb 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -733,6 +733,11 @@ class DoctrineStatementWrapper {
 	 * 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) {

From 9fa4b78ba46a7763f3274b8fa4932cbc16e2ca7f Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Fri, 21 Jun 2013 15:41:10 +0200
Subject: [PATCH 037/108] Use Doctrines Oracle sequence suffix

---
 lib/db.php | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/lib/db.php b/lib/db.php
index cf352fe9fb..8b2f36aac6 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -322,12 +322,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 );
 			}
-			 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_" );

From 23da0c7d188b4c0a119e16c5be48ce322df29068 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Mon, 24 Jun 2013 17:46:51 +0200
Subject: [PATCH 038/108] Fix tableExists test function for Oracle

---
 tests/lib/dbschema.php | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/tests/lib/dbschema.php b/tests/lib/dbschema.php
index 59f203993e..813112f1fe 100644
--- a/tests/lib/dbschema.php
+++ b/tests/lib/dbschema.php
@@ -102,9 +102,10 @@ class Test_DBSchema extends PHPUnit_Framework_TestCase {
 				$exists = $result && $result->fetchOne();
 				break;
 			case 'oci':
-				$sql = 'SELECT table_name FROM user_tables WHERE table_name = ?';
-				$result = \OC_DB::executeAudited($sql, array($table));
-				$exists = (bool)$result->fetchOne(); //oracle uses MDB2 and returns null
+				$sql = "SELECT table_name FROM user_tables WHERE table_name = '{$table}'";
+				$query = OC_DB::prepare($sql);
+				$result = $query->execute(array());
+				$exists = $result && $result->fetchOne();
 				break;
 			case 'mssql':
 				$sql = "SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = '{$table}'";

From 144a8eb01f29f4f6ebb8117a3d6936722732ea49 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Fri, 24 May 2013 22:00:42 +0200
Subject: [PATCH 039/108] Quote tablenames

---
 lib/db/schema.php | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/lib/db/schema.php b/lib/db/schema.php
index 89ab238161..d862f3d25c 100644
--- a/lib/db/schema.php
+++ b/lib/db/schema.php
@@ -63,6 +63,13 @@ class OC_DB_Schema {
 		$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]);

From eb9078407437f275687e31c9bd7486f469ffa978 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Wed, 12 Jun 2013 18:51:59 +0200
Subject: [PATCH 040/108] Fix table change tests for OCI

---
 tests/data/db_structure2.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/data/db_structure2.xml b/tests/data/db_structure2.xml
index fc6fe0bba7..6f12f81f47 100644
--- a/tests/data/db_structure2.xml
+++ b/tests/data/db_structure2.xml
@@ -49,8 +49,9 @@
 
    
     description
-    clob
+    text
     false
+    1024
    
 
    

From b980987e32270fc416eefc87f7e163763cab2776 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Fri, 21 Jun 2013 12:04:52 +0200
Subject: [PATCH 041/108] Doctrine only returns false

---
 tests/lib/db.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/lib/db.php b/tests/lib/db.php
index afbdb413c3..60331a2329 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->assertTrue((bool)$result);

From 769212a9a025a58a5b2189eb2461a01e0ece6d36 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Mon, 24 Jun 2013 18:15:02 +0200
Subject: [PATCH 042/108] numRows doesn't work with Oracle

---
 tests/lib/db.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/lib/db.php b/tests/lib/db.php
index 60331a2329..18b7340ec9 100644
--- a/tests/lib/db.php
+++ b/tests/lib/db.php
@@ -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() {

From fae3cf1a87b474cd84d9fdf20113f7fd3653e5e3 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Fri, 21 Jun 2013 12:06:26 +0200
Subject: [PATCH 043/108] Always quote db identifiers in OC_DB_MDB2SchemaReader

---
 lib/db/mdb2schemareader.php | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php
index 00b880a68b..19d0ba4d4e 100644
--- a/lib/db/mdb2schemareader.php
+++ b/lib/db/mdb2schemareader.php
@@ -55,6 +55,7 @@ class OC_DB_MDB2SchemaReader {
 				case 'name':
 					$name = (string)$child;
 					$name = str_replace( '*dbprefix*', self::$DBTABLEPREFIX, $name );
+					$name = self::$platform->quoteIdentifier($name);
 					$table = $schema->createTable($name);
 					break;
 				case 'create':
@@ -98,6 +99,7 @@ class OC_DB_MDB2SchemaReader {
 			switch($child->getName()) {
 				case 'name':
 					$name = (string)$child;
+					$name = self::$platform->quoteIdentifier($name);
 					break;
 				case 'type':
 					$type = (string)$child;
@@ -189,10 +191,7 @@ class OC_DB_MDB2SchemaReader {
 						switch($field->getName()) {
 							case 'name':
 								$field_name = (string)$field;
-								$keywords = self::$platform->getReservedKeywordsList();
-								if ($keywords->isKeyword($field_name)) {
-									$field_name = self::$platform->quoteIdentifier($field_name);
-								}
+								$field_name = self::$platform->quoteIdentifier($field_name);
 								$fields[] = $field_name;
 								break;
 							case 'sorting':

From 21f87d63cf9ebfeea8113efe08418b7d2d445aef Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Wed, 26 Jun 2013 18:07:53 +0200
Subject: [PATCH 044/108] Change nullable of filecache.etag and
 permissions.user

---
 db_structure.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/db_structure.xml b/db_structure.xml
index cefb7fc52c..4c192ba028 100644
--- a/db_structure.xml
+++ b/db_structure.xml
@@ -308,7 +308,7 @@
 				etag
 				text
 				
-				true
+				false
 				40
 			
 
@@ -383,7 +383,7 @@
 				user
 				text
 				
-				true
+				false
 				64
 			
 

From a9ee15cf405bd61c50856d3cc47ce6ecdfac0841 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Wed, 26 Jun 2013 20:48:01 +0200
Subject: [PATCH 045/108] Use Doctrine platform to add limit and offset to
 query

---
 lib/db.php | 19 ++++---------------
 1 file changed, 4 insertions(+), 15 deletions(-)

diff --git a/lib/db.php b/lib/db.php
index 8b2f36aac6..ac9ed77898 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -207,22 +207,11 @@ class OC_DB {
 	static public function prepare( $query , $limit=null, $offset=null ) {
 
 		if (!is_null($limit) && $limit != -1) {
-			//Doctrine 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];

From 0c680b46cdfe5106d87ad807657c9d2e558b4a73 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Wed, 26 Jun 2013 20:48:54 +0200
Subject: [PATCH 046/108] View test needs a dummy user

---
 tests/lib/files/view.php | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php
index 830913a91a..3bac9e770a 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();

From 3b31afb2a712ad06e96e0e2e5f872ec3e435810d Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Wed, 26 Jun 2013 21:40:31 +0200
Subject: [PATCH 047/108] Oracle doesn't know & as bitwise AND

---
 lib/public/share.php | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/lib/public/share.php b/lib/public/share.php
index 122ab3fa03..304cb7239e 100644
--- a/lib/public/share.php
+++ b/lib/public/share.php
@@ -662,7 +662,13 @@ class Share {
 					// Remove the permissions for all reshares of this item
 					if (!empty($ids)) {
 						$ids = "'".implode("','", $ids)."'";
-						$query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = `permissions` & ?'
+						// TODO this should be done with Doctrine platform objects
+						if (\OC_Config::getValue( "dbtype") === 'oci') {
+							$andOp = 'BITAND(`permissions`, ?)';
+						} else {
+							$andOp = '`permissions` & ?';
+						}
+						$query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = '.$andOp
 							.' WHERE `id` IN ('.$ids.')');
 						$query->execute(array($permissions));
 					}

From 77dc3964f8c89826e7706ea8cc88da5efdaf8212 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= 
Date: Wed, 26 Jun 2013 19:57:28 +0200
Subject: [PATCH 048/108] check item id is set

---
 lib/public/share.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/public/share.php b/lib/public/share.php
index 304cb7239e..5abf5dee26 100644
--- a/lib/public/share.php
+++ b/lib/public/share.php
@@ -984,7 +984,7 @@ class Share {
 					// Check if the same owner shared with the user twice
 					// through a group and user share - this is allowed
 					$id = $targets[$row[$column]];
-					if ($items[$id]['uid_owner'] == $row['uid_owner']) {
+					if (isset($items[$id]) && $items[$id]['uid_owner'] == $row['uid_owner']) {
 						// Switch to group share type to ensure resharing conditions aren't bypassed
 						if ($items[$id]['share_type'] != self::SHARE_TYPE_GROUP) {
 							$items[$id]['share_type'] = self::SHARE_TYPE_GROUP;

From 10951f9bd542a3e0d162194c8737cfb0ef9048b0 Mon Sep 17 00:00:00 2001
From: Thomas Mueller 
Date: Thu, 27 Jun 2013 23:34:36 +0200
Subject: [PATCH 049/108] adding PHPDoc

---
 lib/db.php                  | 6 +++---
 lib/db/mdb2schemawriter.php | 6 ++++++
 lib/db/schema.php           | 3 ++-
 3 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/lib/db.php b/lib/db.php
index ac9ed77898..9e5bd2d99b 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -49,10 +49,10 @@ class OC_DB {
 	/**
 	 * @var \Doctrine\DBAL\Connection
 	 */
-	static private $connection; //the prefered connection to use, only Doctrine
+	static private $connection; //the preferred connection to use, only Doctrine
 	static private $backend=null;
 	/**
-	 * @var Doctrine
+	 * @var \Doctrine\DBAL\Connection
 	 */
 	static private $DOCTRINE=null;
 
@@ -652,7 +652,7 @@ class OC_DB {
 	/**
 	 * check if a result is an error and throws an exception, works with \Doctrine\DBAL\DBALException
 	 * @param mixed $result
-	 * @param string message
+	 * @param string $message
 	 * @return void
 	 * @throws DatabaseException
 	 */
diff --git a/lib/db/mdb2schemawriter.php b/lib/db/mdb2schemawriter.php
index a6367a0e35..21b43cbfe8 100644
--- a/lib/db/mdb2schemawriter.php
+++ b/lib/db/mdb2schemawriter.php
@@ -7,6 +7,12 @@
  */
 
 class OC_DB_MDB2SchemaWriter {
+
+	/**
+	 * @param $file
+	 * @param \Doctrine\DBAL\Schema\AbstractSchemaManager $sm
+	 * @return bool
+	 */
 	static public function saveSchemaToFile($file, $sm) {
 		$xml = new SimpleXMLElement('');
 		$xml->addChild('name', OC_Config::getValue( "dbname", "owncloud" ));
diff --git a/lib/db/schema.php b/lib/db/schema.php
index d862f3d25c..3d5b404825 100644
--- a/lib/db/schema.php
+++ b/lib/db/schema.php
@@ -12,8 +12,9 @@ class OC_DB_Schema {
 
 	/**
 	 * @brief saves database scheme to xml file
+	 * @param \Doctrine\DBAL\Connection $conn
 	 * @param string $file name of file
-	 * @param int $mode
+	 * @param int|string $mode
 	 * @return bool
 	 *
 	 * TODO: write more documentation

From 74016666c114236b354c6aa7fe3ec2c854a72e9b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= 
Date: Fri, 28 Jun 2013 11:12:05 +0200
Subject: [PATCH 050/108] enable oracle testing

enabling, because the test shows a green ball: https://ci.tmit.eu/job/ownCloud-Server(doctrine)-oci/33/console
---
 autotest.sh | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/autotest.sh b/autotest.sh
index 4562b3ed08..71c12fd45f 100755
--- a/autotest.sh
+++ b/autotest.sh
@@ -146,8 +146,7 @@ if [ -z "$1" ]
 	execute_tests "sqlite"
 	execute_tests 'mysql'
 	execute_tests 'pgsql'
-	# we will add oci as soon as it's stable
-	#execute_tests 'oci'
+	execute_tests 'oci'
 else
 	execute_tests $1
 fi

From 6145e617185e24919eaf6e94dddeb3b3be735b8c Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Fri, 28 Jun 2013 11:42:23 +0200
Subject: [PATCH 051/108] Remove deadcode

---
 lib/db.php                  | 24 ------------------------
 lib/db/mdb2schemareader.php |  3 ---
 lib/db/schema.php           |  3 ---
 3 files changed, 30 deletions(-)

diff --git a/lib/db.php b/lib/db.php
index 9e5bd2d99b..0fa487dedb 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -376,18 +376,6 @@ class OC_DB {
 	public static function createDbFromStructure( $file ) {
 		self::connectDoctrine();
 		return OC_DB_Schema::createDbFromStructure(self::$DOCTRINE, $file);
-		/* 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 0000-01-01 00:00:00 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( '0000-00-00 00:00:00',
-				'CURRENT_TIMESTAMP', $content );
-		}
 	}
 
 	/**
@@ -405,18 +393,6 @@ class OC_DB {
 			throw $e;
 		}
 		return $result;
-		/* 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 0000-01-01 00:00:00 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( '0000-00-00 00:00:00',
-				'CURRENT_TIMESTAMP', $content );
-		}
 	}
 
 	/**
diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php
index 19d0ba4d4e..702482b569 100644
--- a/lib/db/mdb2schemareader.php
+++ b/lib/db/mdb2schemareader.php
@@ -26,9 +26,6 @@ class OC_DB_MDB2SchemaReader {
 		foreach($xml->children() as $child) {
 			switch($child->getName()) {
 				case 'name':
-					$name = (string)$child;
-					$name = str_replace( '*dbname*', self::$DBNAME, $name );
-					break;
 				case 'create':
 				case 'overwrite':
 				case 'charset':
diff --git a/lib/db/schema.php b/lib/db/schema.php
index 3d5b404825..fa053c64ef 100644
--- a/lib/db/schema.php
+++ b/lib/db/schema.php
@@ -7,9 +7,6 @@
  */
 
 class OC_DB_Schema {
-	private static $DBNAME;
-	private static $DBTABLEPREFIX;
-
 	/**
 	 * @brief saves database scheme to xml file
 	 * @param \Doctrine\DBAL\Connection $conn

From b04e09a90118bfba8faa1fc6a5381c26148a4796 Mon Sep 17 00:00:00 2001
From: Bart Visscher 
Date: Fri, 28 Jun 2013 11:48:38 +0200
Subject: [PATCH 052/108] Move DoctrineStatementWrapper to its own file

---
 lib/db.php                  | 187 +-----------------------------------
 lib/db/statementwrapper.php | 186 +++++++++++++++++++++++++++++++++++
 2 files changed, 190 insertions(+), 183 deletions(-)
 create mode 100644 lib/db/statementwrapper.php

diff --git a/lib/db.php b/lib/db.php
index 0fa487dedb..e38d464e75 100644
--- a/lib/db.php
+++ b/lib/db.php
@@ -232,7 +232,7 @@ class OC_DB {
 			} catch(\Doctrine\DBAL\DBALException $e) {
 				throw new \DatabaseException($e->getMessage(), $query);
 			}
-			$result=new DoctrineStatementWrapper($result);
+			$result=new OC_DB_StatementWrapper($result);
 		}
 		if ((is_null($limit) || $limit == -1) and self::$cachingEnabled ) {
 			$type = OC_Config::getValue( "dbtype", "sqlite" );
@@ -245,7 +245,7 @@ class OC_DB {
 
 	/**
 	 * @brief execute a prepared statement, on error write log and throw exception
-	 * @param mixed $stmt DoctrineStatementWrapperm,
+	 * @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
@@ -278,7 +278,7 @@ class OC_DB {
 			$stmt = self::prepare($stmt['sql'], $stmt['limit'], $stmt['offset']);
 		}
 		self::raiseExceptionOnError($stmt, 'Could not prepare statement');
-		if ($stmt instanceof DoctrineStatementWrapper) {
+		if ($stmt instanceof OC_DB_StatementWrapper) {
 			$result = $stmt->execute($parameters);
 			self::raiseExceptionOnError($result, 'Could not execute statement');
 		} else {
@@ -399,7 +399,7 @@ class OC_DB {
 	 * @brief Insert a row if a matching row doesn't exists.
 	 * @param string $table. The table to insert into in the form '*PREFIX*tableName'
 	 * @param array $input. An array of fieldname/value pairs
-	 * @return bool return value from DoctrineStatementWrapper->execute()
+	 * @return bool return value from OC_DB_StatementWrapper->execute()
 	 */
 	public static function insertIfNotExist($table, $input) {
 		self::connect();
@@ -680,182 +680,3 @@ class OC_DB {
 		self::$cachingEnabled = $enabled;
 	}
 }
-
-/**
- * small wrapper around \Doctrine\DBAL\Driver\Statement to make it behave, more like an MDB2 Statement
- */
-class DoctrineStatementWrapper {
-	/**
-	 * @var \Doctrine\DBAL\Driver\Statement
-	 */
-	private $statement=null;
-	private $lastArguments=array();
-
-	public function __construct($statement) {
-		$this->statement=$statement;
-	}
-
-	/**
-	 * 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) {
-			return $this;
-		} else {
-			return false;
-		}
-	}
-
-	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().'"
'; - $entry .= 'Offending command was: '.$this->statement->queryString .'
'; - $entry .= 'Input parameters: ' .print_r($input, true).'
'; - $entry .= 'Stack trace: ' .$e->getTraceAsString().'
'; - 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/db/statementwrapper.php b/lib/db/statementwrapper.php new file mode 100644 index 0000000000..0d65018641 --- /dev/null +++ b/lib/db/statementwrapper.php @@ -0,0 +1,186 @@ + + * 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 $lastArguments=array(); + + public function __construct($statement) { + $this->statement=$statement; + } + + /** + * 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) { + return $this; + } else { + return false; + } + } + + 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().'"
'; + $entry .= 'Offending command was: '.$this->statement->queryString .'
'; + $entry .= 'Input parameters: ' .print_r($input, true).'
'; + $entry .= 'Stack trace: ' .$e->getTraceAsString().'
'; + 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); + } +} From 6c868a9b5c959809713b041113b02313e010dfd5 Mon Sep 17 00:00:00 2001 From: runky Date: Fri, 5 Jul 2013 10:37:24 +0200 Subject: [PATCH 053/108] Update authenticate.php Fix 'Undefined index: wrongpw' error --- apps/files_sharing/templates/authenticate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index fa03f41913..2c89b5df3f 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -1,6 +1,6 @@
- +
t('The password is wrong. Try again.')); ?>

From 424ec94680e69a3082a3d3f7c1ceefd7eeae15d2 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 8 Mar 2013 14:22:04 +0100 Subject: [PATCH 054/108] Make buildNotExistingFileName testable and write unittests --- lib/helper.php | 14 +++++++++++++- tests/lib/helper.php | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 1 deletion(-) diff --git a/lib/helper.php b/lib/helper.php index 1860a55fc8..017221cef7 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=''; } @@ -649,7 +661,7 @@ class OC_Helper { $newpath = $path . '/' . $filename; $counter = 2; - while (\OC\Files\Filesystem::file_exists($newpath)) { + while ($view->file_exists($newpath)) { $newname = $name . ' (' . $counter . ')' . $ext; $newpath = $path . '/' . $newname; $counter++; diff --git a/tests/lib/helper.php b/tests/lib/helper.php index 6acb0dfaa6..410117a9e6 100644 --- a/tests/lib/helper.php +++ b/tests/lib/helper.php @@ -146,4 +146,46 @@ 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)); + $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)); + $viewMock->expects($this->at(1)) + ->method('file_exists') + ->will($this->returnValue(true)); + $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)); + $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)); + $viewMock->expects($this->at(1)) + ->method('file_exists') + ->will($this->returnValue(true)); + $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)); + $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)); + $this->assertEquals('dir/filename(1) (2).ext', OC_Helper::buildNotExistingFileNameForView('dir', 'filename(1) (1).ext', $viewMock)); + } } From 22c29eb64b67ee18beacf126eecb78fd4a02608c Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 5 Jul 2013 15:38:09 +0200 Subject: [PATCH 055/108] Fix renaming using parenthesis --- lib/helper.php | 26 +++++++++++++++++++++----- tests/lib/helper.php | 38 ++++++++++++++++++++++++++++---------- 2 files changed, 49 insertions(+), 15 deletions(-) diff --git a/lib/helper.php b/lib/helper.php index 017221cef7..df0d120976 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -660,11 +660,27 @@ class OC_Helper { } $newpath = $path . '/' . $filename; - $counter = 2; - while ($view->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/tests/lib/helper.php b/tests/lib/helper.php index 410117a9e6..67b5a3d43e 100644 --- a/tests/lib/helper.php +++ b/tests/lib/helper.php @@ -154,38 +154,56 @@ class Test_Helper extends PHPUnit_Framework_TestCase { $viewMock->expects($this->at(0)) ->method('file_exists') - ->will($this->returnValue(true)); + ->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)); + ->will($this->returnValue(true)); // filename.ext exists $viewMock->expects($this->at(1)) ->method('file_exists') - ->will($this->returnValue(true)); + ->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)); + ->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)); - $viewMock->expects($this->at(1)) - ->method('file_exists') - ->will($this->returnValue(true)); + ->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)); + ->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)); + ->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)); } } From 2db839c4d36a9c6157e2da6606f6fff1bea2eab0 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 5 Jul 2013 19:28:10 +0200 Subject: [PATCH 056/108] Move error handlers from OC_Log to OC\Log\ErrorHandler --- lib/base.php | 5 ++-- lib/legacy/log.php | 27 ------------------- lib/log/errorhandler.php | 56 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 58 insertions(+), 30 deletions(-) create mode 100644 lib/log/errorhandler.php diff --git a/lib/base.php b/lib/base.php index af54f43915..033af32f1a 100644 --- a/lib/base.php +++ b/lib/base.php @@ -433,9 +433,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/legacy/log.php b/lib/legacy/log.php index 7802ead241..027cb89e97 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 0000000000..2a57cbc594 --- /dev/null +++ b/lib/log/errorhandler.php @@ -0,0 +1,56 @@ + + * 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) { + //ob_end_clean(); + $msg = $error['message'] . ' at ' . $error['file'] . '#' . $error['line']; + self::$logger->critical($msg, array('app' => 'PHP')); + } else { + return true; + } + } + + // 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')); + + } +} From b8a7e9730159f66d86e2b09f80c7c420b479646b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 5 Jul 2013 21:42:37 +0200 Subject: [PATCH 057/108] Add comment to column definition --- lib/db/mdb2schemareader.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index 702482b569..c506aa2652 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -134,6 +134,10 @@ class OC_DB_MDB2SchemaReader { $default = (string)$child; $options['default'] = $default; break; + case 'comments': + $comment = (string)$child; + $options['comment'] = $comment; + break; default: throw new DomainException('Unknown element: '.$child->getName()); From ab2037ab5d215220c7edbd0685f4f3b25d523258 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 5 Jul 2013 22:05:16 +0200 Subject: [PATCH 058/108] Only change integer type when the length is set --- lib/db/mdb2schemareader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index c506aa2652..4dc1fd4616 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -156,7 +156,7 @@ class OC_DB_MDB2SchemaReader { unset($options['default']); } } - if ($type == 'integer') { + if ($type == 'integer' && isset($options['length'])) { $length = $options['length']; if ($length < 4) { $type = 'smallint'; From 4a6803ef9d4d1527f01fe687f8fa701efe5386dd Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Mon, 8 Jul 2013 18:26:11 +0200 Subject: [PATCH 059/108] Check if logger is set, also no need to return true --- lib/log/errorhandler.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/log/errorhandler.php b/lib/log/errorhandler.php index 2a57cbc594..69cb960de9 100644 --- a/lib/log/errorhandler.php +++ b/lib/log/errorhandler.php @@ -29,12 +29,10 @@ class ErrorHandler { //Fatal errors handler public static function onShutdown() { $error = error_get_last(); - if($error) { + if($error && self::$logger) { //ob_end_clean(); $msg = $error['message'] . ' at ' . $error['file'] . '#' . $error['line']; self::$logger->critical($msg, array('app' => 'PHP')); - } else { - return true; } } From 583addaea172dfbd57ac98a701fb6ff85981f0ed Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 13 Jul 2013 02:07:35 +0200 Subject: [PATCH 060/108] [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 1 + apps/files/l10n/zh_TW.php | 8 ++++++ core/l10n/zh_TW.php | 5 ++++ l10n/af_ZA/core.po | 8 +++--- l10n/af_ZA/lib.po | 12 ++++----- l10n/ar/core.po | 4 +-- l10n/ar/files.po | 24 ++++++++--------- l10n/ar/files_external.po | 4 +-- l10n/ar/files_sharing.po | 4 +-- l10n/ar/files_trashbin.po | 4 +-- l10n/ar/lib.po | 12 ++++----- l10n/ar/settings.po | 4 +-- l10n/ar/user_ldap.po | 4 +-- l10n/bg_BG/core.po | 4 +-- l10n/bg_BG/files.po | 24 ++++++++--------- l10n/bg_BG/files_external.po | 4 +-- l10n/bg_BG/files_sharing.po | 4 +-- l10n/bg_BG/files_trashbin.po | 4 +-- l10n/bg_BG/lib.po | 12 ++++----- l10n/bg_BG/settings.po | 4 +-- l10n/bg_BG/user_ldap.po | 4 +-- l10n/bn_BD/core.po | 4 +-- l10n/bn_BD/files.po | 24 ++++++++--------- l10n/bn_BD/files_external.po | 4 +-- l10n/bn_BD/files_sharing.po | 4 +-- l10n/bn_BD/files_trashbin.po | 4 +-- l10n/bn_BD/lib.po | 12 ++++----- l10n/bn_BD/settings.po | 4 +-- l10n/bn_BD/user_ldap.po | 4 +-- l10n/bs/core.po | 4 +-- l10n/bs/files.po | 24 ++++++++--------- l10n/bs/files_trashbin.po | 4 +-- l10n/ca/core.po | 4 +-- l10n/ca/files.po | 28 +++++++++---------- l10n/ca/files_external.po | 4 +-- l10n/ca/files_sharing.po | 4 +-- l10n/ca/files_trashbin.po | 4 +-- l10n/ca/lib.po | 12 ++++----- l10n/ca/settings.po | 8 +++--- l10n/ca/user_ldap.po | 4 +-- l10n/cs_CZ/core.po | 4 +-- l10n/cs_CZ/files.po | 24 ++++++++--------- l10n/cs_CZ/files_external.po | 4 +-- l10n/cs_CZ/files_sharing.po | 4 +-- l10n/cs_CZ/files_trashbin.po | 4 +-- l10n/cs_CZ/lib.po | 12 ++++----- l10n/cs_CZ/settings.po | 4 +-- l10n/cs_CZ/user_ldap.po | 4 +-- l10n/cy_GB/core.po | 4 +-- l10n/cy_GB/files.po | 24 ++++++++--------- l10n/cy_GB/files_external.po | 4 +-- l10n/cy_GB/files_sharing.po | 4 +-- l10n/cy_GB/files_trashbin.po | 4 +-- l10n/cy_GB/lib.po | 12 ++++----- l10n/cy_GB/settings.po | 4 +-- l10n/cy_GB/user_ldap.po | 4 +-- l10n/da/core.po | 4 +-- l10n/da/files.po | 24 ++++++++--------- l10n/da/files_external.po | 4 +-- l10n/da/files_sharing.po | 4 +-- l10n/da/files_trashbin.po | 4 +-- l10n/da/lib.po | 12 ++++----- l10n/da/settings.po | 4 +-- l10n/da/user_ldap.po | 4 +-- l10n/de/core.po | 4 +-- l10n/de/files.po | 24 ++++++++--------- l10n/de/files_external.po | 4 +-- l10n/de/files_sharing.po | 4 +-- l10n/de/files_trashbin.po | 4 +-- l10n/de/lib.po | 12 ++++----- l10n/de/settings.po | 4 +-- l10n/de/user_ldap.po | 4 +-- l10n/de_DE/core.po | 4 +-- l10n/de_DE/files.po | 24 ++++++++--------- l10n/de_DE/files_external.po | 4 +-- l10n/de_DE/files_sharing.po | 4 +-- l10n/de_DE/files_trashbin.po | 4 +-- l10n/de_DE/lib.po | 12 ++++----- l10n/de_DE/settings.po | 4 +-- l10n/de_DE/user_ldap.po | 4 +-- l10n/el/core.po | 4 +-- l10n/el/files.po | 24 ++++++++--------- l10n/el/files_external.po | 4 +-- l10n/el/files_sharing.po | 4 +-- l10n/el/files_trashbin.po | 4 +-- l10n/el/lib.po | 12 ++++----- l10n/el/settings.po | 4 +-- l10n/el/user_ldap.po | 4 +-- l10n/en@pirate/files.po | 24 ++++++++--------- l10n/en@pirate/files_sharing.po | 4 +-- l10n/eo/core.po | 4 +-- l10n/eo/files.po | 24 ++++++++--------- l10n/eo/files_external.po | 4 +-- l10n/eo/files_sharing.po | 4 +-- l10n/eo/files_trashbin.po | 4 +-- l10n/eo/lib.po | 12 ++++----- l10n/eo/settings.po | 4 +-- l10n/eo/user_ldap.po | 4 +-- l10n/es/core.po | 4 +-- l10n/es/files.po | 24 ++++++++--------- l10n/es/files_external.po | 4 +-- l10n/es/files_sharing.po | 4 +-- l10n/es/files_trashbin.po | 4 +-- l10n/es/lib.po | 12 ++++----- l10n/es/settings.po | 4 +-- l10n/es/user_ldap.po | 4 +-- l10n/es_AR/core.po | 4 +-- l10n/es_AR/files.po | 24 ++++++++--------- l10n/es_AR/files_external.po | 4 +-- l10n/es_AR/files_sharing.po | 4 +-- l10n/es_AR/files_trashbin.po | 4 +-- l10n/es_AR/lib.po | 12 ++++----- l10n/es_AR/settings.po | 4 +-- l10n/es_AR/user_ldap.po | 4 +-- l10n/et_EE/core.po | 4 +-- l10n/et_EE/files.po | 24 ++++++++--------- l10n/et_EE/files_external.po | 4 +-- l10n/et_EE/files_sharing.po | 4 +-- l10n/et_EE/files_trashbin.po | 4 +-- l10n/et_EE/lib.po | 12 ++++----- l10n/et_EE/settings.po | 4 +-- l10n/et_EE/user_ldap.po | 4 +-- l10n/eu/core.po | 4 +-- l10n/eu/files.po | 24 ++++++++--------- l10n/eu/files_external.po | 4 +-- l10n/eu/files_sharing.po | 4 +-- l10n/eu/files_trashbin.po | 4 +-- l10n/eu/lib.po | 12 ++++----- l10n/eu/settings.po | 4 +-- l10n/eu/user_ldap.po | 4 +-- l10n/fa/core.po | 4 +-- l10n/fa/files.po | 24 ++++++++--------- l10n/fa/files_external.po | 4 +-- l10n/fa/files_sharing.po | 4 +-- l10n/fa/files_trashbin.po | 4 +-- l10n/fa/lib.po | 12 ++++----- l10n/fa/settings.po | 4 +-- l10n/fa/user_ldap.po | 4 +-- l10n/fi_FI/core.po | 4 +-- l10n/fi_FI/files.po | 24 ++++++++--------- l10n/fi_FI/files_external.po | 4 +-- l10n/fi_FI/files_sharing.po | 4 +-- l10n/fi_FI/files_trashbin.po | 4 +-- l10n/fi_FI/lib.po | 12 ++++----- l10n/fi_FI/settings.po | 4 +-- l10n/fi_FI/user_ldap.po | 4 +-- l10n/fr/core.po | 4 +-- l10n/fr/files.po | 24 ++++++++--------- l10n/fr/files_external.po | 4 +-- l10n/fr/files_sharing.po | 4 +-- l10n/fr/files_trashbin.po | 4 +-- l10n/fr/lib.po | 12 ++++----- l10n/fr/settings.po | 4 +-- l10n/fr/user_ldap.po | 4 +-- l10n/gl/core.po | 4 +-- l10n/gl/files.po | 24 ++++++++--------- l10n/gl/files_external.po | 4 +-- l10n/gl/files_sharing.po | 4 +-- l10n/gl/files_trashbin.po | 4 +-- l10n/gl/lib.po | 12 ++++----- l10n/gl/settings.po | 4 +-- l10n/gl/user_ldap.po | 4 +-- l10n/he/core.po | 4 +-- l10n/he/files.po | 24 ++++++++--------- l10n/he/files_external.po | 4 +-- l10n/he/files_sharing.po | 4 +-- l10n/he/files_trashbin.po | 4 +-- l10n/he/lib.po | 12 ++++----- l10n/he/settings.po | 4 +-- l10n/he/user_ldap.po | 4 +-- l10n/hi/core.po | 4 +-- l10n/hi/files.po | 24 ++++++++--------- l10n/hi/files_trashbin.po | 4 +-- l10n/hi/lib.po | 12 ++++----- l10n/hi/settings.po | 4 +-- l10n/hi/user_ldap.po | 4 +-- l10n/hr/core.po | 4 +-- l10n/hr/files.po | 24 ++++++++--------- l10n/hr/files_external.po | 4 +-- l10n/hr/files_sharing.po | 4 +-- l10n/hr/files_trashbin.po | 4 +-- l10n/hr/lib.po | 12 ++++----- l10n/hr/settings.po | 4 +-- l10n/hr/user_ldap.po | 4 +-- l10n/hu_HU/core.po | 4 +-- l10n/hu_HU/files.po | 24 ++++++++--------- l10n/hu_HU/files_external.po | 4 +-- l10n/hu_HU/files_sharing.po | 4 +-- l10n/hu_HU/files_trashbin.po | 4 +-- l10n/hu_HU/lib.po | 12 ++++----- l10n/hu_HU/settings.po | 4 +-- l10n/hu_HU/user_ldap.po | 4 +-- l10n/hy/files.po | 24 ++++++++--------- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 +-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 +-- l10n/ia/core.po | 4 +-- l10n/ia/files.po | 24 ++++++++--------- l10n/ia/files_external.po | 4 +-- l10n/ia/files_sharing.po | 4 +-- l10n/ia/files_trashbin.po | 4 +-- l10n/ia/lib.po | 12 ++++----- l10n/ia/settings.po | 4 +-- l10n/ia/user_ldap.po | 4 +-- l10n/id/core.po | 4 +-- l10n/id/files.po | 24 ++++++++--------- l10n/id/files_external.po | 4 +-- l10n/id/files_sharing.po | 4 +-- l10n/id/files_trashbin.po | 4 +-- l10n/id/lib.po | 12 ++++----- l10n/id/settings.po | 4 +-- l10n/id/user_ldap.po | 4 +-- l10n/is/core.po | 4 +-- l10n/is/files.po | 24 ++++++++--------- l10n/is/files_external.po | 4 +-- l10n/is/files_sharing.po | 4 +-- l10n/is/files_trashbin.po | 4 +-- l10n/is/lib.po | 12 ++++----- l10n/is/settings.po | 4 +-- l10n/is/user_ldap.po | 4 +-- l10n/it/core.po | 4 +-- l10n/it/files.po | 24 ++++++++--------- l10n/it/files_external.po | 4 +-- l10n/it/files_sharing.po | 4 +-- l10n/it/files_trashbin.po | 4 +-- l10n/it/lib.po | 12 ++++----- l10n/it/settings.po | 4 +-- l10n/it/user_ldap.po | 4 +-- l10n/ja_JP/core.po | 4 +-- l10n/ja_JP/files.po | 24 ++++++++--------- l10n/ja_JP/files_external.po | 4 +-- l10n/ja_JP/files_sharing.po | 4 +-- l10n/ja_JP/files_trashbin.po | 4 +-- l10n/ja_JP/lib.po | 12 ++++----- l10n/ja_JP/settings.po | 4 +-- l10n/ja_JP/user_ldap.po | 4 +-- l10n/ka/files.po | 24 ++++++++--------- l10n/ka/files_sharing.po | 4 +-- l10n/ka_GE/core.po | 4 +-- l10n/ka_GE/files.po | 24 ++++++++--------- l10n/ka_GE/files_external.po | 4 +-- l10n/ka_GE/files_sharing.po | 4 +-- l10n/ka_GE/files_trashbin.po | 4 +-- l10n/ka_GE/lib.po | 12 ++++----- l10n/ka_GE/settings.po | 4 +-- l10n/ka_GE/user_ldap.po | 4 +-- l10n/ko/core.po | 4 +-- l10n/ko/files.po | 24 ++++++++--------- l10n/ko/files_external.po | 4 +-- l10n/ko/files_sharing.po | 4 +-- l10n/ko/files_trashbin.po | 4 +-- l10n/ko/lib.po | 12 ++++----- l10n/ko/settings.po | 4 +-- l10n/ko/user_ldap.po | 4 +-- l10n/ku_IQ/core.po | 4 +-- l10n/ku_IQ/files.po | 24 ++++++++--------- l10n/ku_IQ/files_sharing.po | 4 +-- l10n/ku_IQ/files_trashbin.po | 4 +-- l10n/ku_IQ/lib.po | 12 ++++----- l10n/ku_IQ/settings.po | 4 +-- l10n/ku_IQ/user_ldap.po | 4 +-- l10n/lb/core.po | 4 +-- l10n/lb/files.po | 24 ++++++++--------- l10n/lb/files_external.po | 4 +-- l10n/lb/files_sharing.po | 4 +-- l10n/lb/files_trashbin.po | 4 +-- l10n/lb/lib.po | 12 ++++----- l10n/lb/settings.po | 4 +-- l10n/lb/user_ldap.po | 4 +-- l10n/lt_LT/core.po | 4 +-- l10n/lt_LT/files.po | 24 ++++++++--------- l10n/lt_LT/files_external.po | 4 +-- l10n/lt_LT/files_sharing.po | 4 +-- l10n/lt_LT/files_trashbin.po | 4 +-- l10n/lt_LT/lib.po | 12 ++++----- l10n/lt_LT/settings.po | 4 +-- l10n/lt_LT/user_ldap.po | 4 +-- l10n/lv/core.po | 4 +-- l10n/lv/files.po | 24 ++++++++--------- l10n/lv/files_external.po | 4 +-- l10n/lv/files_sharing.po | 4 +-- l10n/lv/files_trashbin.po | 4 +-- l10n/lv/lib.po | 12 ++++----- l10n/lv/settings.po | 4 +-- l10n/lv/user_ldap.po | 4 +-- l10n/mk/core.po | 4 +-- l10n/mk/files.po | 24 ++++++++--------- l10n/mk/files_external.po | 4 +-- l10n/mk/files_sharing.po | 4 +-- l10n/mk/files_trashbin.po | 4 +-- l10n/mk/lib.po | 12 ++++----- l10n/mk/settings.po | 4 +-- l10n/mk/user_ldap.po | 4 +-- l10n/ms_MY/core.po | 4 +-- l10n/ms_MY/files.po | 24 ++++++++--------- l10n/ms_MY/files_external.po | 4 +-- l10n/ms_MY/files_sharing.po | 4 +-- l10n/ms_MY/files_trashbin.po | 4 +-- l10n/ms_MY/lib.po | 12 ++++----- l10n/ms_MY/settings.po | 4 +-- l10n/ms_MY/user_ldap.po | 4 +-- l10n/my_MM/core.po | 4 +-- l10n/my_MM/files.po | 24 ++++++++--------- l10n/my_MM/files_sharing.po | 4 +-- l10n/my_MM/lib.po | 12 ++++----- l10n/nb_NO/core.po | 4 +-- l10n/nb_NO/files.po | 24 ++++++++--------- l10n/nb_NO/files_external.po | 4 +-- l10n/nb_NO/files_sharing.po | 4 +-- l10n/nb_NO/files_trashbin.po | 4 +-- l10n/nb_NO/lib.po | 12 ++++----- l10n/nb_NO/settings.po | 4 +-- l10n/nb_NO/user_ldap.po | 4 +-- l10n/nl/core.po | 4 +-- l10n/nl/files.po | 24 ++++++++--------- l10n/nl/files_external.po | 4 +-- l10n/nl/files_sharing.po | 4 +-- l10n/nl/files_trashbin.po | 4 +-- l10n/nl/lib.po | 12 ++++----- l10n/nl/settings.po | 4 +-- l10n/nl/user_ldap.po | 4 +-- l10n/nn_NO/core.po | 4 +-- l10n/nn_NO/files.po | 24 ++++++++--------- l10n/nn_NO/files_external.po | 4 +-- l10n/nn_NO/files_sharing.po | 4 +-- l10n/nn_NO/files_trashbin.po | 4 +-- l10n/nn_NO/lib.po | 12 ++++----- l10n/nn_NO/settings.po | 4 +-- l10n/nn_NO/user_ldap.po | 4 +-- l10n/oc/core.po | 4 +-- l10n/oc/files.po | 24 ++++++++--------- l10n/oc/files_external.po | 4 +-- l10n/oc/files_sharing.po | 4 +-- l10n/oc/files_trashbin.po | 4 +-- l10n/oc/lib.po | 12 ++++----- l10n/oc/settings.po | 4 +-- l10n/oc/user_ldap.po | 4 +-- l10n/pl/core.po | 4 +-- l10n/pl/files.po | 24 ++++++++--------- l10n/pl/files_external.po | 4 +-- l10n/pl/files_sharing.po | 4 +-- l10n/pl/files_trashbin.po | 4 +-- l10n/pl/lib.po | 12 ++++----- l10n/pl/settings.po | 4 +-- l10n/pl/user_ldap.po | 4 +-- l10n/pt_BR/core.po | 4 +-- l10n/pt_BR/files.po | 24 ++++++++--------- l10n/pt_BR/files_external.po | 4 +-- l10n/pt_BR/files_sharing.po | 4 +-- l10n/pt_BR/files_trashbin.po | 4 +-- l10n/pt_BR/lib.po | 12 ++++----- l10n/pt_BR/settings.po | 4 +-- l10n/pt_BR/user_ldap.po | 4 +-- l10n/pt_PT/core.po | 4 +-- l10n/pt_PT/files.po | 24 ++++++++--------- l10n/pt_PT/files_external.po | 4 +-- l10n/pt_PT/files_sharing.po | 4 +-- l10n/pt_PT/files_trashbin.po | 4 +-- l10n/pt_PT/lib.po | 12 ++++----- l10n/pt_PT/settings.po | 4 +-- l10n/pt_PT/user_ldap.po | 4 +-- l10n/ro/core.po | 4 +-- l10n/ro/files.po | 24 ++++++++--------- l10n/ro/files_external.po | 4 +-- l10n/ro/files_sharing.po | 4 +-- l10n/ro/files_trashbin.po | 4 +-- l10n/ro/lib.po | 12 ++++----- l10n/ro/settings.po | 4 +-- l10n/ro/user_ldap.po | 4 +-- l10n/ru/core.po | 4 +-- l10n/ru/files.po | 24 ++++++++--------- l10n/ru/files_external.po | 4 +-- l10n/ru/files_sharing.po | 4 +-- l10n/ru/files_trashbin.po | 4 +-- l10n/ru/lib.po | 12 ++++----- l10n/ru/settings.po | 4 +-- l10n/ru/user_ldap.po | 4 +-- l10n/si_LK/core.po | 4 +-- l10n/si_LK/files.po | 24 ++++++++--------- l10n/si_LK/files_external.po | 4 +-- l10n/si_LK/files_sharing.po | 4 +-- l10n/si_LK/files_trashbin.po | 4 +-- l10n/si_LK/lib.po | 12 ++++----- l10n/si_LK/settings.po | 4 +-- l10n/si_LK/user_ldap.po | 4 +-- l10n/sk_SK/core.po | 4 +-- l10n/sk_SK/files.po | 24 ++++++++--------- l10n/sk_SK/files_external.po | 4 +-- l10n/sk_SK/files_sharing.po | 4 +-- l10n/sk_SK/files_trashbin.po | 4 +-- l10n/sk_SK/lib.po | 12 ++++----- l10n/sk_SK/settings.po | 4 +-- l10n/sk_SK/user_ldap.po | 4 +-- l10n/sl/core.po | 4 +-- l10n/sl/files.po | 24 ++++++++--------- l10n/sl/files_external.po | 4 +-- l10n/sl/files_sharing.po | 4 +-- l10n/sl/files_trashbin.po | 4 +-- l10n/sl/lib.po | 12 ++++----- l10n/sl/settings.po | 4 +-- l10n/sl/user_ldap.po | 4 +-- l10n/sq/core.po | 4 +-- l10n/sq/files.po | 24 ++++++++--------- l10n/sq/files_external.po | 4 +-- l10n/sq/files_sharing.po | 4 +-- l10n/sq/files_trashbin.po | 4 +-- l10n/sq/lib.po | 12 ++++----- l10n/sq/settings.po | 4 +-- l10n/sq/user_ldap.po | 4 +-- l10n/sr/core.po | 4 +-- l10n/sr/files.po | 24 ++++++++--------- l10n/sr/files_external.po | 4 +-- l10n/sr/files_sharing.po | 4 +-- l10n/sr/files_trashbin.po | 4 +-- l10n/sr/lib.po | 12 ++++----- l10n/sr/settings.po | 4 +-- l10n/sr/user_ldap.po | 4 +-- l10n/sr@latin/core.po | 4 +-- l10n/sr@latin/files.po | 24 ++++++++--------- l10n/sr@latin/files_external.po | 4 +-- l10n/sr@latin/files_sharing.po | 4 +-- l10n/sr@latin/files_trashbin.po | 4 +-- l10n/sr@latin/lib.po | 12 ++++----- l10n/sr@latin/settings.po | 4 +-- l10n/sv/core.po | 4 +-- l10n/sv/files.po | 24 ++++++++--------- l10n/sv/files_external.po | 4 +-- l10n/sv/files_sharing.po | 4 +-- l10n/sv/files_trashbin.po | 4 +-- l10n/sv/lib.po | 12 ++++----- l10n/sv/settings.po | 4 +-- l10n/sv/user_ldap.po | 4 +-- l10n/ta_LK/core.po | 4 +-- l10n/ta_LK/files.po | 24 ++++++++--------- l10n/ta_LK/files_external.po | 4 +-- l10n/ta_LK/files_sharing.po | 4 +-- l10n/ta_LK/files_trashbin.po | 4 +-- l10n/ta_LK/lib.po | 12 ++++----- l10n/ta_LK/settings.po | 4 +-- l10n/ta_LK/user_ldap.po | 4 +-- l10n/te/core.po | 4 +-- l10n/te/files.po | 24 ++++++++--------- l10n/te/files_external.po | 4 +-- l10n/te/files_trashbin.po | 4 +-- l10n/te/lib.po | 12 ++++----- l10n/te/settings.po | 4 +-- l10n/te/user_ldap.po | 4 +-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 22 +++++++-------- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 10 +++---- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +-- l10n/th_TH/files.po | 24 ++++++++--------- l10n/th_TH/files_external.po | 4 +-- l10n/th_TH/files_sharing.po | 4 +-- l10n/th_TH/files_trashbin.po | 4 +-- l10n/th_TH/lib.po | 12 ++++----- l10n/th_TH/settings.po | 4 +-- l10n/th_TH/user_ldap.po | 4 +-- l10n/tr/core.po | 4 +-- l10n/tr/files.po | 24 ++++++++--------- l10n/tr/files_external.po | 4 +-- l10n/tr/files_sharing.po | 4 +-- l10n/tr/files_trashbin.po | 4 +-- l10n/tr/lib.po | 12 ++++----- l10n/tr/settings.po | 4 +-- l10n/tr/user_ldap.po | 4 +-- l10n/ug/core.po | 4 +-- l10n/ug/files.po | 24 ++++++++--------- l10n/ug/files_external.po | 4 +-- l10n/ug/files_sharing.po | 4 +-- l10n/ug/files_trashbin.po | 4 +-- l10n/ug/lib.po | 12 ++++----- l10n/ug/settings.po | 4 +-- l10n/ug/user_ldap.po | 4 +-- l10n/uk/core.po | 4 +-- l10n/uk/files.po | 24 ++++++++--------- l10n/uk/files_external.po | 4 +-- l10n/uk/files_sharing.po | 4 +-- l10n/uk/files_trashbin.po | 4 +-- l10n/uk/lib.po | 12 ++++----- l10n/uk/settings.po | 4 +-- l10n/uk/user_ldap.po | 4 +-- l10n/ur_PK/core.po | 4 +-- l10n/ur_PK/files.po | 24 ++++++++--------- l10n/ur_PK/files_trashbin.po | 4 +-- l10n/ur_PK/lib.po | 12 ++++----- l10n/ur_PK/settings.po | 4 +-- l10n/ur_PK/user_ldap.po | 4 +-- l10n/vi/core.po | 4 +-- l10n/vi/files.po | 24 ++++++++--------- l10n/vi/files_external.po | 4 +-- l10n/vi/files_sharing.po | 4 +-- l10n/vi/files_trashbin.po | 4 +-- l10n/vi/lib.po | 12 ++++----- l10n/vi/settings.po | 4 +-- l10n/vi/user_ldap.po | 4 +-- l10n/zh_CN.GB2312/core.po | 4 +-- l10n/zh_CN.GB2312/files.po | 24 ++++++++--------- l10n/zh_CN.GB2312/files_external.po | 4 +-- l10n/zh_CN.GB2312/files_sharing.po | 4 +-- l10n/zh_CN.GB2312/files_trashbin.po | 4 +-- l10n/zh_CN.GB2312/lib.po | 12 ++++----- l10n/zh_CN.GB2312/settings.po | 4 +-- l10n/zh_CN.GB2312/user_ldap.po | 4 +-- l10n/zh_CN/core.po | 4 +-- l10n/zh_CN/files.po | 24 ++++++++--------- l10n/zh_CN/files_external.po | 4 +-- l10n/zh_CN/files_sharing.po | 4 +-- l10n/zh_CN/files_trashbin.po | 4 +-- l10n/zh_CN/lib.po | 12 ++++----- l10n/zh_CN/settings.po | 4 +-- l10n/zh_CN/user_ldap.po | 4 +-- l10n/zh_HK/core.po | 4 +-- l10n/zh_HK/files.po | 24 ++++++++--------- l10n/zh_HK/files_external.po | 4 +-- l10n/zh_HK/files_sharing.po | 4 +-- l10n/zh_HK/files_trashbin.po | 4 +-- l10n/zh_HK/lib.po | 12 ++++----- l10n/zh_HK/settings.po | 4 +-- l10n/zh_HK/user_ldap.po | 4 +-- l10n/zh_TW/core.po | 16 +++++------ l10n/zh_TW/files.po | 42 ++++++++++++++--------------- l10n/zh_TW/files_external.po | 4 +-- l10n/zh_TW/files_sharing.po | 4 +-- l10n/zh_TW/files_trashbin.po | 4 +-- l10n/zh_TW/lib.po | 12 ++++----- l10n/zh_TW/settings.po | 10 +++---- l10n/zh_TW/user_ldap.po | 4 +-- settings/l10n/ca.php | 1 + settings/l10n/zh_TW.php | 2 ++ 539 files changed, 2064 insertions(+), 2047 deletions(-) diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 8d5f69f331..51d450b4f6 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -68,6 +68,7 @@ "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/zh_TW.php b/apps/files/l10n/zh_TW.php index 59a332f628..6801b311ae 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -1,6 +1,8 @@ "無法移動 %s - 同名的檔案已經存在", "Could not move %s" => "無法移動 %s", +"Unable to set upload directory." => "無法設定上傳目錄。", +"Invalid Token" => "無效的 token", "No file was uploaded. Unknown error" => "沒有檔案被上傳。未知的錯誤。", "There is no error, the file uploaded with success" => "無錯誤,檔案上傳成功", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:", @@ -47,6 +49,7 @@ "{count} folders" => "{count} 個資料夾", "1 file" => "1 個檔案", "{count} files" => "{count} 個檔案", +"%s could not be renamed" => "無法重新命名 %s", "Upload" => "上傳", "File handling" => "檔案處理", "Maximum upload size" => "最大上傳檔案大小", @@ -65,10 +68,15 @@ "You don’t have write permissions here." => "您在這裡沒有編輯權。", "Nothing in here. Upload something!" => "這裡什麼也沒有,上傳一些東西吧!", "Download" => "下載", +"Size (MB)" => "大小 (MB)", "Unshare" => "取消共享", "Upload too large" => "上傳過大", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。", "Files are being scanned, please wait." => "正在掃描檔案,請稍等。", "Current scanning" => "目前掃描", +"directory" => "目錄", +"directories" => "目錄", +"file" => "檔案", +"files" => "檔案", "Upgrading filesystem cache..." => "正在升級檔案系統快取..." ); diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 4afa6ea116..4bec973946 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -1,4 +1,5 @@ "%s 與您分享了 %s", "Category type not provided." => "未提供分類類型。", "No category to add?" => "沒有可增加的分類?", "This category already exists: %s" => "分類已經存在: %s", @@ -61,6 +62,7 @@ "Share with link" => "使用連結分享", "Password protect" => "密碼保護", "Password" => "密碼", +"Allow Public Upload" => "允許任何人上傳", "Email link to person" => "將連結 email 給別人", "Send" => "寄出", "Set expiration date" => "設置到期日", @@ -89,6 +91,7 @@ "Request failed!
Did you make sure your email/username was right?" => "請求失敗!
您確定填入的電子郵件地址或是帳號名稱是正確的嗎?", "You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱。", "Username" => "使用者名稱", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "您的檔案已加密,如果您沒有設定還原金鑰,未來重設密碼後將無法取回您的資料。如果您不確定該怎麼做,請洽詢系統管理員後再繼續。您確定要現在繼續嗎?", "Yes, I really want to reset my password now" => "對,我現在想要重設我的密碼。", "Request reset" => "請求重設", "Your password was reset" => "您的密碼已重設", @@ -102,6 +105,7 @@ "Help" => "說明", "Access forbidden" => "存取被拒", "Cloud not found" => "未發現雲端", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "嗨,\n\n通知您,%s 與您分享了 %s 。\n看一下:%s", "Edit categories" => "編輯分類", "Add" => "增加", "Security Warning" => "安全性警告", @@ -131,6 +135,7 @@ "remember" => "記住", "Log in" => "登入", "Alternative Logins" => "替代登入方法", +"Hey there,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" => "嗨,

通知您,%s 與您分享了 %s ,
看一下吧", "prev" => "上一頁", "next" => "下一頁", "Updating ownCloud to version %s, this may take a while." => "正在將 Owncloud 升級至版本 %s ,這可能需要一點時間。" diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 0c02a04f26..95e4cf33ca 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-11 02:17+0200\n" -"PO-Revision-Date: 2013-07-11 00:12+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -366,14 +366,14 @@ msgstr "" msgid "Email sent" msgstr "" -#: js/update.js:14 +#: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." msgstr "" -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 64134f6a04..98aa423f57 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-11 02:17+0200\n" -"PO-Revision-Date: 2013-07-11 00:12+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index af2effa6b4..1b3a380994 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ar/files.po index 9103fa74d6..0b982190ea 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "إلغاء" msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "قيد الانتظار" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} موجود مسبقا" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "استبدال" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "اقترح إسم" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "إلغاء" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "استبدل {new_name} بـ {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "تراجع" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "جاري تنفيذ عملية الحذف" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "جاري رفع 1 ملف" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 650c718379..7e00c0ddb6 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 99f8f315eb..02827634ef 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 6b632f6d55..3537fea4a4 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 f9fc22e066..16b87c0e62 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "الأمر المخالف كان : \"%s\", اسم المستخدم : %s, msgid "PostgreSQL username and/or password not valid" msgstr "اسم المستخدم / أو كلمة المرور الخاصة بـPostgreSQL غير صحيحة" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "اعداد اسم مستخدم للمدير" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "اعداد كلمة مرور للمدير" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "الرجاء التحقق من دليل التنصيب." diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 6307029891..288874790f 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 5efebc6376..fb96c4cd0e 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index af986a817e..76c3f8f0a3 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/bg_BG/files.po index 178bd6c527..10ae3154ff 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Изтриване" msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Чакащо" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "препокриване" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "отказ" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "възтановяване" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index 4239d12fa7..9d5782414f 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 a0e1e71e99..7680272362 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 0181647ec6..40be643453 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Димитър Кръстев \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 f46f423e94..2e7d5180a0 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Проблемната команда беше: \"%s\", име: %s, па msgid "PostgreSQL username and/or password not valid" msgstr "Невалидно PostgreSQL потребителско име и/или парола" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Въведете потребителско име за администратор." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Въведете парола за администратор." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Моля направете повторна справка с ръководството за инсталиране." diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index f268ddaa24..daaa6e37d7 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 6c252886c3..1c97c997b7 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 98384e072d..4a4e564466 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/bn_BD/files.po index d3ceea9c0b..0021735e65 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "মুছে" msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "মুলতুবি" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "প্রতিস্থাপন" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "নাম সুপারিশ করুন" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "বাতিল" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "১টি ফাইল আপলোড করা হচ্ছে" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 0aebc9df97..f9b529eb83 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 9c6a3946ff..a05ce26406 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 805279de4e..d01c8947b4 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 eed4c42f1d..6c2e1fc6a7 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 14f29efbc8..e3817b0f02 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 e58d38f86b..4730166a47 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 aeb3ac7488..417fd5a160 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 3d605bb961..ae7816b5ee 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 44a0ec0e07..556b5a1663 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 ae706ad184..addac59e95 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ca/files.po index 6549abfa9d..74afa9a7cf 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "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:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendent" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "substitueix" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugereix un nom" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "cancel·la" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "s'ha substituït {old_name} per {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "desfés" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "executa d'operació d'esborrar" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fitxer pujant" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fitxers pujant" @@ -309,7 +309,7 @@ msgstr "Baixa" #: templates/index.php:80 msgid "Size (MB)" -msgstr "" +msgstr "Mida (MB)" #: templates/index.php:87 templates/index.php:88 msgid "Unshare" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 6360e830fe..bbd3104a0a 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index f0a7c09ddd..3cecda9ed5 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 8ba0f8a164..c3e2976e01 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 be1f51f603..30a96e77a1 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "L'ordre en conflicte és: \"%s\", nom: %s, contrasenya: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nom d'usuari i/o contrasenya PostgreSQL no vàlids" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Establiu un nom d'usuari per l'administrador." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Establiu una contrasenya per l'administrador." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Comproveu les guies d'instal·lació." diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 505ffe95fc..b32262b255 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -458,7 +458,7 @@ msgstr "WebDAV" msgid "" "Use this address to access your Files via WebDAV" -msgstr "" +msgstr "Useu aquesta adreça per accedir als fitxers via WebDAV" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 4bf826ca2e..98bbb53587 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index efc40083ad..3c3d3ab5a6 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/cs_CZ/files.po index 586f4c6893..362824c7da 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -130,43 +130,43 @@ msgstr "Smazat" msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Nevyřízené" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "nahradit" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "navrhnout název" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "zrušit" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "nahrazeno {new_name} s {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "zpět" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "provést smazání" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "odesílá se 1 soubor" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "soubory se odesílají" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index e87e5e2942..3c8f39dc06 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 ab34caaac9..7bc8878096 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 256f05e1bb..a85ca2dc3b 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 e3eb013de7..f5d25f76c4 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Podezřelý příkaz byl: \"%s\", jméno: %s, heslo: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Uživatelské jméno, či heslo PostgreSQL není platné" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Zadejte uživatelské jméno správce." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Zadejte heslo správce." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV je rozbité." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Zkonzultujte, prosím, průvodce instalací." diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 498fb536c8..a04371f791 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 1a74ccd979..8bc4246b68 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Tomáš Chvátal \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 7c73a8e093..d01a689877 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/cy_GB/files.po index f0063ef7c2..2f93ea1414 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Dileu" msgid "Rename" msgstr "Ailenwi" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "I ddod" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} yn bodoli'n barod" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "amnewid" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "awgrymu enw" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "diddymu" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "newidiwyd {new_name} yn lle {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "dadwneud" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "cyflawni gweithred dileu" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ffeil yn llwytho i fyny" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ffeiliau'n llwytho i fyny" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index cbb907712d..ab93f44605 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 3606f12436..1816dc611e 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 237d5cdaa2..617f09716f 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: ubuntucymraeg \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 af17e49d3b..a2949ef000 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Enw a/neu gyfrinair PostgreSQL annilys" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Creu enw defnyddiwr i'r gweinyddwr." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Gosod cyfrinair y gweinyddwr." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Gwiriwch y canllawiau gosod eto." diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index f71459f253..637e780957 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 f59f3139e1..c8119b3a11 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 8018a64188..436eb009d0 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/da/files.po index dd48bebdaa..e5368760e8 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "Slet" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Afventer" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "erstat" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "fortryd" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "udfør slet operation" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fil uploades" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "uploader filer" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index be02e8885c..88ed7b9960 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 305d4136ea..f5c6efa8b6 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 b917370f53..8d047965d6 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 b0ebbec167..2a5a514e09 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Fejlende kommando var: \"%s\", navn: %s, password: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL brugernavn og/eller kodeord er ikke gyldigt." -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Angiv et admin brugernavn." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Angiv et admin kodeord." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Dobbelttjek venligst installations vejledningerne." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index b169fa1287..037b13b192 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Morten Juhl-Johansen Zölde-Fejér \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 75e3c7f3e6..fb24bf6c92 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 9c5eefb38d..82337bd8ce 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index bca4700f93..97d898b905 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: kabum \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -132,43 +132,43 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "Namen vorschlagen" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} ersetzt durch {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Dateien werden hoch geladen" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index c069d5c231..a0699b5f97 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index ffe2044d04..c1b07907a4 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 5f87adfdd2..03ace32021 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 19782468c9..0acd18e7c4 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -172,21 +172,21 @@ msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Setze Administrator Benutzername." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfe die Installationsanleitungen." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 4d29b8a797..db805cd95e 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index f65199ac00..e185ad93c6 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 72ecbddb02..b0ebe13769 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 57ffe63d6b..cb2ea625ac 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: kabum \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -134,43 +134,43 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "Namen vorschlagen" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Löschvorgang ausführen" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 Datei wird hochgeladen" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Dateien werden hoch geladen" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 77e0469748..f142a6f3e0 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 99db3ef364..08c9c627b2 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: JamFX \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 604321eb6a..e2af84a50b 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 0a0d78d4b9..643bc5d1d4 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Setze Administrator Benutzername." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 93f4758f28..2acd6a760e 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: kabum \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 830620f565..e2a410ed79 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 4fea31167a..fbf4187f43 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/el/files.po index 24d7d367d0..b1daa990f7 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "Διαγραφή" msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Εκκρεμεί" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "αντικατέστησε" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "συνιστώμενο όνομα" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "ακύρωση" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "αντικαταστάθηκε το {new_name} με {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "εκτέλεση της διαδικασίας διαγραφής" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 αρχείο ανεβαίνει" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "αρχεία ανεβαίνουν" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index 9ef727bc05..c6ef3d731c 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: KAT.RAT12 \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 34970294a1..3b9c72488b 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 831f518be8..f4b95905ab 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 b8a74f9795..01e9096051 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\", ονο msgid "PostgreSQL username and/or password not valid" msgstr "Μη έγκυρος χρήστης και/ή συνθηματικό της PostgreSQL" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Εισάγετε όνομα χρήστη διαχειριστή." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Εισάγετε συνθηματικό διαχειριστή." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." diff --git a/l10n/el/settings.po b/l10n/el/settings.po index b2d34a5264..7d4b3acec4 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 9e21466688..b6e8d46ada 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 51d54b075b..14f884eeb1 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 4eaa3eee52..0068215337 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 d925429834..a99f6a683a 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/eo/files.po index f106798fd6..cc4ac7a47f 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "Forigi" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Traktotaj" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugesti nomon" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "malfari" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "plenumi forigan operacion" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 dosiero estas alŝutata" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "dosieroj estas alŝutataj" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 6f26c73e6c..36cb858464 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 0f4dab1784..e773f92704 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 52bd607de4..d9e9dab6fc 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 9e85d9f248..c28dc99bd1 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "La uzantonomo de PostgreSQL aŭ la pasvorto ne validas" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Starigi administran uzantonomon." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Starigi administran pasvorton." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Bonvolu duoble kontroli la gvidilon por instalo." diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 3393c7ed99..f00a6300cf 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 9f9c75c600..ce6dd0df65 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 5b4504f3ac..0371e176b3 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/es/files.po index 9507e2ca2f..b3b0005dca 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: qdneren \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -133,43 +133,43 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "deshacer" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Realizar operación de borrado" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "subiendo 1 archivo" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "subiendo archivos" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index bb3430d857..35f44d3284 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Korrosivo \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 149ea2a1eb..8ec6229d31 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Korrosivo \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 d65f8d8518..af6e20e1ec 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Korrosivo \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 504a646087..b6fde0aabb 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Comando infractor: \"%s\", nombre: %s, contraseña: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Usuario y/o contraseña de PostgreSQL no válidos" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Configurar un nombre de usuario del administrador" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Configurar la contraseña del administrador." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 5df80c7f05..4ed0858105 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: qdneren \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 5dd2e58a0c..1a95acea9a 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: xhiena \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 b169a73be7..497b1af1dd 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: cjtess \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.po b/l10n/es_AR/files.po index d1d61483f2..d63d882688 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -130,43 +130,43 @@ msgstr "Borrar" msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendientes" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "deshacer" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Eliminar" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Subiendo 1 archivo" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Subiendo archivos" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 4545a8b20a..b75445da54 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: cjtess \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 d1a1ff1ae8..b3952440de 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: cjtess \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 672b26d83c..200eb8f91f 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 06d8c3711e..7278cffdf6 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "El comando no comprendido es: \"%s\", nombre: \"%s\", contraseña: \"%s\ msgid "PostgreSQL username and/or password not valid" msgstr "Nombre de usuario o contraseña de PostgradeSQL no válido." -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Configurar un nombre de administrador" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Configurar una palabra clave de administrador" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, comprobá nuevamente la guía de instalación." diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index b2e41e44f0..ac813b3a58 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: cjtess \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 2388c2925c..0785dcb72c 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: cjtess \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 f84e0dc557..214ed83820 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/et_EE/files.po index da1c3f424b..01a843dd64 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -130,43 +130,43 @@ msgstr "Kustuta" msgid "Rename" msgstr "Nimeta ümber" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "asenda" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "soovita nime" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "loobu" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "tagasi" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "teosta kustutamine" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fail üleslaadimisel" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "faili üleslaadimisel" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 4db724b282..fada542849 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Rivo Zängov \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 ec87736378..62fd3d0aa9 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Rivo Zängov \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 ea0a936f4e..d92f2621e5 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Rivo Zängov \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 8dd8c45b92..d2d1a1d246 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -172,21 +172,21 @@ msgstr "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL kasutajatunnus ja/või parool pole õiged" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Määra admin kasutajanimi." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Määra admini parool." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Palun tutvu veelkord paigalduse juhenditega." diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 5e2e5a2201..495a9cddea 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: pisike.sipelgas \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 3123cb7c07..fd260b9799 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: pisike.sipelgas \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 12b8189fa4..3e797b2390 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/eu/files.po index 47f0fe11f8..4c0a8919c9 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Ezabatu" msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Zain" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ordeztu" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "aholkatu izena" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "ezeztatu" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr " {new_name}-k {old_name} ordezkatu du" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "desegin" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Ezabatu" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "fitxategi 1 igotzen" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fitxategiak igotzen" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index 585dbb9ca2..4884f31ed6 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Piarres Beobide \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 b56de969dd..f7e18507fc 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 f3de7a3fb7..a98a95a06d 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 6cc724cf57..2414bfec34 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "Errorea komando honek sortu du: \"%s\", izena: %s, pasahitza: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL erabiltzaile edota pasahitza ez dira egokiak." -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Ezarri administraziorako erabiltzaile izena." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Ezarri administraziorako pasahitza." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Mesedez begiratu instalazio gidak." diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 9c49765a6f..72f5f8bb47 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 624bdfed58..72b00374d7 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 d8e999c6e4..752da423be 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: miki_mika1362 \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.po b/l10n/fa/files.po index 86cd925ece..b583885d4f 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "حذف" msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "در انتظار" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{نام _جدید} در حال حاضر وجود دارد." -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "جایگزین" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "پیشنهاد نام" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "لغو" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد." -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "انجام عمل حذف" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 پرونده آپلود شد." -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "بارگذاری فایل ها" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 990732b6e3..e0fdec10d1 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 03e6d00375..084dde198a 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: miki_mika1362 \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 d007e1ba6c..9e519a5e89 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 e109c03d8e..cab43533a3 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "دستور متخلف عبارت است از: \"%s\"، نام: \"%s\"، msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL نام کاربری و / یا رمزعبور معتبر نیست." -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "یک نام کاربری برای مدیر تنظیم نمایید." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "یک رمزعبور برای مدیر تنظیم نمایید." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید." diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 33bf3cc68f..c5e4e99b9e 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: miki_mika1362 \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 7047f55004..a5823109b0 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 54b8f265ec..3fadaa66ba 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/fi_FI/files.po index 584f06bb3a..b4484ecf33 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "Poista" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "korvaa" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "ehdota nimeä" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "peru" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "kumoa" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "suorita poistotoiminto" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 121ee34456..ef8b2bb5b1 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 79d9381944..e513d3083f 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/fi_FI/files_trashbin.po index 20243aeeb1..29e47cbc2b 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 4ef079a0d2..4431c36289 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL:n käyttäjätunnus ja/tai salasana on väärin" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Aseta ylläpitäjän käyttäjätunnus." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Aseta ylläpitäjän salasana." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Lue tarkasti asennusohjeet." diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index e0e397fa1a..5a72b60d9a 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Jiri Grönroos \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/user_ldap.po b/l10n/fi_FI/user_ldap.po index cf40a70912..58a3b993c7 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 fbf1c96a96..87c68a8e07 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/fr/files.po index f9597cdb7b..ec0b8fc3ba 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: Adalberto Rodrigues \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -131,43 +131,43 @@ msgstr "Supprimer" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "En attente" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "remplacer" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "Suggérer un nom" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "annuler" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a été remplacé par {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "annuler" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "effectuer l'opération de suppression" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fichier en cours d'envoi" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fichiers en cours d'envoi" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 15f78cce24..aeacf0ffeb 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 146e4862f1..5764090a67 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: square \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 5f216d725c..ffb6f1f17e 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 cb873a405a..16f228a124 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "La requête en cause est : \"%s\", nom : %s, mot de passe : %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nom d'utilisateur et/ou mot de passe de la base PostgreSQL invalide" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Spécifiez un nom d'utilisateur pour l'administrateur." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Spécifiez un mot de passe administrateur." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Veuillez vous référer au guide d'installation." diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index ff449acd0b..33676d45f7 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Adalberto Rodrigues \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 938a55346c..cac7b0fe5b 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: plachance \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 2c9e5e8215..973338a9bd 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: mbouzada \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.po b/l10n/gl/files.po index 4f0ee37d5f..e9b86bc4fe 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "substituír" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "suxerir nome" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "substituír {new_name} por {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "desfacer" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "realizar a operación de eliminación" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Enviándose 1 ficheiro" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ficheiros enviándose" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 2c525398b3..d82152aba7 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 dc9aae3731..6ae448d176 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: mbouzada \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 7294e31058..335707e95f 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 726f6d3e23..45c2859fde 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "A orde ofensiva foi: «%s», nome: %s, contrasinal: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nome de usuario e/ou contrasinal de PostgreSQL incorrecto" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Estabeleza un nome de usuario administrador" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Estabeleza un contrasinal de administrador" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Volva comprobar as guías de instalación" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 12fa40426e..583c3595a2 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: mbouzada \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 f97c70dae2..a2f144cc28 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: mbouzada \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 e74b032c3f..f738a22728 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/he/files.po index 10fb171a2f..d045350c0e 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "מחיקה" msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "ממתין" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "החלפה" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "הצעת שם" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "ביטול" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} הוחלף ב־{old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "ביטול" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "ביצוע פעולת מחיקה" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "קובץ אחד נשלח" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "קבצים בהעלאה" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index d3583debe6..8e6505f364 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 6bfd88f248..2f5d4be14e 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 4acdacf3fa..81f14f996d 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Yaron Shahrabani \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 d8537e7e35..279ea6627b 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "נא לעיין שוב במדריכי ההתקנה." diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 417d906551..77849b9866 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 536c381a96..d2498846a5 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 89d4c2c966..4e091193e1 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 93dfd1173a..037df967c5 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 6a42d2ccc6..deff5bf009 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 c408d2841b..fe78c9e340 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-11 02:17+0200\n" -"PO-Revision-Date: 2013-07-11 00:12+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 2cafa6832f..e74f2ab2e5 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 fe50693c2d..57212d2eeb 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 04fa6f6284..4c1188c419 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/hr/files.po index a150b9b3f8..4030dfdcbc 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Obriši" msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "U tijeku" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "predloži ime" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "odustani" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "vrati" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 datoteka se učitava" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "datoteke se učitavaju" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 2e6b182caa..65efe1f80e 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 48734d7ebb..7a64ecc822 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 33c05476ed..c71ce8f370 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 2f5d0e26ec..7fd8bd641e 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 851565578c..cff8666687 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 c917885be4..886091195b 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 578c9f3672..f1ddee740b 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: Laszlo Tornoci \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.po b/l10n/hu_HU/files.po index e24c2f6cb4..6c33e4f15f 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "Törlés" msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Folyamatban" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "írjuk fölül" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "legyen más neve" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "mégse" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "visszavonás" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "a törlés végrehajtása" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fájl töltődik föl" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fájl töltődik föl" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index c5bf54454d..d351ec42b1 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Laszlo Tornoci \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 cdba93d1d9..84442bfad2 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Laszlo Tornoci \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 d301c2809c..eced131ee8 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 f92c44fc27..c3b1dc7091 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "A hibát okozó parancs ez volt: \"%s\", login név: %s, jelszó: %s" msgid "PostgreSQL username and/or password not valid" msgstr "A PostgreSQL felhasználói név és/vagy jelszó érvénytelen" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Állítson be egy felhasználói nevet az adminisztrációhoz." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Állítson be egy jelszót az adminisztrációhoz." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index de4403122f..04125b3dd9 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: Laszlo Tornoci \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 ab8f850663..a23ab0043b 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Laszlo Tornoci \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 403b2f0f50..055ec36d2a 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Ջնջել" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 3f92162cea..a05a880704 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 7d5c808ffa..a9500c772a 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 db446579ab..57b074b7f6 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 532f06d1ed..b5b47083c2 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 6b0e68d07d..0e48a790af 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ia/files.po index 96bb92457d..121e35415c 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Deler" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index d4fd88225a..3edab445a0 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 f166b57e74..10227616b4 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 6a094e0b19..2d2d0bf859 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 73fcc8afe5..db90715411 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index f8e6e202be..ea8f492d02 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 3bfbfe4423..062fe370ae 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 8def633126..c4a94d8916 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/id/files.po index 5f92e9ffdd..e50dfb5875 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Hapus" msgid "Rename" msgstr "Ubah nama" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Menunggu" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} sudah ada" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ganti" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sarankan nama" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "mengganti {new_name} dengan {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "urungkan" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Lakukan operasi penghapusan" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 berkas diunggah" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "berkas diunggah" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 9f160f0683..38c9dadf30 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 e9bf66bfe1..1745298a4d 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 3ee77810c3..95380dfd8b 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 e1fdc85d7d..e38a923dae 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nama pengguna dan/atau sandi PostgreSQL tidak valid" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Setel nama pengguna admin." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Setel sandi admin." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Silakan periksa ulang panduan instalasi." diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 60b169fe6c..59ccbf9990 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 622c3fc775..343d74ef16 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 37c02976cc..335a216ca6 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/is/files.po index bd879e3561..c12526a3c9 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Eyða" msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Bíður" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "yfirskrifa" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "stinga upp á nafni" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "hætta við" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "yfirskrifaði {new_name} með {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "afturkalla" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 skrá innsend" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index ec5fae4dd2..ed904d29a0 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 a3d95c2291..53760e36c1 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 aa4b59674d..b6d594a758 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 899640a86d..fe96a4eb81 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 9e7fad3209..3241ace9cd 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 044472fb72..7ba394c6aa 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Magnus Magnusson \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 07e90be170..c57f6cfc44 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: Vincenzo Reale \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.po b/l10n/it/files.po index 8e9941b751..6e42bbc2c8 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -130,43 +130,43 @@ msgstr "Elimina" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "In corso" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "suggerisci nome" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "annulla" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "annulla" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "esegui l'operazione di eliminazione" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 file in fase di caricamento" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "caricamento file" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 2db10de2d9..1bb22fd88f 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Vincenzo Reale \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 f7e8fa0aa6..8b14e0d232 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Vincenzo Reale \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 1d22361b4c..706dd7c401 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Vincenzo Reale \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 f5219651d2..fe71d619e0 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Il comando non consentito era: \"%s\", nome: %s, password: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nome utente e/o password di PostgreSQL non validi" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Imposta un nome utente di amministrazione." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Imposta una password di amministrazione." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Leggi attentamente le guide d'installazione." diff --git a/l10n/it/settings.po b/l10n/it/settings.po index f317a2df9b..dcaeb4a70a 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Vincenzo Reale \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 f53293ea92..76ff6e6e4a 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Vincenzo Reale \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 3a4c820f20..1a45ce251b 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: Daisuke Deguchi \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.po b/l10n/ja_JP/files.po index f96e5de333..3eed98bc85 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: pabook \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -132,43 +132,43 @@ msgstr "削除" msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "中断" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在しています" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "置き換え" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "推奨名称" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "キャンセル" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} を {new_name} に置換" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "削除を実行" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "ファイルを1つアップロード中" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ファイルをアップロード中" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index b686d9f9a0..804e99ff30 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 b95155afdb..1cb4016c85 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: tt yn \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 e793fab739..1b7a1a082d 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 7d89acb8ee..1638cc4ab8 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "違反コマンド: \"%s\"、名前: %s、パスワード: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQLのユーザ名もしくはパスワードは有効ではありません" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "管理者のユーザ名を設定。" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "管理者のパスワードを設定。" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "インストールガイドをよく確認してください。" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index aa8c8d41fb..9a6fb04543 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Daisuke Deguchi \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 dbc24c1e49..5e20206516 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Daisuke Deguchi \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 1bc49974a7..c889ab1fa5 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index af6559191a..a15f9670d7 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 4beea6c70a..62118b5ffa 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ka_GE/files.po index 942595fa57..99f4220e89 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "წაშლა" msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "შეცვლა" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "სახელის შემოთავაზება" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "უარყოფა" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} შეცვლილია {old_name}–ით" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "მიმდინარეობს წაშლის ოპერაცია" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ფაილის ატვირთვა" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ფაილები იტვირთება" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index 00c459658c..71d5d39202 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: drlinux64 \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 20fa3f48e2..f05c262d5d 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 67041b82d6..553f841007 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: drlinux64 \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 4c59beeb10..687a8f99d7 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "Offending ბრძანება იყო: \"%s\", სახელი msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL იუზერნეიმი და/ან პაროლი არ არის სწორი" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "დააყენეთ ადმინისტრატორის სახელი." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "დააყენეთ ადმინისტრატორის პაროლი." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი." diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index e72b4638ce..8a77a4f8ea 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 2f625761f2..3b0caf9476 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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/ko/core.po b/l10n/ko/core.po index 08c354d1e1..229d1fafa5 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ko/files.po index dca4de1470..4f999bafb4 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -130,43 +130,43 @@ msgstr "삭제" msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "대기 중" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "바꾸기" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "이름 제안" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "취소" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{old_name}이(가) {new_name}(으)로 대체됨" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "되돌리기" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "삭제 작업중" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "파일 1개 업로드 중" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "파일 업로드중" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index a1d3a19151..0ee6930413 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Shinjo Park \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 02a9e244c5..313ea27568 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 073246bc5b..2b49e2b50c 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 b4ef920f6a..72a40abf87 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "설치 가이드를 다시 한 번 확인하십시오." diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 7236f8c200..ea29b83fb6 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 1a0657eab0..13b83d8d5f 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 b85f2bb3f6..369a065b49 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ku_IQ/files.po index 1e0ee9fcc8..4120fbaceb 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 7ce2e687cd..50d3824234 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 60e17753c0..e95aa956fa 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 0f312a8ccb..3445745f77 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-11 02:17+0200\n" -"PO-Revision-Date: 2013-07-11 00:12+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 94d47978b4..7fc45f6163 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 75dd618f0b..be82e8182a 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 2362871fff..85053a0cae 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/lb/files.po index 840b67d24e..2cfd82b747 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Läschen" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 400132aab9..009eb68a4b 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 08390ac710..df6b07ac47 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: llaera \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 fe26036eb0..14dd11fc61 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 e7c68b830b..4d394df55d 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 4248b41513..469e40aecf 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 fe622c4288..bbdcdad6d6 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 388f5c5e74..3361e32efc 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/lt_LT/files.po index 4742761bcc..211a1936c8 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "Ištrinti" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Laukiantis" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "pakeisti" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "pasiūlyti pavadinimą" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "ištrinti" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "įkeliamas 1 failas" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "įkeliami failai" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index e382b31823..2c3de22e2c 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Min2liz \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 079feb9176..d8cc3b8c76 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 0a26ad9704..c1594f5935 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: fizikiukas \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 b615f2d22f..61842c5008 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 71fb60584d..6c1c4bfc27 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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/user_ldap.po b/l10n/lt_LT/user_ldap.po index 51e2e1afbf..cabe40bf89 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 deb2d55883..20be207eb8 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/lv/files.po index 020eb857a6..a3219c4fdb 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Dzēst" msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} jau eksistē" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "ieteiktais nosaukums" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "aizvietoja {new_name} ar {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "atsaukt" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "veikt dzēšanas darbību" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Augšupielādē 1 datni" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index dd6bcd890f..e379861a62 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 67e4f1c8ad..f040331ed2 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 5340b1bf28..6c9f70fae4 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 4378994685..ca31647575 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "Vainīgā komanda bija \"%s\", vārds: %s, parole: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nav derīga PostgreSQL parole un/vai lietotājvārds" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Iestatiet administratora lietotājvārdu." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Iestatiet administratora paroli." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību." diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index c5151e2265..5beb30656d 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 c2eec7ff9c..1fd875aca1 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 a34f071130..7e6ef270ee 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/mk/files.po index 8e1175ba3e..98180e062c 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Избриши" msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Чека" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "замени" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "предложи име" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "откажи" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "заменета {new_name} со {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "врати" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 датотека се подига" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 464639b70d..c3f5c4c39b 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 1a277dc2b1..359667d43c 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 69024ebf3a..15d525e6dd 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 338e5119e3..68701482b0 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index ea306582bc..2884b27029 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 da055f4066..c27afdcd01 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index b595fca0bc..7bcbcb9bf2 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ms_MY/files.po index 35499f6fc3..5b2961a178 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Padam" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Dalam proses" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ganti" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "Batal" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 9e447b2348..e129c9bdfa 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 9f1d8f9f05..ef4f811300 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 5ac9c0e2c3..5aa824e81b 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 700ec90a83..df4a71f7a4 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index cba4d6956b..c0475f4a41 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 ffa692ae3d..a2c392528c 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 86a20ed5c4..5845d8d3d3 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/my_MM/files.po index a1f6e7c80a..31ec5cdb35 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 9c3d62ee99..a8b3d8a823 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 778748ecb4..eda0198ec7 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 59ce683161..6276ef9507 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/nb_NO/files.po index 2e01b098eb..4e825430a4 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "Slett" msgid "Rename" msgstr "Omdøp" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ventende" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "erstatt" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "erstatt {new_name} med {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "angre" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fil lastes opp" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "filer lastes opp" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index b0e87b52aa..fb252f8465 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index fc3ccd5c85..7b7185a8d6 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/nb_NO/files_trashbin.po index bc2c1cd512..0a2f4a3fcf 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index def6c16582..48dfa87614 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Vennligst dobbelsjekk installasjonsguiden." diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 6f8b797612..99bf380858 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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/user_ldap.po b/l10n/nb_NO/user_ldap.po index 5a00ce7669..d9de21dc71 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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/nl/core.po b/l10n/nl/core.po index a13f3ecc5a..f072e88887 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/nl/files.po index a104d8d1ca..be92613a74 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "vervang" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "Stel een naam voor" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "uitvoeren verwijderactie" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 bestand wordt ge-upload" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "bestanden aan het uploaden" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 407f9b3fa4..3ca9b3138e 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: André Koot \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 7e13402b86..1ae53a1cab 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/nl/files_trashbin.po index f34068e76b..20621c7ac5 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 f82b426d81..bd0e87816a 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Onjuiste commando was: \"%s\", naam: %s, wachtwoord: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL gebruikersnaam en/of wachtwoord ongeldig" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Stel de gebruikersnaam van de beheerder in." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Stel een beheerderswachtwoord in." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Controleer de installatiehandleiding goed." diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 01f58f768e..8af3050468 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 276a940b44..e2af23e352 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: André Koot \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 a99a79c97a..eeb2a6eb37 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/nn_NO/files.po index 5348b7a8fa..7079b06a4f 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -130,43 +130,43 @@ msgstr "Slett" msgid "Rename" msgstr "Endra namn" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Under vegs" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} finst allereie" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "byt ut" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "føreslå namn" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "bytte ut {new_name} med {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "angre" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "utfør sletting" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fil lastar opp" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "filer lastar opp" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 217efdd6cf..e6c01a385f 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 f8f0877215..c09d827e1d 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 d4b4f475ad..72bad6aaaf 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: unhammer \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 834a2a49e3..81be64f4cd 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Ver vennleg og dobbeltsjekk installasjonsrettleiinga." diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 95eafa2caf..acf9eec9e6 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 1e3793de54..ac6ad9204d 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 94bba95fe4..c0a51c087b 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/oc/files.po index 162f8b9eea..d85d951104 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Escafa" msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Al esperar" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "remplaça" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "nom prepausat" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "anulla" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "defar" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 fichièr al amontcargar" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fichièrs al amontcargar" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index 1f1b3c43ce..bb76035a6d 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 e5cb53abf7..0a0708a520 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 13e0a712c3..0d51e008ed 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 70dfee2916..4e42ef4695 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-11 02:17+0200\n" -"PO-Revision-Date: 2013-07-11 00:12+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 3651160f08..87aaa23363 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 d5f03d9036..d28e9ce63e 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 8b2ab8f7c3..0565708a75 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/pl/files.po index 975667cac3..746ee9173d 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -130,43 +130,43 @@ msgstr "Usuń" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "zastąp" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "zasugeruj nazwę" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "zastąpiono {new_name} przez {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "cofnij" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "wykonaj operację usunięcia" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 plik wczytywany" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "pliki wczytane" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 4ac48457ad..0ccc486a89 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 54b0779579..232faca3a0 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 0412aa09ff..0d10269385 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 1de8a6b547..cd0d73fc00 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Niepoprawne polecania: \"%s\", nazwa: %s, hasło: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL: Nazwa użytkownika i/lub hasło jest niepoprawne" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Ustaw nazwę administratora." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Ustaw hasło administratora." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Sprawdź ponownie przewodniki instalacji." diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 944e34ee36..8f567d7060 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 2c8d378f84..d909a406aa 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: orcio6 \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 3253edc16a..0a9390f365 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/pt_BR/files.po index ac27f37cb8..51714250fb 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -131,43 +131,43 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "substituir" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugerir nome" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "Substituído {old_name} por {new_name} " -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "desfazer" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "realizar operação de exclusão" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "enviando 1 arquivo" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "enviando arquivos" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index b796430832..3d413c402c 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Flávio Veras \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 1d7e20087f..2f92428195 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Flávio Veras \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 dcfb164f86..b12e9306bf 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 b40f7d66ac..3b232e2429 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Comando ofensivo era: \"%s\", nome: %s, senha: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nome de usuário e/ou senha PostgreSQL inválido(s)" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Defina um nome de usuário de administrador." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Defina uma senha de administrador." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Por favor, confira os guias de instalação." diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index a73fefa32a..f82d6a934f 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: bjamalaro \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 2ae3733f6b..d74920e3f6 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Flávio Veras \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 b26001d7d2..8bb50635fb 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/pt_PT/files.po index 07ad3b1088..e63d23dd8c 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "substituir" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugira um nome" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "substituido {new_name} por {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "desfazer" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Executar a tarefa de apagar" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "A enviar 1 ficheiro" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "A enviar os ficheiros" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index d4cda3a121..e2eddf4ef7 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Mouxy \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 ba8a975e8d..2a841a1b73 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/pt_PT/files_trashbin.po index 07997aa078..21a8df7690 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 ba5a31b676..050ca2515c 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "O comando gerador de erro foi: \"%s\", nome: %s, password: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Nome de utilizador/password do PostgreSQL inválido" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Definir um nome de utilizador de administrador" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Definiar uma password de administrador" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Por favor verifique installation guides." diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index e89d3fdf50..4fae6fbe44 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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/user_ldap.po b/l10n/pt_PT/user_ldap.po index ec20a862b4..26b7e4afad 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 142ddc1b36..ed15982b5b 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ro/files.po index c1b17d8be0..2eab93acfe 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -131,43 +131,43 @@ msgstr "Șterge" msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "În așteptare" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} deja exista" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "înlocuire" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugerează nume" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "anulare" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} inlocuit cu {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "efectueaza operatiunea de stergere" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "un fișier se încarcă" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "fișiere se încarcă" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index 7001429229..f175df0f5e 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 a63bdeb597..56e8c74a03 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: sergiu_sechel \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 3642aa7d5e..ddae0f639b 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 5216148ebd..2cfde1c9c1 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Vă rugăm să verificați ghiduri de instalare." diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 36563c4ff3..af83bc446b 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 2b2b60f48a..2016faa783 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 7b93cc0a9e..489c6fe69b 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: Victor Bravo <>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 408511c3e6..638eb27e2e 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: hackproof \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -132,43 +132,43 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Ожидание" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "заменить" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "предложить название" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "отмена" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "заменено {new_name} на {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "отмена" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "выполнить операцию удаления" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "загружается 1 файл" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "файлы загружаются" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index d794340d5e..cb84bca19b 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 c2bba46967..008e4f1ee2 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Victor Bravo <>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 8433a3bde8..ef9d77191d 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 5021ecdf24..65e579525a 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Вызываемая команда была: \"%s\", имя: %s, пар msgid "PostgreSQL username and/or password not valid" msgstr "Неверное имя пользователя и/или пароль PostgreSQL" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Установить имя пользователя для admin." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "становит пароль для admin." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Пожалуйста, дважды просмотрите инструкции по установке." diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 78f87a98b4..46d640ff65 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: hackproof \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 b14711b90f..bd3ad30a25 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: alfsoft \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 8620ccaf36..c296049d1e 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/si_LK/files.po index 81e3f1e4b9..0df2094783 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "මකා දමන්න" msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ප්‍රතිස්ථාපනය කරන්න" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "නමක් යෝජනා කරන්න" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "අත් හරින්න" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ගොනුවක් උඩගත කෙරේ" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index f38b3ed89e..b3deebc911 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 51f4967843..badd6dce9e 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 1c4eb909ee..af87b27d32 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 c8f93355a0..91cc2a85c0 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index ecd3d78a71..bdd4c43914 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 2174391fc5..0f9bdcc25b 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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_SK/core.po b/l10n/sk_SK/core.po index 7e92968a49..172a91f803 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: mhh \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.po b/l10n/sk_SK/files.po index 53cbc7a0c6..cd8ba7d366 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "Zmazať" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Prebieha" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "nahradiť" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "pomôcť s menom" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "zrušiť" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "prepísaný {new_name} súborom {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "vrátiť" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "vykonať zmazanie" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 súbor sa posiela " -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "nahrávanie súborov" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 06b7f17f58..0677cacec7 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: mhh \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 ff3d229ef5..786f26e578 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 5d52a0e9ea..12a09b4d48 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 d096f14477..ee887ea468 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Podozrivý príkaz bol: \"%s\", meno: %s, heslo: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Používateľské meno a/alebo heslo pre PostgreSQL databázu je neplatné" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Zadajte používateľské meno administrátora." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Zadajte heslo administrátora." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Prosím skontrolujte inštalačnú príručku." diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 79e145651c..cbac262755 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: mhh \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 b7d8283383..380213239c 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: mhh \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 586c2c2c9b..a5280d7ce3 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sl/files.po index f6c9c82635..9e529130ae 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "Izbriši" msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "V čakanju ..." -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "zamenjaj" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "predlagaj ime" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "prekliči" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "preimenovano ime {new_name} z imenom {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "izvedi opravilo brisanja" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Pošiljanje 1 datoteke" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "poteka pošiljanje datotek" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 28f773ab99..dc5ad5d055 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 19873a6a40..c2aa66484e 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 8146bccbd0..bd26624976 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 28587492b8..1c034d2673 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Napačni ukaz je: \"%s\", ime: %s, geslo: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Uporabniško ime ali geslo PostgreSQL ni veljavno" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Nastavi uporabniško ime skrbnika." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Nastavi geslo skrbnika." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Preverite navodila namestitve." diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 408de89bce..98c4910daf 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 9647dc9ebe..2fb7809f11 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: barbarak \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 ba0cdd2f71..34174fbc18 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sq/files.po index 555a1b19f8..f455b687af 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Elimino" msgid "Rename" msgstr "Riemërto" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Pezulluar" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} ekziston" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "zëvëndëso" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "sugjero një emër" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "anulo" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "U zëvëndësua {new_name} me {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "anulo" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "ekzekuto operacionin e eliminimit" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Po ngarkohet 1 skedar" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "po ngarkoj skedarët" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 16410b0119..03fa14ff74 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 fe295ea2c5..758364e784 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 8c61248efc..c054b36a32 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 a86be272ea..02c73af6f1 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "Komanda e gabuar ishte: \"%s\", përdoruesi: %s, kodi: %s" msgid "PostgreSQL username and/or password not valid" msgstr "Përdoruesi dhe/apo kodi i PostgreSQL i pavlefshëm" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Cakto emrin e administratorit." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Cakto kodin e administratorit." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index fac5dc9cc5..d572a7aede 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 1c485fbb9c..afdb649a8a 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 979127e7d6..1a1df5f958 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr/files.po index 1cbb504d90..39f69a0abc 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Обриши" msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "На чекању" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "замени" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "предложи назив" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "откажи" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "замењено {new_name} са {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "опозови" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "обриши" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "Отпремам 1 датотеку" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "датотеке се отпремају" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index 30ddb57689..879d950065 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 8f1c40618f..0527d223ee 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 b0372c3f03..45b9f5b657 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 e8fe845df9..20ceb08419 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Погледајте водиче за инсталацију." diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 3bbb8b04c6..51ed41d9e5 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 5fee554ed3..a7482269d4 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 69d90c988a..c80788d01a 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr@latin/files.po index de28854e98..b1b5242167 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Obriši" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index a4b9250dc2..6214426196 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 935ceeb8cc..af0547dc15 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 6740e66a7b..cddd34271b 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 f7f89a2c86..4cbd5ecff5 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 74a6ba1a91..d7ee15db5f 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 62c3b06e6c..c35741e524 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sv/files.po index 20cb96301b..9e58de9a4a 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -131,43 +131,43 @@ msgstr "Radera" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Väntar" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ersätt" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "föreslå namn" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "ångra" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "utför raderingen" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 filuppladdning" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "filer laddas upp" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 68975dd96b..441b9f6300 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 121a3bf8ad..8e0cb816d9 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/sv/files_trashbin.po index d4758d32e6..8513452e20 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 061e3bb389..50d7808aee 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Det felande kommandot var: \"%s\", name: %s, password: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL-användarnamnet och/eller lösenordet är felaktigt" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Ange ett användarnamn för administratören." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Ange ett administratörslösenord." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Var god kontrollera installationsguiden." diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index d66cb8d332..edf44565b5 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 4630364bc2..3aabcdf6bc 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 676e1e4d1d..ebd533e3d2 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ta_LK/files.po index 91ba6e2135..c18fa1ab9f 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "நீக்குக" msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "மாற்றிடுக" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "பெயரை பரிந்துரைக்க" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "இரத்து செய்க" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 02928a2148..577fa41769 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 729600cb74..ef74e4ce6b 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 0f097f227e..8949fbc8e6 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 2f7ff5133c..cab7b77a8f 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 666a976551..5f7aecf1ee 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 ba0974d2d8..0d60917655 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 933dfb990b..d77a3fdd1f 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/te/files.po index 72500bf336..840fbc98e2 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "తొలగించు" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "రద్దుచేయి" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index d2b519890b..6d8b010cc2 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 396952a972..b2c8d77028 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 4a700e26b5..1b19e18acd 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-11 02:17+0200\n" -"PO-Revision-Date: 2013-07-11 00:12+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index d37524a8b6..d743483601 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 c91bc9a68d..c9cc63fec6 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 c87e14c8b8..ea42880450 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 55cfe4a743..d101ceb183 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \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:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index eb47166545..eef3465146 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 044efbcc71..4193c67553 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 001eab18e8..31911dd885 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 5c7dfacae5..1e4b75a57e 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index dabb2869db..ed06a4edd1 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 63cddb3021..924cfe2e5d 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index d0ff6e49a7..08fba24706 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index e7961d7585..55bd2f3348 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 1adc5c23dd..f05732aced 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 48c4730158..9abc30230e 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/th_TH/files.po index 775b82f16b..8b82b96a23 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "ลบ" msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "แนะนำชื่อ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "ดำเนินการตามคำสั่งลบ" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "การอัพโหลดไฟล์" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 82d3b96822..835b2c3c13 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 9f9b337d5b..ba55638606 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 ae2ecc79ed..8c4d1fc8a6 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 77929e2d1f..b9336d2ebc 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 1a43977ecd..0ffa833f93 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 028f158bd7..c1ee44a01e 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 5dcc76d7af..641cc9df64 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/tr/files.po index 87ee5c9665..0a399c7230 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "Sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "değiştir" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "Öneri ad" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "iptal" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ismi {old_name} ile değiştirildi" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "geri al" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "Silme işlemini gerçekleştir" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 dosya yüklendi" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "Dosyalar yükleniyor" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index bd0a0e8610..3c8ab6d4a1 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 b97c54efe3..de83a2a718 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 0a3fec4911..29599c4991 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 5e68cdc746..0881a58c17 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "Hatalı komut: \"%s\", ad: %s, parola: %s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL adi kullanici ve/veya parola yasal degildir. " -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Bir adi kullanici vermek. " -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Parola yonetici birlemek. " -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 1447960f8e..e01d3ba44d 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 2c3985ee80..b1ef4259ad 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: ismail yenigül \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 293122a553..ad089a454b 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 831ed30c9a..f277730cee 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \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:466 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} مەۋجۇت" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "ئالماشتۇر" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "تەۋسىيە ئات" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "ۋاز كەچ" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "يېنىۋال" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 ھۆججەت يۈكلىنىۋاتىدۇ" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "ھۆججەت يۈكلىنىۋاتىدۇ" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 1f2ec2db6f..3bc572e8e6 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 90d6c13d1b..6ef12853b7 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 5f236c7693..ce903b8111 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 393724f04c..4c5c46a6f0 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 3520668a45..04368f8092 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 9efe4f02f5..df18129718 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index d5a2887958..bd853320c0 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/uk/files.po index b850a76f0d..5a9cc84ad7 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "Видалити" msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Очікування" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "заміна" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "запропонуйте назву" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "відміна" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "замінено {new_name} на {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "відмінити" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "виконати операцію видалення" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 файл завантажується" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "файли завантажуються" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index bfde1fe2b1..1d72ee75f1 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 b26b84e10e..beeced1c70 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 bbf58c9eab..0ac0148e34 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 a19829389b..84a75e7333 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "Команда, що викликала проблему: \"%s\", ім' msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL ім'я користувача та/або пароль не дійсні" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "Встановіть ім'я адміністратора." -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "Встановіть пароль адміністратора." -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "Будь ласка, перевірте інструкції по встановленню." diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 95eb951254..2d631aa40f 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 ca652b4208..688532ebba 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 b9e09f2134..1d13f01004 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/ur_PK/files.po index 6b2ec6d854..a5d55fe2bb 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index e0fbc772b1..3f3dbcdf7e 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 2d1a8b6bef..6bf50359fe 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-11 02:17+0200\n" -"PO-Revision-Date: 2013-07-11 00:12+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 00:12+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index e9e6ee10ae..853dc6e67e 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 6ee34a0b3a..58e2c74356 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 43755c722c..43e3e7603e 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/vi/files.po index 862360ab32..6291a10264 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -129,43 +129,43 @@ msgstr "Xóa" msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "Đang chờ" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "thay thế" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "tên gợi ý" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "hủy" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "đã thay thế {new_name} bằng {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "lùi lại" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "thực hiện việc xóa" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 tệp tin đang được tải lên" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "tệp tin đang được tải lên" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index bc03c4e0f7..4e3e089445 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: xtdv \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 c3f16fe0da..b3d4ba6921 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 72ea66ee6b..8d6c84a3ae 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 a44ee8e1aa..65f526ac0d 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 4445137e11..8967e98ba0 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 356acb62b4..4788aaf79f 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 ae00d1bd3f..bcf4c67879 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN.GB2312/files.po index 309b697e7b..ece1015c63 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\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:466 msgid "Pending" msgstr "等待中" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "替换" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "推荐名称" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "取消" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "已用 {old_name} 替换 {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "撤销" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 个文件正在上传" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "个文件正在上传" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 6e1fa3d3e9..6c8eda2a4e 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: hyy0591 \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 2b295f46e4..f1f61eec90 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 301cf13b06..92e7343b79 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 a112ffc4e5..a68b16e450 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "请双击安装向导。" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index fad55f0c08..74db645569 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 a630a5b4c6..afc0a560c9 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 32c0206d09..f349adf3b7 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN/files.po index 5d11283120..2efcc9eaf4 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -131,43 +131,43 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "等待" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "替换" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "建议名称" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "取消" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "已将 {old_name}替换成 {new_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "撤销" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "进行删除操作" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1个文件上传中" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "文件上传中" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index d2a3305cf1..d4f08d1169 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 b65a961865..9be6d38dab 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 2545afc0c7..64824d302a 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 fdaa20b74f..d3e073b8be 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "冲突命令为:\"%s\",名称:%s,密码:%s" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL 数据库用户名和/或密码无效" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "请设置一个管理员用户名。" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "请设置一个管理员密码。" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "请认真检查安装指南." diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index e5cfb5999a..4b656efd02 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 24a78026bd..8d8569a68c 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: modokwang \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 2308aaa24f..05f0781bd3 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_HK/files.po index 8d0c82fad1..8b98d760ef 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -128,43 +128,43 @@ msgstr "刪除" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index daabaa09e3..abcaf135d8 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 d95a8f14c0..51eca586ec 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 eb928a4dbd..2ab02827f7 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 7ebc8cdc55..942724f5a4 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -170,21 +170,21 @@ msgstr "" msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index c653a56f33..8ffda2fe70 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" "Last-Translator: I Robot \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 cd9a2adbf8..a4863b6860 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 8ae8ef4c04..dfc5e50afd 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s 與您分享了 %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -286,7 +286,7 @@ msgstr "密碼" #: js/share.js:187 msgid "Allow Public Upload" -msgstr "" +msgstr "允許任何人上傳" #: js/share.js:191 msgid "Email link to person" @@ -413,7 +413,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "您的檔案已加密,如果您沒有設定還原金鑰,未來重設密碼後將無法取回您的資料。如果您不確定該怎麼做,請洽詢系統管理員後再繼續。您確定要現在繼續嗎?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" @@ -476,7 +476,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "嗨,\n\n通知您,%s 與您分享了 %s 。\n看一下:%s" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -614,7 +614,7 @@ msgstr "替代登入方法" msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" -msgstr "" +msgstr "嗨,

通知您,%s 與您分享了 %s ,
看一下吧" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index e33f5f1a53..78f2ceed4b 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-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"Last-Translator: pellaeon \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" @@ -30,11 +30,11 @@ msgstr "無法移動 %s" #: ajax/upload.php:16 ajax/upload.php:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "無法設定上傳目錄。" #: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "無效的 token" #: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" @@ -129,43 +129,43 @@ msgstr "刪除" msgid "Rename" msgstr "重新命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:464 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 msgid "Pending" msgstr "等候中" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "replace" msgstr "取代" -#: js/filelist.js:302 +#: js/filelist.js:304 msgid "suggest name" msgstr "建議檔名" -#: js/filelist.js:302 js/filelist.js:304 +#: js/filelist.js:304 js/filelist.js:306 msgid "cancel" msgstr "取消" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "replaced {new_name} with {old_name}" msgstr "使用 {new_name} 取代 {old_name}" -#: js/filelist.js:349 +#: js/filelist.js:351 msgid "undo" msgstr "復原" -#: js/filelist.js:374 +#: js/filelist.js:376 msgid "perform delete operation" msgstr "進行刪除動作" -#: js/filelist.js:456 +#: js/filelist.js:458 msgid "1 file uploading" msgstr "1 個檔案正在上傳" -#: js/filelist.js:459 js/filelist.js:517 +#: js/filelist.js:461 js/filelist.js:519 msgid "files uploading" msgstr "檔案正在上傳中" @@ -232,7 +232,7 @@ msgstr "{count} 個檔案" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "無法重新命名 %s" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -308,7 +308,7 @@ msgstr "下載" #: templates/index.php:80 msgid "Size (MB)" -msgstr "" +msgstr "大小 (MB)" #: templates/index.php:87 templates/index.php:88 msgid "Unshare" @@ -334,19 +334,19 @@ msgstr "目前掃描" #: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "目錄" #: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "目錄" #: templates/part.list.php:87 msgid "file" -msgstr "" +msgstr "檔案" #: templates/part.list.php:89 msgid "files" -msgstr "" +msgstr "檔案" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index c3d557e6fe..5d9c9bd6ee 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: pellaeon \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 92c4c1b7b3..4b2e0ea5e5 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 fecece6883..4f2a4428cb 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \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 6720e13999..73ea4ad538 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -171,21 +171,21 @@ msgstr "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"" msgid "PostgreSQL username and/or password not valid" msgstr "PostgreSQL 用戶名和/或密碼無效" -#: setup.php:42 +#: setup.php:28 msgid "Set an admin username." msgstr "設定管理員帳號。" -#: setup.php:45 +#: setup.php:31 msgid "Set an admin password." msgstr "設定管理員密碼。" -#: setup.php:198 +#: setup.php:184 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" -#: setup.php:199 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "請參考安裝指南。" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 9233caaac1..6d0f280872 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:04+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"Last-Translator: pellaeon \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" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "" "Use this address to access your Files via WebDAV" -msgstr "" +msgstr "使用這個網址來透過 WebDAV 存取您的檔案" #: templates/users.php:21 msgid "Login Name" @@ -475,7 +475,7 @@ msgstr "管理者復原密碼" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "為了修改密碼時能夠取回使用者資料,請輸入另一組還原用密碼" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index b550b20a8e..bb84f65741 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 23:15+0000\n" +"POT-Creation-Date: 2013-07-13 01:59+0200\n" +"PO-Revision-Date: 2013-07-12 23:15+0000\n" "Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 55b48a4d60..ca75653bf8 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -98,6 +98,7 @@ "Language" => "Idioma", "Help translate" => "Ajudeu-nos amb la traducció", "WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "Useu aquesta adreça per accedir als fitxers via WebDAV", "Login Name" => "Nom d'accés", "Create" => "Crea", "Admin Recovery Password" => "Recuperació de contrasenya d'administrador", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 8bdfc37b2b..74040fcfa2 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -98,9 +98,11 @@ "Language" => "語言", "Help translate" => "幫助翻譯", "WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "使用這個網址來透過 WebDAV 存取您的檔案", "Login Name" => "登入名稱", "Create" => "建立", "Admin Recovery Password" => "管理者復原密碼", +"Enter the recovery password in order to recover the users files during password change" => "為了修改密碼時能夠取回使用者資料,請輸入另一組還原用密碼", "Default Storage" => "預設儲存區", "Unlimited" => "無限制", "Other" => "其他", From ccb3c5b42896d20817f4a8eb0fb359335ef85ba4 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Sat, 13 Jul 2013 13:31:55 +0200 Subject: [PATCH 061/108] Removed the preview warning. This is only a simple text change --- apps/files_encryption/appinfo/info.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/appinfo/info.xml b/apps/files_encryption/appinfo/info.xml index 1e97b1b221..46f1375c98 100644 --- a/apps/files_encryption/appinfo/info.xml +++ b/apps/files_encryption/appinfo/info.xml @@ -2,7 +2,7 @@ files_encryption Encryption - WARNING: This is a preview release of the new ownCloud 5 encryption system. Testing and feedback is very welcome but don't use this in production yet. After the app was enabled you need to re-login to initialize your encryption keys + The new ownCloud 5 files encryption system. After the app was enabled you need to re-login to initialize your encryption keys. AGPL Sam Tuke, Bjoern Schiessle, Florin Peter 4 From 29d8ae2f95e40f4b3f317df88da99d891028928a Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 14 Jul 2013 02:10:41 +0200 Subject: [PATCH 062/108] [tx-robot] updated from transifex --- apps/files/l10n/pt_BR.php | 1 + apps/files/l10n/zh_CN.GB2312.php | 27 ++++++++++- apps/files_encryption/l10n/cs_CZ.php | 3 ++ apps/files_trashbin/l10n/zh_CN.GB2312.php | 1 + l10n/af_ZA/core.po | 4 +- l10n/af_ZA/lib.po | 4 +- l10n/ar/core.po | 4 +- l10n/ar/files.po | 4 +- l10n/ar/files_external.po | 4 +- l10n/ar/files_sharing.po | 4 +- l10n/ar/files_trashbin.po | 4 +- l10n/ar/lib.po | 4 +- l10n/ar/settings.po | 4 +- l10n/ar/user_ldap.po | 4 +- l10n/bg_BG/core.po | 4 +- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_external.po | 4 +- l10n/bg_BG/files_sharing.po | 4 +- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/lib.po | 4 +- l10n/bg_BG/settings.po | 4 +- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 4 +- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_external.po | 4 +- l10n/bn_BD/files_sharing.po | 4 +- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/lib.po | 4 +- l10n/bn_BD/settings.po | 4 +- l10n/bn_BD/user_ldap.po | 4 +- l10n/bs/core.po | 4 +- l10n/bs/files.po | 4 +- l10n/bs/files_trashbin.po | 4 +- l10n/ca/core.po | 4 +- l10n/ca/files.po | 4 +- l10n/ca/files_external.po | 4 +- l10n/ca/files_sharing.po | 4 +- l10n/ca/files_trashbin.po | 4 +- l10n/ca/lib.po | 4 +- l10n/ca/settings.po | 4 +- l10n/ca/user_ldap.po | 4 +- l10n/cs_CZ/core.po | 4 +- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_encryption.po | 12 ++--- l10n/cs_CZ/files_external.po | 4 +- l10n/cs_CZ/files_sharing.po | 4 +- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/lib.po | 4 +- l10n/cs_CZ/settings.po | 9 ++-- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/core.po | 4 +- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/files_external.po | 4 +- l10n/cy_GB/files_sharing.po | 4 +- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/lib.po | 4 +- l10n/cy_GB/settings.po | 4 +- l10n/cy_GB/user_ldap.po | 4 +- l10n/da/core.po | 4 +- l10n/da/files.po | 4 +- l10n/da/files_external.po | 4 +- l10n/da/files_sharing.po | 4 +- l10n/da/files_trashbin.po | 4 +- l10n/da/lib.po | 4 +- l10n/da/settings.po | 4 +- l10n/da/user_ldap.po | 4 +- l10n/de/core.po | 4 +- l10n/de/files.po | 4 +- l10n/de/files_external.po | 4 +- l10n/de/files_sharing.po | 4 +- l10n/de/files_trashbin.po | 4 +- l10n/de/lib.po | 4 +- l10n/de/settings.po | 4 +- l10n/de/user_ldap.po | 4 +- l10n/de_DE/core.po | 4 +- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_external.po | 4 +- l10n/de_DE/files_sharing.po | 4 +- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/lib.po | 4 +- l10n/de_DE/settings.po | 4 +- l10n/de_DE/user_ldap.po | 4 +- l10n/el/core.po | 4 +- l10n/el/files.po | 4 +- l10n/el/files_external.po | 4 +- l10n/el/files_sharing.po | 4 +- l10n/el/files_trashbin.po | 4 +- l10n/el/lib.po | 4 +- l10n/el/settings.po | 4 +- l10n/el/user_ldap.po | 4 +- l10n/en@pirate/files.po | 4 +- l10n/en@pirate/files_sharing.po | 4 +- l10n/eo/core.po | 4 +- l10n/eo/files.po | 4 +- l10n/eo/files_external.po | 4 +- l10n/eo/files_sharing.po | 4 +- l10n/eo/files_trashbin.po | 4 +- l10n/eo/lib.po | 4 +- l10n/eo/settings.po | 4 +- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 4 +- l10n/es/files.po | 4 +- l10n/es/files_external.po | 4 +- l10n/es/files_sharing.po | 4 +- l10n/es/files_trashbin.po | 4 +- l10n/es/lib.po | 4 +- l10n/es/settings.po | 4 +- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 4 +- l10n/es_AR/files.po | 4 +- l10n/es_AR/files_external.po | 4 +- l10n/es_AR/files_sharing.po | 4 +- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/lib.po | 4 +- l10n/es_AR/settings.po | 4 +- l10n/es_AR/user_ldap.po | 4 +- l10n/et_EE/core.po | 4 +- l10n/et_EE/files.po | 4 +- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/files_sharing.po | 4 +- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/lib.po | 4 +- l10n/et_EE/settings.po | 4 +- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/core.po | 4 +- l10n/eu/files.po | 4 +- l10n/eu/files_external.po | 4 +- l10n/eu/files_sharing.po | 4 +- l10n/eu/files_trashbin.po | 4 +- l10n/eu/lib.po | 4 +- l10n/eu/settings.po | 4 +- l10n/eu/user_ldap.po | 4 +- l10n/fa/core.po | 4 +- l10n/fa/files.po | 4 +- l10n/fa/files_external.po | 4 +- l10n/fa/files_sharing.po | 4 +- l10n/fa/files_trashbin.po | 4 +- l10n/fa/lib.po | 4 +- l10n/fa/settings.po | 4 +- l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/core.po | 4 +- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_external.po | 4 +- l10n/fi_FI/files_sharing.po | 4 +- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/lib.po | 4 +- l10n/fi_FI/settings.po | 4 +- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 4 +- l10n/fr/files.po | 4 +- l10n/fr/files_external.po | 4 +- l10n/fr/files_sharing.po | 4 +- l10n/fr/files_trashbin.po | 4 +- l10n/fr/lib.po | 4 +- l10n/fr/settings.po | 4 +- l10n/fr/user_ldap.po | 4 +- l10n/gl/core.po | 4 +- l10n/gl/files.po | 4 +- l10n/gl/files_external.po | 4 +- l10n/gl/files_sharing.po | 4 +- l10n/gl/files_trashbin.po | 4 +- l10n/gl/lib.po | 4 +- l10n/gl/settings.po | 4 +- l10n/gl/user_ldap.po | 4 +- l10n/he/core.po | 4 +- l10n/he/files.po | 4 +- l10n/he/files_external.po | 4 +- l10n/he/files_sharing.po | 4 +- l10n/he/files_trashbin.po | 4 +- l10n/he/lib.po | 4 +- l10n/he/settings.po | 4 +- l10n/he/user_ldap.po | 4 +- l10n/hi/core.po | 4 +- l10n/hi/files.po | 4 +- l10n/hi/files_trashbin.po | 4 +- l10n/hi/lib.po | 4 +- l10n/hi/settings.po | 4 +- l10n/hi/user_ldap.po | 4 +- l10n/hr/core.po | 4 +- l10n/hr/files.po | 4 +- l10n/hr/files_external.po | 4 +- l10n/hr/files_sharing.po | 4 +- l10n/hr/files_trashbin.po | 4 +- l10n/hr/lib.po | 4 +- l10n/hr/settings.po | 4 +- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/core.po | 4 +- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/files_external.po | 4 +- l10n/hu_HU/files_sharing.po | 4 +- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/lib.po | 4 +- l10n/hu_HU/settings.po | 4 +- l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 +- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 +- l10n/ia/core.po | 4 +- l10n/ia/files.po | 4 +- l10n/ia/files_external.po | 4 +- l10n/ia/files_sharing.po | 4 +- l10n/ia/files_trashbin.po | 4 +- l10n/ia/lib.po | 4 +- l10n/ia/settings.po | 4 +- l10n/ia/user_ldap.po | 4 +- l10n/id/core.po | 4 +- l10n/id/files.po | 4 +- l10n/id/files_external.po | 4 +- l10n/id/files_sharing.po | 4 +- l10n/id/files_trashbin.po | 4 +- l10n/id/lib.po | 4 +- l10n/id/settings.po | 4 +- l10n/id/user_ldap.po | 4 +- l10n/is/core.po | 4 +- l10n/is/files.po | 4 +- l10n/is/files_external.po | 4 +- l10n/is/files_sharing.po | 4 +- l10n/is/files_trashbin.po | 4 +- l10n/is/lib.po | 4 +- l10n/is/settings.po | 4 +- l10n/is/user_ldap.po | 4 +- l10n/it/core.po | 4 +- l10n/it/files.po | 4 +- l10n/it/files_external.po | 4 +- l10n/it/files_sharing.po | 4 +- l10n/it/files_trashbin.po | 4 +- l10n/it/lib.po | 4 +- l10n/it/settings.po | 4 +- l10n/it/user_ldap.po | 4 +- l10n/ja_JP/core.po | 4 +- l10n/ja_JP/files.po | 4 +- l10n/ja_JP/files_external.po | 4 +- l10n/ja_JP/files_sharing.po | 4 +- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/lib.po | 4 +- l10n/ja_JP/settings.po | 4 +- l10n/ja_JP/user_ldap.po | 4 +- l10n/ka/files.po | 4 +- l10n/ka/files_sharing.po | 4 +- l10n/ka_GE/core.po | 4 +- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_external.po | 4 +- l10n/ka_GE/files_sharing.po | 4 +- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/lib.po | 4 +- l10n/ka_GE/settings.po | 4 +- l10n/ka_GE/user_ldap.po | 4 +- l10n/ko/core.po | 4 +- l10n/ko/files.po | 4 +- l10n/ko/files_external.po | 4 +- l10n/ko/files_sharing.po | 4 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/lib.po | 4 +- l10n/ko/settings.po | 4 +- l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/core.po | 4 +- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_sharing.po | 4 +- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/lib.po | 4 +- l10n/ku_IQ/settings.po | 4 +- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/core.po | 4 +- l10n/lb/files.po | 4 +- l10n/lb/files_external.po | 4 +- l10n/lb/files_sharing.po | 4 +- l10n/lb/files_trashbin.po | 4 +- l10n/lb/lib.po | 4 +- l10n/lb/settings.po | 4 +- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/core.po | 4 +- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_external.po | 4 +- l10n/lt_LT/files_sharing.po | 4 +- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/lib.po | 4 +- l10n/lt_LT/settings.po | 4 +- l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/core.po | 4 +- l10n/lv/files.po | 4 +- l10n/lv/files_external.po | 4 +- l10n/lv/files_sharing.po | 4 +- l10n/lv/files_trashbin.po | 4 +- l10n/lv/lib.po | 4 +- l10n/lv/settings.po | 4 +- l10n/lv/user_ldap.po | 4 +- l10n/mk/core.po | 4 +- l10n/mk/files.po | 4 +- l10n/mk/files_external.po | 4 +- l10n/mk/files_sharing.po | 4 +- l10n/mk/files_trashbin.po | 4 +- l10n/mk/lib.po | 4 +- l10n/mk/settings.po | 4 +- l10n/mk/user_ldap.po | 4 +- l10n/ms_MY/core.po | 4 +- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_external.po | 4 +- l10n/ms_MY/files_sharing.po | 4 +- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/lib.po | 4 +- l10n/ms_MY/settings.po | 4 +- l10n/ms_MY/user_ldap.po | 4 +- l10n/my_MM/core.po | 4 +- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_sharing.po | 4 +- l10n/my_MM/lib.po | 4 +- l10n/nb_NO/core.po | 4 +- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_external.po | 4 +- l10n/nb_NO/files_sharing.po | 4 +- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/lib.po | 4 +- l10n/nb_NO/settings.po | 4 +- l10n/nb_NO/user_ldap.po | 4 +- l10n/nl/core.po | 4 +- l10n/nl/files.po | 4 +- l10n/nl/files_external.po | 4 +- l10n/nl/files_sharing.po | 4 +- l10n/nl/files_trashbin.po | 4 +- l10n/nl/lib.po | 4 +- l10n/nl/settings.po | 4 +- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/core.po | 4 +- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_external.po | 4 +- l10n/nn_NO/files_sharing.po | 4 +- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/lib.po | 4 +- l10n/nn_NO/settings.po | 4 +- l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/core.po | 4 +- l10n/oc/files.po | 4 +- l10n/oc/files_external.po | 4 +- l10n/oc/files_sharing.po | 4 +- l10n/oc/files_trashbin.po | 4 +- l10n/oc/lib.po | 4 +- l10n/oc/settings.po | 4 +- l10n/oc/user_ldap.po | 4 +- l10n/pl/core.po | 4 +- l10n/pl/files.po | 4 +- l10n/pl/files_external.po | 4 +- l10n/pl/files_sharing.po | 4 +- l10n/pl/files_trashbin.po | 4 +- l10n/pl/lib.po | 4 +- l10n/pl/settings.po | 4 +- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 4 +- l10n/pt_BR/files.po | 8 ++-- l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/files_sharing.po | 4 +- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/lib.po | 4 +- l10n/pt_BR/settings.po | 4 +- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/core.po | 4 +- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/files_external.po | 4 +- l10n/pt_PT/files_sharing.po | 4 +- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/lib.po | 4 +- l10n/pt_PT/settings.po | 4 +- l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/core.po | 4 +- l10n/ro/files.po | 4 +- l10n/ro/files_external.po | 4 +- l10n/ro/files_sharing.po | 4 +- l10n/ro/files_trashbin.po | 4 +- l10n/ro/lib.po | 4 +- l10n/ro/settings.po | 4 +- l10n/ro/user_ldap.po | 4 +- l10n/ru/core.po | 4 +- l10n/ru/files.po | 4 +- l10n/ru/files_external.po | 4 +- l10n/ru/files_sharing.po | 4 +- l10n/ru/files_trashbin.po | 4 +- l10n/ru/lib.po | 4 +- l10n/ru/settings.po | 4 +- l10n/ru/user_ldap.po | 4 +- l10n/si_LK/core.po | 4 +- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_external.po | 4 +- l10n/si_LK/files_sharing.po | 4 +- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/lib.po | 4 +- l10n/si_LK/settings.po | 4 +- l10n/si_LK/user_ldap.po | 4 +- l10n/sk_SK/core.po | 4 +- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_sharing.po | 4 +- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/lib.po | 4 +- l10n/sk_SK/settings.po | 4 +- l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/core.po | 4 +- l10n/sl/files.po | 4 +- l10n/sl/files_external.po | 4 +- l10n/sl/files_sharing.po | 4 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 4 +- l10n/sl/settings.po | 4 +- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 4 +- l10n/sq/files.po | 4 +- l10n/sq/files_external.po | 4 +- l10n/sq/files_sharing.po | 4 +- l10n/sq/files_trashbin.po | 4 +- l10n/sq/lib.po | 4 +- l10n/sq/settings.po | 4 +- l10n/sq/user_ldap.po | 4 +- l10n/sr/core.po | 4 +- l10n/sr/files.po | 4 +- l10n/sr/files_external.po | 4 +- l10n/sr/files_sharing.po | 4 +- l10n/sr/files_trashbin.po | 4 +- l10n/sr/lib.po | 4 +- l10n/sr/settings.po | 4 +- l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/core.po | 4 +- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_external.po | 4 +- l10n/sr@latin/files_sharing.po | 4 +- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/lib.po | 4 +- l10n/sr@latin/settings.po | 4 +- l10n/sv/core.po | 4 +- l10n/sv/files.po | 4 +- l10n/sv/files_external.po | 4 +- l10n/sv/files_sharing.po | 4 +- l10n/sv/files_trashbin.po | 4 +- l10n/sv/lib.po | 4 +- l10n/sv/settings.po | 4 +- l10n/sv/user_ldap.po | 4 +- l10n/ta_LK/core.po | 4 +- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_external.po | 4 +- l10n/ta_LK/files_sharing.po | 4 +- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/lib.po | 4 +- l10n/ta_LK/settings.po | 4 +- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/core.po | 4 +- l10n/te/files.po | 4 +- l10n/te/files_external.po | 4 +- l10n/te/files_trashbin.po | 4 +- l10n/te/lib.po | 4 +- l10n/te/settings.po | 4 +- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_external.po | 4 +- l10n/th_TH/files_sharing.po | 4 +- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/lib.po | 4 +- l10n/th_TH/settings.po | 4 +- l10n/th_TH/user_ldap.po | 4 +- l10n/tr/core.po | 4 +- l10n/tr/files.po | 4 +- l10n/tr/files_external.po | 4 +- l10n/tr/files_sharing.po | 4 +- l10n/tr/files_trashbin.po | 4 +- l10n/tr/lib.po | 4 +- l10n/tr/settings.po | 4 +- l10n/tr/user_ldap.po | 4 +- l10n/ug/core.po | 4 +- l10n/ug/files.po | 4 +- l10n/ug/files_external.po | 4 +- l10n/ug/files_sharing.po | 4 +- l10n/ug/files_trashbin.po | 4 +- l10n/ug/lib.po | 4 +- l10n/ug/settings.po | 4 +- l10n/ug/user_ldap.po | 4 +- l10n/uk/core.po | 4 +- l10n/uk/files.po | 4 +- l10n/uk/files_external.po | 4 +- l10n/uk/files_sharing.po | 4 +- l10n/uk/files_trashbin.po | 4 +- l10n/uk/lib.po | 4 +- l10n/uk/settings.po | 4 +- l10n/uk/user_ldap.po | 4 +- l10n/ur_PK/core.po | 4 +- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/lib.po | 4 +- l10n/ur_PK/settings.po | 4 +- l10n/ur_PK/user_ldap.po | 4 +- l10n/vi/core.po | 4 +- l10n/vi/files.po | 4 +- l10n/vi/files_external.po | 4 +- l10n/vi/files_sharing.po | 4 +- l10n/vi/files_trashbin.po | 4 +- l10n/vi/lib.po | 4 +- l10n/vi/settings.po | 4 +- l10n/vi/user_ldap.po | 4 +- l10n/zh_CN.GB2312/core.po | 4 +- l10n/zh_CN.GB2312/files.po | 57 ++++++++++++----------- l10n/zh_CN.GB2312/files_external.po | 4 +- l10n/zh_CN.GB2312/files_sharing.po | 4 +- l10n/zh_CN.GB2312/files_trashbin.po | 6 +-- l10n/zh_CN.GB2312/lib.po | 4 +- l10n/zh_CN.GB2312/settings.po | 19 ++++---- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN/core.po | 4 +- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_external.po | 4 +- l10n/zh_CN/files_sharing.po | 4 +- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/lib.po | 4 +- l10n/zh_CN/settings.po | 4 +- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/core.po | 4 +- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_external.po | 4 +- l10n/zh_HK/files_sharing.po | 4 +- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/lib.po | 4 +- l10n/zh_HK/settings.po | 4 +- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/core.po | 4 +- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_sharing.po | 4 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 4 +- l10n/zh_TW/settings.po | 4 +- l10n/zh_TW/user_ldap.po | 4 +- settings/l10n/cs_CZ.php | 1 + settings/l10n/zh_CN.GB2312.php | 6 +++ 541 files changed, 1140 insertions(+), 1100 deletions(-) diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 3ad679f876..a1e06483b6 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -68,6 +68,7 @@ "You don’t have write permissions here." => "Você não possui permissão de escrita aqui.", "Nothing in here. Upload something!" => "Nada aqui.Carrege alguma coisa!", "Download" => "Baixar", +"Size (MB)" => "Tamanho (MB)", "Unshare" => "Descompartilhar", "Upload too large" => "Upload muito grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor.", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 4108516cda..a515b8ac1b 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -1,18 +1,28 @@ "无法移动 %s - 存在同名文件", +"Could not move %s" => "无法移动 %s", +"Unable to set upload directory." => "无法设置上传文件夹", +"Invalid Token" => "非法Token", "No file was uploaded. Unknown error" => "没有上传文件。未知错误", "There is no error, the file uploaded with success" => "文件上传成功", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上传的文件超过了php.ini指定的upload_max_filesize", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了 HTML 表格中指定的 MAX_FILE_SIZE 选项", "The uploaded file was only partially uploaded" => "文件部分上传", "No file was uploaded" => "没有上传文件", "Missing a temporary folder" => "缺失临时文件夹", "Failed to write to disk" => "写磁盘失败", +"Not enough storage available" => "容量不足", +"Invalid directory." => "无效文件夹", "Files" => "文件", "Unable to upload your file as it is a directory or has 0 bytes" => "不能上传您的文件,由于它是文件夹或者为空文件", +"Not enough space available" => "容量不足", "Upload cancelled." => "上传取消了", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。", "URL cannot be empty." => "网址不能为空。", +"Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "无效文件夹名。“Shared”已经被系统保留。", "Error" => "出错", "Share" => "分享", +"Delete permanently" => "永久删除", "Delete" => "删除", "Rename" => "重命名", "Pending" => "等待中", @@ -22,8 +32,16 @@ "cancel" => "取消", "replaced {new_name} with {old_name}" => "已用 {old_name} 替换 {new_name}", "undo" => "撤销", +"perform delete operation" => "执行删除", "1 file uploading" => "1 个文件正在上传", "files uploading" => "个文件正在上传", +"'.' is an invalid file name." => "'.' 文件名不正确", +"File name cannot be empty." => "文件名不能为空", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "文件名内不能包含以下符号:\\ / < > : \" | ?和 *", +"Your storage is full, files can not be updated or synced anymore!" => "容量已满,不能再同步/上传文件了!", +"Your storage is almost full ({usedSpacePercent}%)" => "你的空间快用满了 ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "正在下载,可能会花点时间,跟文件大小有关", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "不正确文件夹名。Shared是保留名,不能使用。", "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", @@ -31,6 +49,7 @@ "{count} folders" => "{count} 个文件夹", "1 file" => "1 个文件", "{count} files" => "{count} 个文件", +"%s could not be renamed" => "不能重命名 %s", "Upload" => "上传", "File handling" => "文件处理中", "Maximum upload size" => "最大上传大小", @@ -44,14 +63,20 @@ "Text file" => "文本文档", "Folder" => "文件夹", "From link" => "来自链接", +"Deleted files" => "已删除的文件", "Cancel upload" => "取消上传", +"You don’t have write permissions here." => "您没有写入权限。", "Nothing in here. Upload something!" => "这里没有东西.上传点什么!", "Download" => "下载", +"Size (MB)" => "大小 (MB)", "Unshare" => "取消分享", "Upload too large" => "上传过大", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "你正在试图上传的文件超过了此服务器支持的最大的文件大小.", "Files are being scanned, please wait." => "正在扫描文件,请稍候.", "Current scanning" => "正在扫描", +"directory" => "文件夹", +"directories" => "文件夹", "file" => "文件", -"files" => "文件" +"files" => "文件", +"Upgrading filesystem cache..." => "升级系统缓存..." ); diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index a402b96a51..981e629ccf 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -8,10 +8,13 @@ "Private key password successfully updated." => "Heslo soukromého klíče úspěšně aktualizováno.", "Could not update the private key password. Maybe the old password was not correct." => "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně.", "Saving..." => "Ukládám...", +"personal settings" => "osobní nastavení", "Encryption" => "Šifrování", "Enabled" => "Povoleno", "Disabled" => "Zakázáno", "Change Password" => "Změnit heslo", +"Old log-in password" => "Staré přihlašovací heslo", +"Current log-in password" => "Aktuální přihlašovací heslo", "Enable password recovery:" => "Povolit obnovu hesla:", "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Povolení vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo", "File recovery settings updated" => "Možnosti obnovy souborů aktualizovány", diff --git a/apps/files_trashbin/l10n/zh_CN.GB2312.php b/apps/files_trashbin/l10n/zh_CN.GB2312.php index 4dda1e0433..1ab193517f 100644 --- a/apps/files_trashbin/l10n/zh_CN.GB2312.php +++ b/apps/files_trashbin/l10n/zh_CN.GB2312.php @@ -1,5 +1,6 @@ "出错", +"Delete permanently" => "永久删除", "Name" => "名称", "1 folder" => "1 个文件夹", "{count} folders" => "{count} 个文件夹", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 95e4cf33ca..28ebd31e08 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 00:12+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 98aa423f57..da68ebde64 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 00:12+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 1b3a380994..de66a112d4 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/ar/files.po index 0b982190ea..c8662dcc26 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ar/files_external.po index 7e00c0ddb6..ba4a145dfb 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 02827634ef..1572f74fac 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 3537fea4a4..db3debd4cf 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 16b87c0e62..2f4b940605 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 288874790f..b2b6aea0f0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 fb96c4cd0e..2ff7b22bb5 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 76c3f8f0a3..332d5d8934 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/bg_BG/files.po index 10ae3154ff..1a65d8e3e4 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bg_BG/files_external.po index 9d5782414f..1ec26eed0d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 7680272362..39839f0cce 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 40be643453..a76ace7d42 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Димитър Кръстев \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 2e7d5180a0..5b4afe7d1a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/bg_BG/settings.po index daaa6e37d7..4d5f517750 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 1c97c997b7..8c8a7f04ee 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 4a4e564466..f9b4b4e46a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/bn_BD/files.po index 0021735e65..9f0d3a8bb5 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bn_BD/files_external.po index f9b529eb83..bdf0fe0b57 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 a05ce26406..7e709542b7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 d01c8947b4..7f68d43652 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 6c2e1fc6a7..6e9c7fc05a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/bn_BD/settings.po index e3817b0f02..1646003672 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 4730166a47..ede72a7331 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 417fd5a160..de2493505c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index ae7816b5ee..49dc25b5d0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 556b5a1663..db4a71009a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 addac59e95..b32cc4c8b5 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/ca/files.po index 74afa9a7cf..e3d1879bca 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index bbd3104a0a..70fdcd757e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 3cecda9ed5..0352b17a82 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index c3e2976e01..2a67cc1970 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 30a96e77a1..1d6b9bce7a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index b32262b255..2cfaa706bc 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 98bbb53587..3d9fe4840e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 3c3d3ab5a6..753e4bcbb3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/cs_CZ/files.po index 362824c7da..5a1e15f217 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_encryption.po b/l10n/cs_CZ/files_encryption.po index 1d95d95e25..32b3711e2c 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 21:40+0000\n" +"Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -90,7 +90,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "osobní nastavení" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -145,11 +145,11 @@ msgstr "" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Staré přihlašovací heslo" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Aktuální přihlašovací heslo" #: templates/settings-personal.php:35 msgid "Update Private Key Password" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 3c8f39dc06..1081e36615 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 7bc8878096..009058c268 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 a85ca2dc3b..ba88989c83 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 f5d25f76c4..ff6e259c8b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/cs_CZ/settings.po index a04371f791..e3a5e42b0e 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Honza K. , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"Last-Translator: Honza K. \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -457,7 +458,7 @@ msgstr "WebDAV" msgid "" "Use this address to access your Files via WebDAV" -msgstr "" +msgstr "Použijte tuto adresu pro přístup k vašim souborům přes WebDAV" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 8bc4246b68..5cb7479158 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Tomáš Chvátal \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 d01a689877..0fe792daa1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/cy_GB/files.po index 2f93ea1414..644474a4e8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/cy_GB/files_external.po index ab93f44605..3344d5f942 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 1816dc611e..6734598241 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 617f09716f..f9864cff7b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: ubuntucymraeg \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 a2949ef000..744b27e83e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/cy_GB/settings.po index 637e780957..f8deb64304 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 c8119b3a11..9fe768403d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 436eb009d0..17d4a29cde 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/da/files.po index e5368760e8..69625ff9b5 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/da/files_external.po index 88ed7b9960..4327e82506 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 f5c6efa8b6..d985f8ed61 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 8d047965d6..6d66e0096a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 2a5a514e09..c38590eae9 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 037b13b192..81673c1bbd 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Morten Juhl-Johansen Zölde-Fejér \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 fb24bf6c92..9b6b44aea9 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 82337bd8ce..73df370dfe 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 97d898b905..a2a85e0e4b 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: kabum \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index a0699b5f97..3522c60ec1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index c1b07907a4..57c78aaec0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 03ace32021..b262334633 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 0acd18e7c4..ffd508ffb0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index db805cd95e..14052abc49 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index e185ad93c6..8cc60b025e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index b0ebe13769..d07b302107 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index cb2ea625ac..1ab688809e 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: kabum \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index f142a6f3e0..c7c6d2b1d0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 08c9c627b2..70f03d76a2 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: JamFX \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index e2af84a50b..26b5ade20b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 643bc5d1d4..ebc3587a91 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 2acd6a760e..afe7902518 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: kabum \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index e2a410ed79..932c640b40 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index fbf4187f43..7bd72f536c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/el/files.po index b1daa990f7..2f09f56bfa 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/el/files_external.po index c6ef3d731c..5b06ca4959 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: KAT.RAT12 \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 3b9c72488b..df2c2364ef 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 f4b95905ab..38a220a9fe 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 01e9096051..628bce9856 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 7d4b3acec4..7b205aa10d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 b6e8d46ada..75954d5624 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 14f884eeb1..de7a99b06c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 0068215337..530d7ae127 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 a99f6a683a..a0403a5ab8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/eo/files.po index cc4ac7a47f..39f0de92c9 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/eo/files_external.po index 36cb858464..29e2447756 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 e773f92704..545d249943 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 d9e9dab6fc..a101ca05d8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 c28dc99bd1..f91de11cbc 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index f00a6300cf..efdf8a9364 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 ce6dd0df65..a702879849 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 0371e176b3..a7c386f1c0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/es/files.po index b3b0005dca..b3bc62bf0e 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: qdneren \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_external.po b/l10n/es/files_external.po index 35f44d3284..514621e9c3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Korrosivo \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 8ec6229d31..cd0b468060 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Korrosivo \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 af6e20e1ec..399371f50e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Korrosivo \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 b6fde0aabb..e0f4e785fc 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 4ed0858105..e55a388406 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: qdneren \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 1a95acea9a..e9fc80da6e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: xhiena \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 497b1af1dd..1bb5c97f2b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: cjtess \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.po b/l10n/es_AR/files.po index d63d882688..6b94096adf 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: cjtess \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_external.po b/l10n/es_AR/files_external.po index b75445da54..6209aec6c4 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: cjtess \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 b3952440de..0ee0fee2b7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: cjtess \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 200eb8f91f..3b25f61356 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 7278cffdf6..c207b7d3ad 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/es_AR/settings.po index ac813b3a58..285be741db 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: cjtess \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 0785dcb72c..0fb1ddd620 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: cjtess \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 214ed83820..8b3e5a5db1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/et_EE/files.po index 01a843dd64..11827e1050 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/et_EE/files_external.po index fada542849..f7d74b5de3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Rivo Zängov \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 62fd3d0aa9..ec186da2f6 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Rivo Zängov \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 d92f2621e5..f15b0d1d9f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Rivo Zängov \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 d2d1a1d246..84c271e665 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/et_EE/settings.po index 495a9cddea..e771632af5 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: pisike.sipelgas \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 fd260b9799..f4f52bc460 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: pisike.sipelgas \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 3e797b2390..20aaf98c39 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/eu/files.po index 4c0a8919c9..a839da22e1 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/eu/files_external.po index 4884f31ed6..37a40a32b7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Piarres Beobide \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 f7e18507fc..410c3b63f8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 a98a95a06d..fd0ccb4dfa 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 2414bfec34..c7d8418df2 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 72f5f8bb47..5d00cb75ca 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 72b00374d7..24052d1205 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 752da423be..a6d104adb6 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: miki_mika1362 \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.po b/l10n/fa/files.po index b583885d4f..a9dee625da 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/fa/files_external.po index e0fdec10d1..22c3d14a09 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 084dde198a..e496ab9fe8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: miki_mika1362 \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 9e519a5e89..a44d5cdb76 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 cab43533a3..093be0b022 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index c5e4e99b9e..a7473f434d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: miki_mika1362 \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 a5823109b0..57e5973de4 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 3fadaa66ba..52c08a2331 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/fi_FI/files.po index b4484ecf33..7d41b834c6 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: Jiri Grönroos \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_external.po b/l10n/fi_FI/files_external.po index ef8b2bb5b1..7cc65d11fb 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 e513d3083f..a5d60a8618 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/fi_FI/files_trashbin.po index 29e47cbc2b..5561fa0151 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 4431c36289..c7d024e938 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/fi_FI/settings.po index 5a72b60d9a..dcd06f61ca 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: Jiri Grönroos \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/user_ldap.po b/l10n/fi_FI/user_ldap.po index 58a3b993c7..4ca8473c70 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 87c68a8e07..b647b0f1da 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/fr/files.po index ec0b8fc3ba..45a48beb40 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: Adalberto Rodrigues \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_external.po b/l10n/fr/files_external.po index aeacf0ffeb..65c17f1e65 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 5764090a67..3dd9759e29 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: square \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 ffb6f1f17e..339c287548 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 16f228a124..9068162ae4 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 33676d45f7..7e6f392cf7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Adalberto Rodrigues \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 cac7b0fe5b..b05ccf7eab 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: plachance \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 973338a9bd..09fa5a7481 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: mbouzada \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.po b/l10n/gl/files.po index e9b86bc4fe..50986299be 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: mbouzada \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_external.po b/l10n/gl/files_external.po index d82152aba7..6075d3b907 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 6ae448d176..f5f49c2dcd 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: mbouzada \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 335707e95f..388fd5636f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 45c2859fde..14d3f135cc 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 583c3595a2..c6f74c9855 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: mbouzada \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 a2f144cc28..b27a0ab622 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: mbouzada \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 f738a22728..d290750678 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/he/files.po index d045350c0e..7202b590e7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/he/files_external.po index 8e6505f364..b3fcf7085f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 2f5d4be14e..492b558183 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 81f14f996d..7b0cd79b04 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Yaron Shahrabani \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 279ea6627b..5e4100b0aa 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 77849b9866..cbebb9f732 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 d2498846a5..022d9171bc 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 4e091193e1..d0d24a1b46 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 037df967c5..a7be60f4b3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index deff5bf009..a208ad8bf0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 fe78c9e340..e5d75989a0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 00:12+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index e74f2ab2e5..5fb0df75df 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 57212d2eeb..731f78dfc1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 4c1188c419..9442ca449b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/hr/files.po index 4030dfdcbc..b698717f99 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hr/files_external.po index 65efe1f80e..f70836a463 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 7a64ecc822..e5a98636e0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 c71ce8f370..f5100a7013 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 7fd8bd641e..c0788fdcc8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index cff8666687..759d9c375f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 886091195b..347d7b4a28 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 f1ddee740b..190bfcabfd 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: Laszlo Tornoci \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.po b/l10n/hu_HU/files.po index 6c33e4f15f..4842ee57d0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hu_HU/files_external.po index d351ec42b1..121f27cac5 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Laszlo Tornoci \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 84442bfad2..fcca871d59 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Laszlo Tornoci \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 eced131ee8..2a4028c2c4 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 c3b1dc7091..e2c1110dca 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/hu_HU/settings.po index 04125b3dd9..e9f1c60b76 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: Laszlo Tornoci \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 a23ab0043b..973d3b6992 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Laszlo Tornoci \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 055ec36d2a..a5957b62d1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hy/files_external.po index a05a880704..a08cb07ca5 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-13 01:59+0200\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 a9500c772a..ba90f9fd89 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 57b074b7f6..4b49f524c5 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-13 01:59+0200\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 b5b47083c2..7b70517791 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 0e48a790af..e226c59513 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/ia/files.po index 121e35415c..6091e3a3c0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ia/files_external.po index 3edab445a0..3b3a9a92eb 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 10227616b4..5e8e8b264f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 2d2d0bf859..5106e3d84d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 db90715411..dbc18f99cb 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index ea8f492d02..9f08518a5e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 062fe370ae..84de207930 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 c4a94d8916..db149e9fdf 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/id/files.po index e50dfb5875..3f0af54873 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/id/files_external.po index 38c9dadf30..3b75ed53b8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 1745298a4d..7dac1ce0f0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 95380dfd8b..4f3569edfa 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 e38a923dae..949779c6d5 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 59ccbf9990..ce81b5d6e2 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 343d74ef16..4e1c8fc0e3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 335a216ca6..511e256a0d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/is/files.po index c12526a3c9..93004167d7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/is/files_external.po index ed904d29a0..b865d4805d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 53760e36c1..aa9ab3a81c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 b6d594a758..519a1a2c00 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 fe96a4eb81..abc392b7ac 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 3241ace9cd..7fd0a9a05f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 7ba394c6aa..2097576235 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Magnus Magnusson \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 c57f6cfc44..2a34c0ef9a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: Vincenzo Reale \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.po b/l10n/it/files.po index 6e42bbc2c8..395859ea94 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: Vincenzo Reale \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_external.po b/l10n/it/files_external.po index 1bb22fd88f..15d2fd8a17 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Vincenzo Reale \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 8b14e0d232..c49a946de1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Vincenzo Reale \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 706dd7c401..cdd899c864 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Vincenzo Reale \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 fe71d619e0..7e2d5c468c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index dcaeb4a70a..c400c3b9f7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Vincenzo Reale \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 76ff6e6e4a..e156294e56 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Vincenzo Reale \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 1a45ce251b..a1a587f17b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: Daisuke Deguchi \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.po b/l10n/ja_JP/files.po index 3eed98bc85..38ef9966b6 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: pabook \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_external.po b/l10n/ja_JP/files_external.po index 804e99ff30..58b7e9f2c5 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 1cb4016c85..b2fb180897 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: tt yn \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 1b7a1a082d..11116c6fa3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 1638cc4ab8..40c97d4b76 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ja_JP/settings.po index 9a6fb04543..cc4f12528d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Daisuke Deguchi \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 5e20206516..999b5340e6 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Daisuke Deguchi \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 c889ab1fa5..ee35e04fb7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index a15f9670d7..aec6923e1c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 62118b5ffa..2b7b6753e3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/ka_GE/files.po index 99f4220e89..fd64e68936 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ka_GE/files_external.po index 71d5d39202..8844706aa7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: drlinux64 \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 f05c262d5d..4b43a09c0a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 553f841007..3df85b832a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: drlinux64 \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 687a8f99d7..29260e0866 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ka_GE/settings.po index 8a77a4f8ea..69ab833dd7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 3b0caf9476..083defe02b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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/ko/core.po b/l10n/ko/core.po index 229d1fafa5..a94d4f6dfc 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/ko/files.po index 4f999bafb4..e8525b761b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ko/files_external.po index 0ee6930413..a018749128 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Shinjo Park \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 313ea27568..0e317b67b7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 2b49e2b50c..9d7b42e78c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 72a40abf87..c2b17c6224 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index ea29b83fb6..d82520be02 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 13b83d8d5f..7b620df0f6 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 369a065b49..e96da6f8b6 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/ku_IQ/files.po index 4120fbaceb..213aae2524 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_sharing.po b/l10n/ku_IQ/files_sharing.po index 50d3824234..6219e2aaff 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 e95aa956fa..4fa006cb5f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 3445745f77..f31a9ad3f1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 00:12+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ku_IQ/settings.po index 7fc45f6163..30ca4033fd 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 be82e8182a..a4f295cb48 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 85053a0cae..5fcd7ca4c8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/lb/files.po index 2cfd82b747..ce82202940 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lb/files_external.po index 009eb68a4b..2cb4f3ecfc 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 df6b07ac47..9985f4f9b6 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: llaera \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 14dd11fc61..f4122de66f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 4d394df55d..ca2ec59a92 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 469e40aecf..fbfdbde7b4 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 bbdcdad6d6..798f354819 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 3361e32efc..8481c93278 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/lt_LT/files.po index 211a1936c8..28a8ce85eb 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lt_LT/files_external.po index 2c3de22e2c..98b95cfecc 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Min2liz \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 d8cc3b8c76..e259705a74 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 c1594f5935..3e51fcee7a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: fizikiukas \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 61842c5008..54c7ef389a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/lt_LT/settings.po index 6c1c4bfc27..883fb204ae 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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/user_ldap.po b/l10n/lt_LT/user_ldap.po index cabe40bf89..a1e2c8880e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 20be207eb8..cf94d571fc 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/lv/files.po index a3219c4fdb..3c7ecc66d9 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lv/files_external.po index e379861a62..d0b0dafeba 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 f040331ed2..83375a8125 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 6c9f70fae4..b78b48d664 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 ca31647575..05ad6d4013 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 5beb30656d..4e74435afe 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 1fd875aca1..6d84c2f02a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 7e6ef270ee..b163de3a4a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/mk/files.po index 98180e062c..9598c17b79 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/mk/files_external.po index c3f5c4c39b..bf39d669e1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 359667d43c..968a2d275f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 15d525e6dd..135a101abf 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 68701482b0..4f3a178027 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 2884b27029..36849cddfe 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 c27afdcd01..8d80efb152 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 7bcbcb9bf2..1949bb6e39 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/ms_MY/files.po index 5b2961a178..005d749242 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ms_MY/files_external.po index e129c9bdfa..71b24ae708 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 ef4f811300..0a161b4dfb 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 5aa824e81b..f97e41b6a6 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 df4a71f7a4..8564901c55 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ms_MY/settings.po index c0475f4a41..5149f1b911 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 a2c392528c..4907387d7a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 5845d8d3d3..85e56cce42 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/my_MM/files.po index 31ec5cdb35..26b8a63e21 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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/files_sharing.po b/l10n/my_MM/files_sharing.po index a8b3d8a823..10f1a2a44f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 eda0198ec7..b0d73a3235 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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/nb_NO/core.po b/l10n/nb_NO/core.po index 6276ef9507..48e66b1075 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/nb_NO/files.po index 4e825430a4..32c3f78612 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nb_NO/files_external.po index fb252f8465..652c03ee3c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 7b7185a8d6..1d88d80865 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/nb_NO/files_trashbin.po index 0a2f4a3fcf..25f00a85e4 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 48dfa87614..df6c118216 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/nb_NO/settings.po index 99bf380858..6e664e6a58 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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/user_ldap.po b/l10n/nb_NO/user_ldap.po index d9de21dc71..3c1ab07c5c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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/nl/core.po b/l10n/nl/core.po index f072e88887..cd96912685 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/nl/files.po index be92613a74..0cce1e9dbd 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nl/files_external.po index 3ca9b3138e..1acf8cbe9f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: André Koot \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 1ae53a1cab..2173f57232 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/nl/files_trashbin.po index 20621c7ac5..89ab354901 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 bd0e87816a..9d8680d845 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 8af3050468..170ec1e7a9 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index e2af23e352..e1df05506f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: André Koot \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 eeb2a6eb37..f9fe56028a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/nn_NO/files.po index 7079b06a4f..3a843d2a5c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nn_NO/files_external.po index e6c01a385f..0202ba09a6 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 c09d827e1d..12042b66bc 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 72bad6aaaf..ee00dc06b7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: unhammer \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 81be64f4cd..d173e8e693 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/nn_NO/settings.po index acf9eec9e6..d3c2a0f8e7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 ac6ad9204d..4a8e1c9a46 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 c0a51c087b..f64fb9afa7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/oc/files.po index d85d951104..1b51e54a6b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/oc/files_external.po index bb76035a6d..b46ce7f9e3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 0a0708a520..4065001ee5 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 0d51e008ed..a73f079a0e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 4e42ef4695..a6b21d19a8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 00:12+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/oc/settings.po index 87aaa23363..81d6aeb8f3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 d28e9ce63e..f531d76498 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 0565708a75..48448d1f8a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/pl/files.po index 746ee9173d..69a42048e9 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/pl/files_external.po index 0ccc486a89..bc0166754d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 232faca3a0..db1bb5cd7d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 0d10269385..1c31bd92b3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 cd0d73fc00..37004d7392 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 8f567d7060..b83b15d448 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 d909a406aa..66783d82dc 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: orcio6 \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 0a9390f365..db9d1bd32e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/pt_BR/files.po index 51714250fb..73d2da8398 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"Last-Translator: Flávio Veras \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" @@ -310,7 +310,7 @@ msgstr "Baixar" #: templates/index.php:80 msgid "Size (MB)" -msgstr "" +msgstr "Tamanho (MB)" #: templates/index.php:87 templates/index.php:88 msgid "Unshare" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 3d413c402c..1f554a73d8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Flávio Veras \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 2f92428195..81bd65337c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Flávio Veras \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 b12e9306bf..1c59ac9026 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 3b232e2429..dc59c0c278 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/pt_BR/settings.po index f82d6a934f..2396a61d0e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: bjamalaro \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 d74920e3f6..773780b8d7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Flávio Veras \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 8bb50635fb..713c11e0ba 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/pt_PT/files.po index e63d23dd8c..4b24036f2f 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/pt_PT/files_external.po index e2eddf4ef7..2b84e6b94d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Mouxy \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 2a841a1b73..672b19116b 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/pt_PT/files_trashbin.po index 21a8df7690..a92101cb1e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 050ca2515c..d0e3dcfd18 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/pt_PT/settings.po index 4fae6fbe44..d54d4987a3 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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/user_ldap.po b/l10n/pt_PT/user_ldap.po index 26b7e4afad..5e81d3c8df 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index ed15982b5b..a18268e230 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/ro/files.po index 2eab93acfe..4dbb6c71f9 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ro/files_external.po index f175df0f5e..c72463a72a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 56e8c74a03..ce1a38a526 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: sergiu_sechel \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 ddae0f639b..69e28756c0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 2cfde1c9c1..8483db614e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index af83bc446b..10f989e644 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 2016faa783..379644b382 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 489c6fe69b..9636553bab 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+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.po b/l10n/ru/files.po index 638eb27e2e..478a365d90 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: hackproof \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_external.po b/l10n/ru/files_external.po index cb84bca19b..d56860635e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 008e4f1ee2..272ef2dbc1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Victor Bravo <>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index ef9d77191d..01f889d915 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 65e579525a..ffaf82a1f9 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 46d640ff65..7bac5faf4f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: hackproof \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 bd3ad30a25..4fff770325 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: alfsoft \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 c296049d1e..cb93ed3d4e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/si_LK/files.po index 0df2094783..75b81f2bd2 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/si_LK/files_external.po index b3deebc911..6370789a03 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 badd6dce9e..4c4a34310d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 af87b27d32..a319a37a68 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 91cc2a85c0..c202b5bd75 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/si_LK/settings.po index bdd4c43914..c934849d59 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 0f9bdcc25b..43aa73a46d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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_SK/core.po b/l10n/sk_SK/core.po index 172a91f803..6cffd2f1f3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: mhh \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.po b/l10n/sk_SK/files.po index cd8ba7d366..3cc4051509 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sk_SK/files_external.po index 0677cacec7..ce74122eb7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: mhh \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 786f26e578..7697c832e8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 12a09b4d48..f859e1a96e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 ee887ea468..463d471350 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/sk_SK/settings.po index cbac262755..de98a5d43b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: mhh \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 380213239c..9e14950ba1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: mhh \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 a5280d7ce3..26c9dcb0ba 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/sl/files.po index 9e529130ae..90a23fa56d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sl/files_external.po index dc5ad5d055..d62cbd3963 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index c2aa66484e..c28c7c8525 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 bd26624976..6662d6edb0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 1c034d2673..16ec6a0047 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 98c4910daf..4212a5e4f5 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 2fb7809f11..825da95e4d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: barbarak \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 34174fbc18..29539dc4fe 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/sq/files.po index f455b687af..7d76b793a2 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sq/files_external.po index 03fa14ff74..7455cdf844 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 758364e784..350674497a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 c054b36a32..d7a2323596 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 02c73af6f1..8ae1c9322c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index d572a7aede..40e5f285e3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 afdb649a8a..592827e1fc 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 1a1df5f958..23b2c8ea16 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr/files.po index 39f69a0abc..d6bf59317f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sr/files_external.po index 879d950065..23cbdc19d9 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 0527d223ee..ece8cdd48c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 45b9f5b657..e579111173 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 20ceb08419..3a8211136a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 51ed41d9e5..724ad31cc3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 a7482269d4..05e054d871 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 c80788d01a..223a8335e4 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr@latin/files.po index b1b5242167..01d9403cf3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sr@latin/files_external.po index 6214426196..34cc7a31b0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 af0547dc15..237fcc5bfd 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 cddd34271b..e8031f621f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 4cbd5ecff5..004e4ef67c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/sr@latin/settings.po index d7ee15db5f..19d3bca803 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 c35741e524..1c9ee824cb 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/sv/files.po index 9e58de9a4a..a1bbe63f45 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sv/files_external.po index 441b9f6300..c0ee990c4f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 8e0cb816d9..f665feb608 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/sv/files_trashbin.po index 8513452e20..65d79d642c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 50d7808aee..c38f933e6f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index edf44565b5..4ad256f3cf 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 3aabcdf6bc..d659c8ae03 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index ebd533e3d2..25fb962533 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/ta_LK/files.po index c18fa1ab9f..8efb684198 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ta_LK/files_external.po index 577fa41769..fab1a74ed3 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 ef74e4ce6b..682ad83af1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 8949fbc8e6..76c5ec2522 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 cab7b77a8f..3bb081ef29 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ta_LK/settings.po index 5f7aecf1ee..3c6df108ce 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 0d60917655..a4a78152b8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 d77a3fdd1f..e911abbd9d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/te/files.po index 840fbc98e2..b4331a1b1a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/te/files_external.po index 6d8b010cc2..dfc0ca62a8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 b2c8d77028..9699227cad 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 1b19e18acd..f9a1fe244c 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 00:12+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index d743483601..9d8b1ef042 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 c9cc63fec6..a7d5403974 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 ea42880450..9a22af3325 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-13 01:59+0200\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index d101ceb183..97a7a487f6 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-13 01:59+0200\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index eef3465146..ffd457b482 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-13 01:59+0200\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 4193c67553..2302e96689 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-13 01:59+0200\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 31911dd885..0ae068edc6 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-13 01:59+0200\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 1e4b75a57e..aeb70a2e96 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-13 01:59+0200\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index ed06a4edd1..88ea67b723 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-13 01:59+0200\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 924cfe2e5d..fc3ecf03a0 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-13 01:59+0200\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 08fba24706..1a209e4887 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-13 01:59+0200\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 55bd2f3348..398715ceef 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-13 01:59+0200\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index f05732aced..8546b3c3ab 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-13 01:59+0200\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 9abc30230e..ca4536e740 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/th_TH/files.po index 8b82b96a23..72a12f3c6b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/th_TH/files_external.po index 835b2c3c13..faf775ea18 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 ba55638606..110a6bf93f 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 8c4d1fc8a6..8f12a56e9e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 b9336d2ebc..c5045b45e1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/th_TH/settings.po index 0ffa833f93..413323b52d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 c1ee44a01e..b02e3caf06 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 641cc9df64..286217fe68 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/tr/files.po index 0a399c7230..38cd3f65f6 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/tr/files_external.po index 3c8ab6d4a1..ce5638c96d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 de83a2a718..c47da9c133 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 29599c4991..d88ad4e058 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 0881a58c17..2b09f65b62 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index e01d3ba44d..f40a28ba81 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index b1ef4259ad..0662149662 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: ismail yenigül \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 ad089a454b..5778652e7e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index f277730cee..9ab4d77811 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 3bc572e8e6..c960654188 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 6ef12853b7..28c78a96b1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index ce903b8111..ec66530b72 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 4c5c46a6f0..c804014b76 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 04368f8092..a0f3f3b5a7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index df18129718..32a70ef0be 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index bd853320c0..3a016bb42a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/uk/files.po index 5a9cc84ad7..ef77e95ed0 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/uk/files_external.po index 1d72ee75f1..97f605032b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 beeced1c70..fc638449c2 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 0ac0148e34..c2b1851bdd 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 84a75e7333..c416516771 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 2d631aa40f..0bb61ad8c1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 688532ebba..7af360fd24 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 1d13f01004..ce348882b8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/ur_PK/files.po index a5d55fe2bb..7ec81f24c7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 3f3dbcdf7e..c529ec8cc8 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 6bf50359fe..03e2e134ff 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 00:12+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ur_PK/settings.po index 853dc6e67e..8d53e5d458 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 58e2c74356..0fd95d38fc 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 43e3e7603e..bcbd62275e 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/vi/files.po index 6291a10264..ad1b93bd31 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/vi/files_external.po index 4e3e089445..de7f99c9d1 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: xtdv \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 b3d4ba6921..2442f05470 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 8d6c84a3ae..db4c3b3859 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 65f526ac0d..e4252e85c6 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 8967e98ba0..313b0a47a7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 4788aaf79f..43d177a60a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 bcf4c67879..b7efcae5ab 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN.GB2312/files.po index ece1015c63..f2c81e235c 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# hlx98007 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"Last-Translator: hlx98007 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,20 +21,20 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "无法移动 %s - 存在同名文件" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "无法移动 %s" #: ajax/upload.php:16 ajax/upload.php:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "无法设置上传文件夹" #: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "非法Token" #: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" @@ -46,7 +47,7 @@ msgstr "文件上传成功" #: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "上传的文件超过了php.ini指定的upload_max_filesize" #: ajax/upload.php:69 msgid "" @@ -72,11 +73,11 @@ msgstr "写磁盘失败" #: ajax/upload.php:91 msgid "Not enough storage available" -msgstr "" +msgstr "容量不足" #: ajax/upload.php:123 msgid "Invalid directory." -msgstr "" +msgstr "无效文件夹" #: appinfo/app.php:12 msgid "Files" @@ -88,7 +89,7 @@ msgstr "不能上传您的文件,由于它是文件夹或者为空文件" #: js/file-upload.js:24 msgid "Not enough space available" -msgstr "" +msgstr "容量不足" #: js/file-upload.js:64 msgid "Upload cancelled." @@ -105,7 +106,7 @@ msgstr "网址不能为空。" #: js/file-upload.js:238 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +msgstr "无效文件夹名。“Shared”已经被系统保留。" #: js/file-upload.js:267 js/file-upload.js:283 js/files.js:373 js/files.js:389 #: js/files.js:693 js/files.js:731 @@ -118,7 +119,7 @@ msgstr "分享" #: js/fileactions.js:126 msgid "Delete permanently" -msgstr "" +msgstr "永久删除" #: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 msgid "Delete" @@ -158,7 +159,7 @@ msgstr "撤销" #: js/filelist.js:376 msgid "perform delete operation" -msgstr "" +msgstr "执行删除" #: js/filelist.js:458 msgid "1 file uploading" @@ -170,35 +171,35 @@ msgstr "个文件正在上传" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' 文件名不正确" #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr "文件名不能为空" #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "文件名内不能包含以下符号:\\ / < > : \" | ?和 *" #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "容量已满,不能再同步/上传文件了!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "你的空间快用满了 ({usedSpacePercent}%)" #: js/files.js:231 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "正在下载,可能会花点时间,跟文件大小有关" #: js/files.js:344 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "不正确文件夹名。Shared是保留名,不能使用。" #: js/files.js:744 templates/index.php:69 msgid "Name" @@ -231,7 +232,7 @@ msgstr "{count} 个文件" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "不能重命名 %s" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -287,7 +288,7 @@ msgstr "来自链接" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "已删除的文件" #: templates/index.php:48 msgid "Cancel upload" @@ -295,7 +296,7 @@ msgstr "取消上传" #: templates/index.php:54 msgid "You don’t have write permissions here." -msgstr "" +msgstr "您没有写入权限。" #: templates/index.php:61 msgid "Nothing in here. Upload something!" @@ -307,7 +308,7 @@ msgstr "下载" #: templates/index.php:80 msgid "Size (MB)" -msgstr "" +msgstr "大小 (MB)" #: templates/index.php:87 templates/index.php:88 msgid "Unshare" @@ -333,11 +334,11 @@ msgstr "正在扫描" #: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "文件夹" #: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "文件夹" #: templates/part.list.php:87 msgid "file" @@ -349,4 +350,4 @@ msgstr "文件" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "升级系统缓存..." diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 6c8eda2a4e..ed92f4236b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: hyy0591 \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 f1f61eec90..8bcabac2cb 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 92e7343b79..a2334794bb 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -41,7 +41,7 @@ msgstr "" #: js/trash.js:123 msgid "Delete permanently" -msgstr "" +msgstr "永久删除" #: js/trash.js:176 templates/index.php:17 msgid "Name" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index a68b16e450..7036fc2d4b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_CN.GB2312/settings.po index 74db645569..ba55e8d739 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# hlx98007 , 2013 # hyy0591 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"Last-Translator: hlx98007 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -232,7 +233,7 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "服务器没有可用的Internet连接。这意味着像挂载外部储存、更新提示和安装第三方插件等功能会失效。远程访问文件和发送邮件提醒也可能会失效。建议开启服务器的英特网网络。" #: templates/admin.php:94 msgid "Cron" @@ -307,7 +308,7 @@ msgstr "强制客户端通过加密连接与ownCloud连接" msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "请先使用HTTPS访问本站以设置强制SSL的开关。" #: templates/admin.php:197 msgid "Log" @@ -315,7 +316,7 @@ msgstr "日志" #: templates/admin.php:198 msgid "Log level" -msgstr "" +msgstr "日志等级" #: templates/admin.php:229 msgid "More" @@ -457,7 +458,7 @@ msgstr "WebDAV" msgid "" "Use this address to access your Files via WebDAV" -msgstr "" +msgstr "访问WebDAV请点击 此处" #: templates/users.php:21 msgid "Login Name" @@ -469,13 +470,13 @@ msgstr "新建" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "" +msgstr "管理员恢复密码" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "在恢复密码的过程中请输入恢复密钥来恢复用户数据" #: templates/users.php:42 msgid "Default Storage" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index afc0a560c9..23ac2088b7 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 f349adf3b7..98a3e14471 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN/files.po index 2efcc9eaf4..349cca337a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/zh_CN/files_external.po index d4f08d1169..02ae031d2d 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 9be6d38dab..d1c2cc0d17 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 64824d302a..ac313340bd 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 d3e073b8be..dfaabff265 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_CN/settings.po index 4b656efd02..a89f1b2321 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 8d8569a68c..3d3aac4c80 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: modokwang \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 05f0781bd3..ba141e3103 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_HK/files.po index 8b98d760ef..03f5361c90 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/zh_HK/files_external.po index abcaf135d8..c791bafdbb 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 51eca586ec..22d0a7909a 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 2ab02827f7..650b00e7d6 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 942724f5a4..171cd43f91 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_HK/settings.po index 8ffda2fe70..c1475d455b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: I Robot \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 a4863b6860..b59d9283dd 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 dfc5e50afd..174361c0eb 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: pellaeon \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.po b/l10n/zh_TW/files.po index 78f2ceed4b..4745ff4275 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:14+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: pellaeon \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_external.po b/l10n/zh_TW/files_external.po index 5d9c9bd6ee..baf774403b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: pellaeon \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 4b2e0ea5e5..cb34eb7364 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 4f2a4428cb..4a64d534d5 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: I Robot \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 73ea4ad538..7ca4646491 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-14 00:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_TW/settings.po index 6d0f280872..42bc48882b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:03+0200\n" +"PO-Revision-Date: 2013-07-13 23:14+0000\n" "Last-Translator: pellaeon \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_ldap.po b/l10n/zh_TW/user_ldap.po index bb84f65741..cee161db1b 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-13 01:59+0200\n" -"PO-Revision-Date: 2013-07-12 23:15+0000\n" +"POT-Creation-Date: 2013-07-14 02:02+0200\n" +"PO-Revision-Date: 2013-07-13 23:15+0000\n" "Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 433eb83462..2c4cd54523 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -98,6 +98,7 @@ "Language" => "Jazyk", "Help translate" => "Pomoci s překladem", "WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "Použijte tuto adresu pro přístup k vašim souborům přes WebDAV", "Login Name" => "Přihlašovací jméno", "Create" => "Vytvořit", "Admin Recovery Password" => "Heslo obnovy správce", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 65a6938c8b..789c93de23 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -46,6 +46,7 @@ "Locale not working" => "区域设置未运作", "This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud 服务器不能把系统区域设置到 %s。这意味着文件名可内可能含有某些引起问题的字符。我们强烈建议在您的系统上安装必要的包来支持“%s”。", "Internet connection not working" => "互联网连接未运作", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "服务器没有可用的Internet连接。这意味着像挂载外部储存、更新提示和安装第三方插件等功能会失效。远程访问文件和发送邮件提醒也可能会失效。建议开启服务器的英特网网络。", "Cron" => "Cron", "Execute one task with each page loaded" => "在每个页面载入时执行一项任务", "cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。", @@ -62,7 +63,9 @@ "Security" => "安全", "Enforce HTTPS" => "强制HTTPS", "Enforces the clients to connect to ownCloud via an encrypted connection." => "强制客户端通过加密连接与ownCloud连接", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "请先使用HTTPS访问本站以设置强制SSL的开关。", "Log" => "日志", +"Log level" => "日志等级", "More" => "更多", "Less" => "更少", "Version" => "版本", @@ -95,8 +98,11 @@ "Language" => "语言", "Help translate" => "帮助翻译", "WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "访问WebDAV请点击 此处", "Login Name" => "登录名", "Create" => "新建", +"Admin Recovery Password" => "管理员恢复密码", +"Enter the recovery password in order to recover the users files during password change" => "在恢复密码的过程中请输入恢复密钥来恢复用户数据", "Default Storage" => "默认容量", "Unlimited" => "无限制", "Other" => "其他", From 995feea42a3f3f2bb2145b581be5ea9115338eaf Mon Sep 17 00:00:00 2001 From: rolandgeider Date: Sun, 14 Jul 2013 11:54:39 +0200 Subject: [PATCH 063/108] Use transifex.com on link to translations --- settings/templates/personal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 147ad834a9..ee5ebae708 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -96,7 +96,7 @@ if($_['passwordChangeSupported']) { - t('Help translate'));?>

From f2639d62692b9cd25adff137fa65954fc3b5a794 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 15 Jul 2013 02:34:45 +0200 Subject: [PATCH 064/108] [tx-robot] updated from transifex --- l10n/af_ZA/core.po | 4 ++-- l10n/af_ZA/lib.po | 4 ++-- l10n/ar/core.po | 4 ++-- l10n/ar/files.po | 4 ++-- l10n/ar/files_external.po | 4 ++-- l10n/ar/files_sharing.po | 4 ++-- l10n/ar/files_trashbin.po | 4 ++-- l10n/ar/lib.po | 4 ++-- l10n/ar/settings.po | 4 ++-- l10n/ar/user_ldap.po | 4 ++-- l10n/bg_BG/core.po | 4 ++-- l10n/bg_BG/files.po | 4 ++-- l10n/bg_BG/files_external.po | 4 ++-- l10n/bg_BG/files_sharing.po | 4 ++-- l10n/bg_BG/files_trashbin.po | 4 ++-- l10n/bg_BG/lib.po | 4 ++-- l10n/bg_BG/settings.po | 4 ++-- l10n/bg_BG/user_ldap.po | 4 ++-- l10n/bn_BD/core.po | 4 ++-- l10n/bn_BD/files.po | 4 ++-- l10n/bn_BD/files_external.po | 4 ++-- l10n/bn_BD/files_sharing.po | 4 ++-- l10n/bn_BD/files_trashbin.po | 4 ++-- l10n/bn_BD/lib.po | 4 ++-- l10n/bn_BD/settings.po | 4 ++-- l10n/bn_BD/user_ldap.po | 4 ++-- l10n/bs/core.po | 4 ++-- l10n/bs/files.po | 4 ++-- l10n/bs/files_trashbin.po | 4 ++-- l10n/ca/core.po | 4 ++-- l10n/ca/files.po | 4 ++-- l10n/ca/files_external.po | 4 ++-- l10n/ca/files_sharing.po | 4 ++-- l10n/ca/files_trashbin.po | 4 ++-- l10n/ca/lib.po | 4 ++-- l10n/ca/settings.po | 4 ++-- l10n/ca/user_ldap.po | 4 ++-- l10n/cs_CZ/core.po | 4 ++-- l10n/cs_CZ/files.po | 4 ++-- l10n/cs_CZ/files_external.po | 4 ++-- l10n/cs_CZ/files_sharing.po | 4 ++-- l10n/cs_CZ/files_trashbin.po | 4 ++-- l10n/cs_CZ/lib.po | 4 ++-- l10n/cs_CZ/settings.po | 4 ++-- l10n/cs_CZ/user_ldap.po | 4 ++-- l10n/cy_GB/core.po | 4 ++-- l10n/cy_GB/files.po | 4 ++-- l10n/cy_GB/files_external.po | 4 ++-- l10n/cy_GB/files_sharing.po | 4 ++-- l10n/cy_GB/files_trashbin.po | 4 ++-- l10n/cy_GB/lib.po | 4 ++-- l10n/cy_GB/settings.po | 4 ++-- l10n/cy_GB/user_ldap.po | 4 ++-- l10n/da/core.po | 4 ++-- l10n/da/files.po | 4 ++-- l10n/da/files_external.po | 4 ++-- l10n/da/files_sharing.po | 4 ++-- l10n/da/files_trashbin.po | 4 ++-- l10n/da/lib.po | 4 ++-- l10n/da/settings.po | 4 ++-- l10n/da/user_ldap.po | 4 ++-- l10n/de/core.po | 4 ++-- l10n/de/files.po | 4 ++-- l10n/de/files_external.po | 4 ++-- l10n/de/files_sharing.po | 4 ++-- l10n/de/files_trashbin.po | 4 ++-- l10n/de/lib.po | 4 ++-- l10n/de/settings.po | 4 ++-- l10n/de/user_ldap.po | 4 ++-- l10n/de_DE/core.po | 4 ++-- l10n/de_DE/files.po | 4 ++-- l10n/de_DE/files_external.po | 4 ++-- l10n/de_DE/files_sharing.po | 4 ++-- l10n/de_DE/files_trashbin.po | 4 ++-- l10n/de_DE/lib.po | 4 ++-- l10n/de_DE/settings.po | 4 ++-- l10n/de_DE/user_ldap.po | 4 ++-- l10n/el/core.po | 4 ++-- l10n/el/files.po | 4 ++-- l10n/el/files_external.po | 4 ++-- l10n/el/files_sharing.po | 4 ++-- l10n/el/files_trashbin.po | 4 ++-- l10n/el/lib.po | 4 ++-- l10n/el/settings.po | 4 ++-- l10n/el/user_ldap.po | 4 ++-- l10n/en@pirate/files.po | 4 ++-- l10n/en@pirate/files_sharing.po | 4 ++-- l10n/eo/core.po | 4 ++-- l10n/eo/files.po | 4 ++-- l10n/eo/files_external.po | 4 ++-- l10n/eo/files_sharing.po | 4 ++-- l10n/eo/files_trashbin.po | 4 ++-- l10n/eo/lib.po | 4 ++-- l10n/eo/settings.po | 4 ++-- l10n/eo/user_ldap.po | 4 ++-- l10n/es/core.po | 4 ++-- l10n/es/files.po | 4 ++-- l10n/es/files_external.po | 4 ++-- l10n/es/files_sharing.po | 4 ++-- l10n/es/files_trashbin.po | 4 ++-- l10n/es/lib.po | 4 ++-- l10n/es/settings.po | 4 ++-- l10n/es/user_ldap.po | 4 ++-- l10n/es_AR/core.po | 4 ++-- l10n/es_AR/files.po | 4 ++-- l10n/es_AR/files_external.po | 4 ++-- l10n/es_AR/files_sharing.po | 4 ++-- l10n/es_AR/files_trashbin.po | 4 ++-- l10n/es_AR/lib.po | 4 ++-- l10n/es_AR/settings.po | 4 ++-- l10n/es_AR/user_ldap.po | 4 ++-- l10n/et_EE/core.po | 4 ++-- l10n/et_EE/files.po | 4 ++-- l10n/et_EE/files_external.po | 4 ++-- l10n/et_EE/files_sharing.po | 4 ++-- l10n/et_EE/files_trashbin.po | 4 ++-- l10n/et_EE/lib.po | 4 ++-- l10n/et_EE/settings.po | 4 ++-- l10n/et_EE/user_ldap.po | 4 ++-- l10n/eu/core.po | 4 ++-- l10n/eu/files.po | 4 ++-- l10n/eu/files_external.po | 4 ++-- l10n/eu/files_sharing.po | 4 ++-- l10n/eu/files_trashbin.po | 4 ++-- l10n/eu/lib.po | 4 ++-- l10n/eu/settings.po | 4 ++-- l10n/eu/user_ldap.po | 4 ++-- l10n/fa/core.po | 4 ++-- l10n/fa/files.po | 4 ++-- l10n/fa/files_external.po | 4 ++-- l10n/fa/files_sharing.po | 4 ++-- l10n/fa/files_trashbin.po | 4 ++-- l10n/fa/lib.po | 4 ++-- l10n/fa/settings.po | 4 ++-- l10n/fa/user_ldap.po | 4 ++-- l10n/fi_FI/core.po | 4 ++-- l10n/fi_FI/files.po | 4 ++-- l10n/fi_FI/files_external.po | 4 ++-- l10n/fi_FI/files_sharing.po | 4 ++-- l10n/fi_FI/files_trashbin.po | 4 ++-- l10n/fi_FI/lib.po | 4 ++-- l10n/fi_FI/settings.po | 4 ++-- l10n/fi_FI/user_ldap.po | 4 ++-- l10n/fr/core.po | 4 ++-- l10n/fr/files.po | 4 ++-- l10n/fr/files_external.po | 4 ++-- l10n/fr/files_sharing.po | 4 ++-- l10n/fr/files_trashbin.po | 4 ++-- l10n/fr/lib.po | 4 ++-- l10n/fr/settings.po | 4 ++-- l10n/fr/user_ldap.po | 4 ++-- l10n/gl/core.po | 4 ++-- l10n/gl/files.po | 4 ++-- l10n/gl/files_external.po | 4 ++-- l10n/gl/files_sharing.po | 4 ++-- l10n/gl/files_trashbin.po | 4 ++-- l10n/gl/lib.po | 4 ++-- l10n/gl/settings.po | 4 ++-- l10n/gl/user_ldap.po | 4 ++-- l10n/he/core.po | 4 ++-- l10n/he/files.po | 4 ++-- l10n/he/files_external.po | 4 ++-- l10n/he/files_sharing.po | 4 ++-- l10n/he/files_trashbin.po | 4 ++-- l10n/he/lib.po | 4 ++-- l10n/he/settings.po | 4 ++-- l10n/he/user_ldap.po | 4 ++-- l10n/hi/core.po | 4 ++-- l10n/hi/files.po | 4 ++-- l10n/hi/files_trashbin.po | 4 ++-- l10n/hi/lib.po | 4 ++-- l10n/hi/settings.po | 4 ++-- l10n/hi/user_ldap.po | 4 ++-- l10n/hr/core.po | 4 ++-- l10n/hr/files.po | 4 ++-- l10n/hr/files_external.po | 4 ++-- l10n/hr/files_sharing.po | 4 ++-- l10n/hr/files_trashbin.po | 4 ++-- l10n/hr/lib.po | 4 ++-- l10n/hr/settings.po | 4 ++-- l10n/hr/user_ldap.po | 4 ++-- l10n/hu_HU/core.po | 4 ++-- l10n/hu_HU/files.po | 4 ++-- l10n/hu_HU/files_external.po | 4 ++-- l10n/hu_HU/files_sharing.po | 4 ++-- l10n/hu_HU/files_trashbin.po | 4 ++-- l10n/hu_HU/lib.po | 4 ++-- l10n/hu_HU/settings.po | 4 ++-- l10n/hu_HU/user_ldap.po | 4 ++-- l10n/hy/files.po | 4 ++-- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 ++-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 ++-- l10n/ia/core.po | 4 ++-- l10n/ia/files.po | 4 ++-- l10n/ia/files_external.po | 4 ++-- l10n/ia/files_sharing.po | 4 ++-- l10n/ia/files_trashbin.po | 4 ++-- l10n/ia/lib.po | 4 ++-- l10n/ia/settings.po | 4 ++-- l10n/ia/user_ldap.po | 4 ++-- l10n/id/core.po | 4 ++-- l10n/id/files.po | 4 ++-- l10n/id/files_external.po | 4 ++-- l10n/id/files_sharing.po | 4 ++-- l10n/id/files_trashbin.po | 4 ++-- l10n/id/lib.po | 4 ++-- l10n/id/settings.po | 4 ++-- l10n/id/user_ldap.po | 4 ++-- l10n/is/core.po | 4 ++-- l10n/is/files.po | 4 ++-- l10n/is/files_external.po | 4 ++-- l10n/is/files_sharing.po | 4 ++-- l10n/is/files_trashbin.po | 4 ++-- l10n/is/lib.po | 4 ++-- l10n/is/settings.po | 4 ++-- l10n/is/user_ldap.po | 4 ++-- l10n/it/core.po | 4 ++-- l10n/it/files.po | 4 ++-- l10n/it/files_external.po | 4 ++-- l10n/it/files_sharing.po | 4 ++-- l10n/it/files_trashbin.po | 4 ++-- l10n/it/lib.po | 4 ++-- l10n/it/settings.po | 4 ++-- l10n/it/user_ldap.po | 4 ++-- l10n/ja_JP/core.po | 4 ++-- l10n/ja_JP/files.po | 4 ++-- l10n/ja_JP/files_external.po | 4 ++-- l10n/ja_JP/files_sharing.po | 4 ++-- l10n/ja_JP/files_trashbin.po | 4 ++-- l10n/ja_JP/lib.po | 4 ++-- l10n/ja_JP/settings.po | 4 ++-- l10n/ja_JP/user_ldap.po | 4 ++-- l10n/ka/files.po | 4 ++-- l10n/ka/files_sharing.po | 4 ++-- l10n/ka_GE/core.po | 4 ++-- l10n/ka_GE/files.po | 4 ++-- l10n/ka_GE/files_external.po | 4 ++-- l10n/ka_GE/files_sharing.po | 4 ++-- l10n/ka_GE/files_trashbin.po | 4 ++-- l10n/ka_GE/lib.po | 4 ++-- l10n/ka_GE/settings.po | 4 ++-- l10n/ka_GE/user_ldap.po | 4 ++-- l10n/ko/core.po | 4 ++-- l10n/ko/files.po | 4 ++-- l10n/ko/files_external.po | 4 ++-- l10n/ko/files_sharing.po | 4 ++-- l10n/ko/files_trashbin.po | 4 ++-- l10n/ko/lib.po | 4 ++-- l10n/ko/settings.po | 4 ++-- l10n/ko/user_ldap.po | 4 ++-- l10n/ku_IQ/core.po | 4 ++-- l10n/ku_IQ/files.po | 4 ++-- l10n/ku_IQ/files_sharing.po | 4 ++-- l10n/ku_IQ/files_trashbin.po | 4 ++-- l10n/ku_IQ/lib.po | 4 ++-- l10n/ku_IQ/settings.po | 4 ++-- l10n/ku_IQ/user_ldap.po | 4 ++-- l10n/lb/core.po | 4 ++-- l10n/lb/files.po | 4 ++-- l10n/lb/files_external.po | 4 ++-- l10n/lb/files_sharing.po | 4 ++-- l10n/lb/files_trashbin.po | 4 ++-- l10n/lb/lib.po | 4 ++-- l10n/lb/settings.po | 4 ++-- l10n/lb/user_ldap.po | 4 ++-- l10n/lt_LT/core.po | 4 ++-- l10n/lt_LT/files.po | 4 ++-- l10n/lt_LT/files_external.po | 4 ++-- l10n/lt_LT/files_sharing.po | 4 ++-- l10n/lt_LT/files_trashbin.po | 4 ++-- l10n/lt_LT/lib.po | 4 ++-- l10n/lt_LT/settings.po | 4 ++-- l10n/lt_LT/user_ldap.po | 4 ++-- l10n/lv/core.po | 4 ++-- l10n/lv/files.po | 4 ++-- l10n/lv/files_external.po | 4 ++-- l10n/lv/files_sharing.po | 4 ++-- l10n/lv/files_trashbin.po | 4 ++-- l10n/lv/lib.po | 4 ++-- l10n/lv/settings.po | 4 ++-- l10n/lv/user_ldap.po | 4 ++-- l10n/mk/core.po | 4 ++-- l10n/mk/files.po | 4 ++-- l10n/mk/files_external.po | 4 ++-- l10n/mk/files_sharing.po | 4 ++-- l10n/mk/files_trashbin.po | 4 ++-- l10n/mk/lib.po | 4 ++-- l10n/mk/settings.po | 4 ++-- l10n/mk/user_ldap.po | 4 ++-- l10n/ms_MY/core.po | 4 ++-- l10n/ms_MY/files.po | 4 ++-- l10n/ms_MY/files_external.po | 4 ++-- l10n/ms_MY/files_sharing.po | 4 ++-- l10n/ms_MY/files_trashbin.po | 4 ++-- l10n/ms_MY/lib.po | 4 ++-- l10n/ms_MY/settings.po | 4 ++-- l10n/ms_MY/user_ldap.po | 4 ++-- l10n/my_MM/core.po | 4 ++-- l10n/my_MM/files.po | 4 ++-- l10n/my_MM/files_sharing.po | 4 ++-- l10n/my_MM/lib.po | 4 ++-- l10n/nb_NO/core.po | 4 ++-- l10n/nb_NO/files.po | 4 ++-- l10n/nb_NO/files_external.po | 4 ++-- l10n/nb_NO/files_sharing.po | 4 ++-- l10n/nb_NO/files_trashbin.po | 4 ++-- l10n/nb_NO/lib.po | 4 ++-- l10n/nb_NO/settings.po | 4 ++-- l10n/nb_NO/user_ldap.po | 4 ++-- l10n/nl/core.po | 4 ++-- l10n/nl/files.po | 4 ++-- l10n/nl/files_external.po | 4 ++-- l10n/nl/files_sharing.po | 4 ++-- l10n/nl/files_trashbin.po | 4 ++-- l10n/nl/lib.po | 4 ++-- l10n/nl/settings.po | 4 ++-- l10n/nl/user_ldap.po | 4 ++-- l10n/nn_NO/core.po | 4 ++-- l10n/nn_NO/files.po | 4 ++-- l10n/nn_NO/files_external.po | 4 ++-- l10n/nn_NO/files_sharing.po | 4 ++-- l10n/nn_NO/files_trashbin.po | 4 ++-- l10n/nn_NO/lib.po | 4 ++-- l10n/nn_NO/settings.po | 4 ++-- l10n/nn_NO/user_ldap.po | 4 ++-- l10n/oc/core.po | 4 ++-- l10n/oc/files.po | 4 ++-- l10n/oc/files_external.po | 4 ++-- l10n/oc/files_sharing.po | 4 ++-- l10n/oc/files_trashbin.po | 4 ++-- l10n/oc/lib.po | 4 ++-- l10n/oc/settings.po | 4 ++-- l10n/oc/user_ldap.po | 4 ++-- l10n/pl/core.po | 4 ++-- l10n/pl/files.po | 4 ++-- l10n/pl/files_external.po | 4 ++-- l10n/pl/files_sharing.po | 4 ++-- l10n/pl/files_trashbin.po | 4 ++-- l10n/pl/lib.po | 4 ++-- l10n/pl/settings.po | 4 ++-- l10n/pl/user_ldap.po | 4 ++-- l10n/pt_BR/core.po | 4 ++-- l10n/pt_BR/files.po | 4 ++-- l10n/pt_BR/files_external.po | 4 ++-- l10n/pt_BR/files_sharing.po | 4 ++-- l10n/pt_BR/files_trashbin.po | 4 ++-- l10n/pt_BR/lib.po | 4 ++-- l10n/pt_BR/settings.po | 4 ++-- l10n/pt_BR/user_ldap.po | 4 ++-- l10n/pt_PT/core.po | 4 ++-- l10n/pt_PT/files.po | 4 ++-- l10n/pt_PT/files_external.po | 4 ++-- l10n/pt_PT/files_sharing.po | 4 ++-- l10n/pt_PT/files_trashbin.po | 4 ++-- l10n/pt_PT/lib.po | 4 ++-- l10n/pt_PT/settings.po | 4 ++-- l10n/pt_PT/user_ldap.po | 4 ++-- l10n/ro/core.po | 4 ++-- l10n/ro/files.po | 4 ++-- l10n/ro/files_external.po | 4 ++-- l10n/ro/files_sharing.po | 4 ++-- l10n/ro/files_trashbin.po | 4 ++-- l10n/ro/lib.po | 4 ++-- l10n/ro/settings.po | 4 ++-- l10n/ro/user_ldap.po | 4 ++-- l10n/ru/core.po | 4 ++-- l10n/ru/files.po | 4 ++-- l10n/ru/files_external.po | 4 ++-- l10n/ru/files_sharing.po | 4 ++-- l10n/ru/files_trashbin.po | 4 ++-- l10n/ru/lib.po | 4 ++-- l10n/ru/settings.po | 4 ++-- l10n/ru/user_ldap.po | 4 ++-- l10n/si_LK/core.po | 4 ++-- l10n/si_LK/files.po | 4 ++-- l10n/si_LK/files_external.po | 4 ++-- l10n/si_LK/files_sharing.po | 4 ++-- l10n/si_LK/files_trashbin.po | 4 ++-- l10n/si_LK/lib.po | 4 ++-- l10n/si_LK/settings.po | 4 ++-- l10n/si_LK/user_ldap.po | 4 ++-- l10n/sk_SK/core.po | 4 ++-- l10n/sk_SK/files.po | 4 ++-- l10n/sk_SK/files_external.po | 4 ++-- l10n/sk_SK/files_sharing.po | 4 ++-- l10n/sk_SK/files_trashbin.po | 4 ++-- l10n/sk_SK/lib.po | 4 ++-- l10n/sk_SK/settings.po | 4 ++-- l10n/sk_SK/user_ldap.po | 4 ++-- l10n/sl/core.po | 4 ++-- l10n/sl/files.po | 4 ++-- l10n/sl/files_external.po | 4 ++-- l10n/sl/files_sharing.po | 4 ++-- l10n/sl/files_trashbin.po | 4 ++-- l10n/sl/lib.po | 4 ++-- l10n/sl/settings.po | 4 ++-- l10n/sl/user_ldap.po | 4 ++-- l10n/sq/core.po | 4 ++-- l10n/sq/files.po | 4 ++-- l10n/sq/files_external.po | 4 ++-- l10n/sq/files_sharing.po | 4 ++-- l10n/sq/files_trashbin.po | 4 ++-- l10n/sq/lib.po | 4 ++-- l10n/sq/settings.po | 4 ++-- l10n/sq/user_ldap.po | 4 ++-- l10n/sr/core.po | 4 ++-- l10n/sr/files.po | 4 ++-- l10n/sr/files_external.po | 4 ++-- l10n/sr/files_sharing.po | 4 ++-- l10n/sr/files_trashbin.po | 4 ++-- l10n/sr/lib.po | 4 ++-- l10n/sr/settings.po | 4 ++-- l10n/sr/user_ldap.po | 4 ++-- l10n/sr@latin/core.po | 4 ++-- l10n/sr@latin/files.po | 4 ++-- l10n/sr@latin/files_external.po | 4 ++-- l10n/sr@latin/files_sharing.po | 4 ++-- l10n/sr@latin/files_trashbin.po | 4 ++-- l10n/sr@latin/lib.po | 4 ++-- l10n/sr@latin/settings.po | 4 ++-- l10n/sv/core.po | 4 ++-- l10n/sv/files.po | 4 ++-- l10n/sv/files_external.po | 4 ++-- l10n/sv/files_sharing.po | 4 ++-- l10n/sv/files_trashbin.po | 4 ++-- l10n/sv/lib.po | 4 ++-- l10n/sv/settings.po | 4 ++-- l10n/sv/user_ldap.po | 4 ++-- l10n/ta_LK/core.po | 4 ++-- l10n/ta_LK/files.po | 4 ++-- l10n/ta_LK/files_external.po | 4 ++-- l10n/ta_LK/files_sharing.po | 4 ++-- l10n/ta_LK/files_trashbin.po | 4 ++-- l10n/ta_LK/lib.po | 4 ++-- l10n/ta_LK/settings.po | 4 ++-- l10n/ta_LK/user_ldap.po | 4 ++-- l10n/te/core.po | 4 ++-- l10n/te/files.po | 4 ++-- l10n/te/files_external.po | 4 ++-- l10n/te/files_trashbin.po | 4 ++-- l10n/te/lib.po | 4 ++-- l10n/te/settings.po | 4 ++-- l10n/te/user_ldap.po | 4 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 ++-- l10n/th_TH/files.po | 4 ++-- l10n/th_TH/files_external.po | 4 ++-- l10n/th_TH/files_sharing.po | 4 ++-- l10n/th_TH/files_trashbin.po | 4 ++-- l10n/th_TH/lib.po | 4 ++-- l10n/th_TH/settings.po | 4 ++-- l10n/th_TH/user_ldap.po | 4 ++-- l10n/tr/core.po | 4 ++-- l10n/tr/files.po | 4 ++-- l10n/tr/files_external.po | 4 ++-- l10n/tr/files_sharing.po | 4 ++-- l10n/tr/files_trashbin.po | 4 ++-- l10n/tr/lib.po | 4 ++-- l10n/tr/settings.po | 4 ++-- l10n/tr/user_ldap.po | 4 ++-- l10n/ug/core.po | 4 ++-- l10n/ug/files.po | 4 ++-- l10n/ug/files_external.po | 4 ++-- l10n/ug/files_sharing.po | 4 ++-- l10n/ug/files_trashbin.po | 4 ++-- l10n/ug/lib.po | 4 ++-- l10n/ug/settings.po | 4 ++-- l10n/ug/user_ldap.po | 4 ++-- l10n/uk/core.po | 4 ++-- l10n/uk/files.po | 4 ++-- l10n/uk/files_external.po | 4 ++-- l10n/uk/files_sharing.po | 4 ++-- l10n/uk/files_trashbin.po | 4 ++-- l10n/uk/lib.po | 4 ++-- l10n/uk/settings.po | 4 ++-- l10n/uk/user_ldap.po | 4 ++-- l10n/ur_PK/core.po | 4 ++-- l10n/ur_PK/files.po | 4 ++-- l10n/ur_PK/files_trashbin.po | 4 ++-- l10n/ur_PK/lib.po | 4 ++-- l10n/ur_PK/settings.po | 4 ++-- l10n/ur_PK/user_ldap.po | 4 ++-- l10n/vi/core.po | 4 ++-- l10n/vi/files.po | 4 ++-- l10n/vi/files_external.po | 4 ++-- l10n/vi/files_sharing.po | 4 ++-- l10n/vi/files_trashbin.po | 4 ++-- l10n/vi/lib.po | 4 ++-- l10n/vi/settings.po | 4 ++-- l10n/vi/user_ldap.po | 4 ++-- l10n/zh_CN.GB2312/core.po | 4 ++-- l10n/zh_CN.GB2312/files.po | 4 ++-- l10n/zh_CN.GB2312/files_external.po | 4 ++-- l10n/zh_CN.GB2312/files_sharing.po | 4 ++-- l10n/zh_CN.GB2312/files_trashbin.po | 4 ++-- l10n/zh_CN.GB2312/lib.po | 4 ++-- l10n/zh_CN.GB2312/settings.po | 4 ++-- l10n/zh_CN.GB2312/user_ldap.po | 4 ++-- l10n/zh_CN/core.po | 4 ++-- l10n/zh_CN/files.po | 4 ++-- l10n/zh_CN/files_external.po | 4 ++-- l10n/zh_CN/files_sharing.po | 4 ++-- l10n/zh_CN/files_trashbin.po | 4 ++-- l10n/zh_CN/lib.po | 4 ++-- l10n/zh_CN/settings.po | 4 ++-- l10n/zh_CN/user_ldap.po | 4 ++-- l10n/zh_HK/core.po | 4 ++-- l10n/zh_HK/files.po | 4 ++-- l10n/zh_HK/files_external.po | 4 ++-- l10n/zh_HK/files_sharing.po | 4 ++-- l10n/zh_HK/files_trashbin.po | 4 ++-- l10n/zh_HK/lib.po | 4 ++-- l10n/zh_HK/settings.po | 4 ++-- l10n/zh_HK/user_ldap.po | 4 ++-- l10n/zh_TW/core.po | 4 ++-- l10n/zh_TW/files.po | 4 ++-- l10n/zh_TW/files_external.po | 4 ++-- l10n/zh_TW/files_sharing.po | 4 ++-- l10n/zh_TW/files_trashbin.po | 4 ++-- l10n/zh_TW/lib.po | 4 ++-- l10n/zh_TW/settings.po | 4 ++-- l10n/zh_TW/user_ldap.po | 4 ++-- 534 files changed, 1055 insertions(+), 1055 deletions(-) diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 28ebd31e08..7a01f98a8f 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index da68ebde64..e81fc22070 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index de66a112d4..98bf833ddf 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/ar/files.po index c8662dcc26..a61fcd7d7b 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/ar/files_external.po index ba4a145dfb..9e5bf4bf1f 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 1572f74fac..7844194142 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 db3debd4cf..c47098d055 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 2f4b940605..a2590ff9fd 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index b2b6aea0f0..c1f5ac6922 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 2ff7b22bb5..9f37b09419 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 332d5d8934..d147d515c4 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/bg_BG/files.po index 1a65d8e3e4..e8cbbef59c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/bg_BG/files_external.po index 1ec26eed0d..0fcfc21da0 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 39839f0cce..51c4cb6e93 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 a76ace7d42..951c4ffab7 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Димитър Кръстев \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 5b4afe7d1a..60da0a5e0f 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/bg_BG/settings.po index 4d5f517750..0f93416deb 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 8c8a7f04ee..5a17cd41ed 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 f9b4b4e46a..fde42f5d98 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/bn_BD/files.po index 9f0d3a8bb5..59f0552ecd 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/bn_BD/files_external.po index bdf0fe0b57..97a7a748c5 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 7e709542b7..c468e5af86 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 7f68d43652..6a511480a2 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 6e9c7fc05a..2252505ef0 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/bn_BD/settings.po index 1646003672..e3b8ca0535 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 ede72a7331..69ac8639e1 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 de2493505c..0b00330431 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 49dc25b5d0..7eec57eeb9 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index db4a71009a..5a20901c76 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 b32cc4c8b5..c7400ac9db 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/ca/files.po index e3d1879bca..f302c09130 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 70fdcd757e..7711e8dc3d 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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" "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 0352b17a82..3cf80bc3ee 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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" "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 2a67cc1970..1d89ecfbe9 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 1d6b9bce7a..7d73b9585d 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 2cfaa706bc..b57bef18ba 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23: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 3d9fe4840e..c387cd2bba 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23: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 753e4bcbb3..cb9c750381 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/cs_CZ/files.po index 5a1e15f217..14baccb8d1 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/cs_CZ/files_external.po index 1081e36615..0bd95c47fb 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 009058c268..89f5e4a643 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 ba88989c83..c436ea9c1d 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 ff6e259c8b..0934df91bc 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/cs_CZ/settings.po index e3a5e42b0e..e57309eadc 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Honza K. \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 5cb7479158..384c6dca28 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: Tomáš Chvátal \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 0fe792daa1..c6b7517c57 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/cy_GB/files.po index 644474a4e8..75dd7cf708 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/cy_GB/files_external.po index 3344d5f942..b061e77f23 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 6734598241..74080cb9b9 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 f9864cff7b..7f552d0aef 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: ubuntucymraeg \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 744b27e83e..f53493488d 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/cy_GB/settings.po index f8deb64304..5fe9ee583d 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 9fe768403d..1b20cbda12 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 17d4a29cde..5f0816847c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/da/files.po index 69625ff9b5..2280300c20 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/da/files_external.po index 4327e82506..97927b1bf3 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 d985f8ed61..708ccea974 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 6d66e0096a..6a5f9c277d 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 c38590eae9..a6d93ebdb9 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 81673c1bbd..0909e08611 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Morten Juhl-Johansen Zölde-Fejér \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 9b6b44aea9..5cf21dcf87 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 73df370dfe..aab8b54fa0 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-15 00:22+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index a2a85e0e4b..74cf41dea8 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: kabum \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 3522c60ec1..3f33a144a2 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 57c78aaec0..8f35904ecf 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index b262334633..3fecf1fa38 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index ffd508ffb0..491541398c 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 14052abc49..461eed0654 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 8cc60b025e..a188d16c5f 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index d07b302107..4e6d227320 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 1ab688809e..28d664e02d 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: kabum \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index c7c6d2b1d0..a5c7227299 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 70f03d76a2..aede741f50 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: JamFX \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 26b5ade20b..6defdd31ee 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index ebc3587a91..c763a3d95c 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index afe7902518..3d8e333baf 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: kabum \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 932c640b40..e7ba773674 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 7bd72f536c..d284cd712a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/el/files.po index 2f09f56bfa..73ad879739 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/el/files_external.po index 5b06ca4959..20e70d6700 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: KAT.RAT12 \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 df2c2364ef..634cc17e54 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 38a220a9fe..b4f223976b 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 628bce9856..6c96fbf186 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 7b205aa10d..1c2cdcbe3a 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 75954d5624..9731606303 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 de7a99b06c..657ded3ad4 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 530d7ae127..01d61e1fba 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 a0403a5ab8..beb69ea265 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/eo/files.po index 39f0de92c9..a3df6ef17a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/eo/files_external.po index 29e2447756..3b9be7fe2c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 545d249943..1cbe546c22 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 a101ca05d8..2d5339b6ac 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 f91de11cbc..c4a11f439c 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index efdf8a9364..9fa5a15710 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 a702879849..746ce516aa 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 a7c386f1c0..3f18cde6c5 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/es/files.po index b3bc62bf0e..c1758c8957 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: qdneren \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_external.po b/l10n/es/files_external.po index 514621e9c3..61aef3a650 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Korrosivo \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 cd0b468060..fdd0bb62ee 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Korrosivo \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 399371f50e..1216416340 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Korrosivo \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 e0f4e785fc..b4872992c1 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index e55a388406..f9dee57549 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: qdneren \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 e9fc80da6e..7e2e43da7b 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: xhiena \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 1bb5c97f2b..b6099b5fc9 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-15 00:22+0000\n" "Last-Translator: cjtess \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.po b/l10n/es_AR/files.po index 6b94096adf..eb1317c895 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: cjtess \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_external.po b/l10n/es_AR/files_external.po index 6209aec6c4..0c14fcd4d9 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: cjtess \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 0ee0fee2b7..c20a28c0f0 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: cjtess \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 3b25f61356..4bf320b149 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 c207b7d3ad..23fa03fb42 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/es_AR/settings.po index 285be741db..8bccf0fa4b 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: cjtess \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 0fb1ddd620..0149a7affb 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: cjtess \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 8b3e5a5db1..cd3bb0d8cb 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/et_EE/files.po index 11827e1050..b2e8c35d41 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/et_EE/files_external.po index f7d74b5de3..0588c06918 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Rivo Zängov \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 ec186da2f6..185a61737e 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Rivo Zängov \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 f15b0d1d9f..01f1f71d77 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Rivo Zängov \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 84c271e665..7751bd7908 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/et_EE/settings.po index e771632af5..fcd8b78148 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: pisike.sipelgas \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 f4f52bc460..573356e6ed 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: pisike.sipelgas \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 20aaf98c39..f91c61b45b 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/eu/files.po index a839da22e1..a0fb2b92a0 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/eu/files_external.po index 37a40a32b7..342c6faea5 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Piarres Beobide \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 410c3b63f8..a14dae9124 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 fd0ccb4dfa..e1846e5626 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 c7d8418df2..538827e619 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 5d00cb75ca..b9ffd7c916 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 24052d1205..4bbaef94f6 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 a6d104adb6..b471ca25a6 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-15 00:22+0000\n" "Last-Translator: miki_mika1362 \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.po b/l10n/fa/files.po index a9dee625da..2ef8fbc44c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/fa/files_external.po index 22c3d14a09..4a2a89eaa4 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index e496ab9fe8..b28fd6a30d 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: miki_mika1362 \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 a44d5cdb76..14bb3e307d 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 093be0b022..7c654f4af3 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-15 00:22+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index a7473f434d..88d9b9729f 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: miki_mika1362 \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 57e5973de4..b876c7e18b 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 52c08a2331..23c656d765 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/fi_FI/files.po index 7d41b834c6..769eda72a0 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/fi_FI/files_external.po index 7cc65d11fb..af197411d2 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 a5d60a8618..6cb58f71cf 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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_trashbin.po b/l10n/fi_FI/files_trashbin.po index 5561fa0151..54de6f374b 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 c7d024e938..02d6f5351a 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/fi_FI/settings.po index dcd06f61ca..02afc024f9 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Jiri Grönroos \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/user_ldap.po b/l10n/fi_FI/user_ldap.po index 4ca8473c70..0737b4bc06 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 b647b0f1da..dee88b2508 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/fr/files.po index 45a48beb40..d7f65f3282 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/fr/files_external.po index 65c17f1e65..65d20c7831 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 3dd9759e29..0ae12c3ded 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: square \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 339c287548..cc9085180a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 9068162ae4..49018beafe 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 7e6f392cf7..70e31b44bd 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Adalberto Rodrigues \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 b05ccf7eab..6960d656a0 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: plachance \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 09fa5a7481..5b393d74d1 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-15 00:22+0000\n" "Last-Translator: mbouzada \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.po b/l10n/gl/files.po index 50986299be..6853906459 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: mbouzada \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_external.po b/l10n/gl/files_external.po index 6075d3b907..c64addd5c8 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 f5f49c2dcd..09b6f9fc50 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: mbouzada \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 388fd5636f..23c20011a2 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 14d3f135cc..237adf5f3c 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index c6f74c9855..cc5b76cef7 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: mbouzada \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 b27a0ab622..7245661313 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: mbouzada \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 d290750678..ef48a20276 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/he/files.po index 7202b590e7..3b6df10aa6 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/he/files_external.po index b3fcf7085f..52562d075e 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 492b558183..1ca2d4c54b 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 7b0cd79b04..09391b3dde 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Yaron Shahrabani \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 5e4100b0aa..5da87298fa 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index cbebb9f732..f9cc9d49f0 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 022d9171bc..9a716be54d 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 d0d24a1b46..5da80d7d60 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index a7be60f4b3..41ddb12355 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index a208ad8bf0..c09e3f7397 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 e5d75989a0..43405095dc 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 5fb0df75df..bdaa881db3 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 731f78dfc1..0cba9904ba 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 9442ca449b..f89b696a8d 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/hr/files.po index b698717f99..3f8de3fa3a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/hr/files_external.po index f70836a463..5cfa64c1c8 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 e5a98636e0..dd9765afb8 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 f5100a7013..a37d8ef328 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 c0788fdcc8..0247748899 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 759d9c375f..5ada653ae2 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 347d7b4a28..9d45f9968b 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 190bfcabfd..060fe7f19d 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-15 00:22+0000\n" "Last-Translator: Laszlo Tornoci \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.po b/l10n/hu_HU/files.po index 4842ee57d0..032b336c80 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/hu_HU/files_external.po index 121f27cac5..e32bc77c6f 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Laszlo Tornoci \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 fcca871d59..040296b406 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Laszlo Tornoci \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 2a4028c2c4..b5e998aa8c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 e2c1110dca..6644f9be31 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/hu_HU/settings.po index e9f1c60b76..830c808034 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Laszlo Tornoci \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 973d3b6992..38b4934ae2 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: Laszlo Tornoci \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 a5957b62d1..78f096a57c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/hy/files_external.po index a08cb07ca5..04526c1aaf 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-14 02:02+0200\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 ba90f9fd89..75a044682e 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 4b49f524c5..26541c8326 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-14 02:02+0200\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 7b70517791..9a7542a4e9 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 e226c59513..64286762b5 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/ia/files.po index 6091e3a3c0..57c489bd82 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/ia/files_external.po index 3b3a9a92eb..4c419fe3ee 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 5e8e8b264f..86a6867bc8 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 5106e3d84d..991ae73746 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 dbc18f99cb..123e470a96 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 9f08518a5e..f4d5747b9e 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 84de207930..e174d2dbc7 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 db149e9fdf..d1530c5193 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/id/files.po index 3f0af54873..f00a58c6fb 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/id/files_external.po index 3b75ed53b8..1f85c66277 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 7dac1ce0f0..ed2f983ab4 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 4f3569edfa..dfa8b074a5 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 949779c6d5..90b921a57a 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index ce81b5d6e2..ac325b2c7b 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 4e1c8fc0e3..2130a127c3 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 511e256a0d..70cd24829f 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/is/files.po index 93004167d7..4e9f2fab68 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/is/files_external.po index b865d4805d..6634245eee 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 aa9ab3a81c..09e733b544 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 519a1a2c00..f52eccdd15 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 abc392b7ac..01eeede2ec 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 7fd0a9a05f..e03e16dfec 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 2097576235..3066b044f0 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Magnus Magnusson \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 2a34c0ef9a..9fcdd7d564 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-15 00:22+0000\n" "Last-Translator: Vincenzo Reale \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.po b/l10n/it/files.po index 395859ea94..610fa380be 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/it/files_external.po index 15d2fd8a17..7bbcf1cd0f 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 c49a946de1..0b3a971058 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 cdd899c864..9a7fb77192 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 7e2d5c468c..737dce7b4b 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-15 00:22+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index c400c3b9f7..ac27b24fb7 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Vincenzo Reale \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 e156294e56..beffcc9b7a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: Vincenzo Reale \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 a1a587f17b..0b1f3ea0b7 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-15 00:22+0000\n" "Last-Translator: Daisuke Deguchi \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.po b/l10n/ja_JP/files.po index 38ef9966b6..cd7bb1d258 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: pabook \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_external.po b/l10n/ja_JP/files_external.po index 58b7e9f2c5..df3947af79 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 b2fb180897..f141a95f8b 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: tt yn \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 11116c6fa3..4c15cd46ae 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 40c97d4b76..552a26b811 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/ja_JP/settings.po index cc4f12528d..1e131eaa70 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Daisuke Deguchi \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 999b5340e6..b9b1a169b1 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: Daisuke Deguchi \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 ee35e04fb7..8b71e233b3 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index aec6923e1c..32885cbd73 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 2b7b6753e3..ca46ff0d92 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/ka_GE/files.po index fd64e68936..d3efe720de 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/ka_GE/files_external.po index 8844706aa7..dec9518fbf 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: drlinux64 \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 4b43a09c0a..c456d55bdc 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 3df85b832a..8c1a4e2c12 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: drlinux64 \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 29260e0866..d48c26c11a 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/ka_GE/settings.po index 69ab833dd7..5d1a3d4061 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 083defe02b..faf89cbefd 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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/ko/core.po b/l10n/ko/core.po index a94d4f6dfc..a8ade2a35a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/ko/files.po index e8525b761b..240743a726 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/ko/files_external.po index a018749128..c3cd16a957 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Shinjo Park \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 0e317b67b7..6682175242 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 9d7b42e78c..0438f39dec 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 c2b17c6224..6c52cabd67 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index d82520be02..2bdfd76e93 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 7b620df0f6..2b1872ce5a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 e96da6f8b6..8893aff016 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/ku_IQ/files.po index 213aae2524..276346a4e2 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_sharing.po b/l10n/ku_IQ/files_sharing.po index 6219e2aaff..b26a8184dd 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 4fa006cb5f..072368fb82 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 f31a9ad3f1..4174dad549 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/ku_IQ/settings.po index 30ca4033fd..dc81a204e4 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 a4f295cb48..4df95acb1d 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 5fcd7ca4c8..40b48a44a2 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/lb/files.po index ce82202940..42f147b1c6 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/lb/files_external.po index 2cb4f3ecfc..192e6a0e6c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 9985f4f9b6..cb32e6aa5f 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: llaera \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 f4122de66f..5fef4353fe 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 ca2ec59a92..2b28ee7042 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index fbfdbde7b4..192b91ba0b 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 798f354819..0f8102ebab 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 8481c93278..0b06bba805 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/lt_LT/files.po index 28a8ce85eb..b021b74b70 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/lt_LT/files_external.po index 98b95cfecc..bce7b9b52c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Min2liz \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 e259705a74..30e55fb41a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 3e51fcee7a..f66a8a0ce3 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: fizikiukas \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 54c7ef389a..11111dcc7f 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/lt_LT/settings.po index 883fb204ae..7b85423bd9 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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/user_ldap.po b/l10n/lt_LT/user_ldap.po index a1e2c8880e..57d42c468d 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 cf94d571fc..fad8ca39fb 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/lv/files.po index 3c7ecc66d9..85bf37da9a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/lv/files_external.po index d0b0dafeba..e82a461679 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 83375a8125..826e012207 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 b78b48d664..63822c5854 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 05ad6d4013..ba2b3139b7 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 4e74435afe..07c7792f15 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 6d84c2f02a..dc4a7df6b7 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 b163de3a4a..1538e502fd 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/mk/files.po index 9598c17b79..4f01df8226 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/mk/files_external.po index bf39d669e1..523da5dd22 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 968a2d275f..ed98aff16c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 135a101abf..de0653196a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 4f3a178027..cfcea7371c 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 36849cddfe..d34e84d39a 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 8d80efb152..f0dace2af5 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 1949bb6e39..9615d06035 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/ms_MY/files.po index 005d749242..e929bcc185 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/ms_MY/files_external.po index 71b24ae708..d104343009 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 0a161b4dfb..a5f2b676ea 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 f97e41b6a6..9ba6691ec1 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 8564901c55..752176b6b4 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/ms_MY/settings.po index 5149f1b911..a8b0954c43 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 4907387d7a..a494c386f7 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 85e56cce42..7f3d05ae19 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:24+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/my_MM/files.po index 26b8a63e21..e23e9949dc 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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/files_sharing.po b/l10n/my_MM/files_sharing.po index 10f1a2a44f..e71a33fcbc 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 b0d73a3235..7271da3853 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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/nb_NO/core.po b/l10n/nb_NO/core.po index 48e66b1075..75e1d2d324 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/nb_NO/files.po index 32c3f78612..cd443c4e26 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/nb_NO/files_external.po index 652c03ee3c..ad13ec7ed2 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23: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 1d88d80865..151cd1b5e0 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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_trashbin.po b/l10n/nb_NO/files_trashbin.po index 25f00a85e4..8ac5cc0bc5 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23: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 df6c118216..ac149328d9 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/nb_NO/settings.po index 6e664e6a58..4bd2dc39b3 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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/user_ldap.po b/l10n/nb_NO/user_ldap.po index 3c1ab07c5c..0c3fdb1ebb 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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/nl/core.po b/l10n/nl/core.po index cd96912685..7352282bf3 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/nl/files.po index 0cce1e9dbd..8b170f50af 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/nl/files_external.po index 1acf8cbe9f..ba3676225e 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: André Koot \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 2173f57232..4f993adf25 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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_trashbin.po b/l10n/nl/files_trashbin.po index 89ab354901..281c9ff9e5 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 9d8680d845..93d98cb310 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 170ec1e7a9..1e5c9f0e7b 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index e1df05506f..26d4c12889 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: André Koot \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 f9fe56028a..e94b904a95 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/nn_NO/files.po index 3a843d2a5c..1dba71c237 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/nn_NO/files_external.po index 0202ba09a6..27824f544c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 12042b66bc..0c79189c66 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 ee00dc06b7..4ed6f8ac88 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: unhammer \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 d173e8e693..3ea1252cb6 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/nn_NO/settings.po index d3c2a0f8e7..d37243cd2d 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 4a8e1c9a46..9e17b44a97 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 f64fb9afa7..d1a6763457 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/oc/files.po index 1b51e54a6b..abada50050 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/oc/files_external.po index b46ce7f9e3..e4794bb67d 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 4065001ee5..85c347a7be 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 a73f079a0e..9792a345a8 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 a6b21d19a8..192782b618 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/oc/settings.po index 81d6aeb8f3..a832efe3d3 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 f531d76498..bad4c6ac4f 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 48448d1f8a..d21e338c28 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/pl/files.po index 69a42048e9..e388324522 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/pl/files_external.po index bc0166754d..5b62e8b973 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index db1bb5cd7d..897622cbf7 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 1c31bd92b3..30a78df05b 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 37004d7392..82cf85ccef 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index b83b15d448..401d110a51 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 66783d82dc..3a5aecaec7 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: orcio6 \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 db9d1bd32e..851b751237 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/pt_BR/files.po index 73d2da8398..e4ee8420c7 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/pt_BR/files_external.po index 1f554a73d8..fe1ee79dce 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 81bd65337c..3422c03176 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 1c59ac9026..7a55ae541c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 dc59c0c278..ca8d184de0 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/pt_BR/settings.po index 2396a61d0e..4487c3b7fe 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: bjamalaro \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 773780b8d7..c8570e2a6c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: Flávio Veras \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 713c11e0ba..ab4a616764 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/pt_PT/files.po index 4b24036f2f..699f88e106 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/pt_PT/files_external.po index 2b84e6b94d..391f85fb8f 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Mouxy \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 672b19116b..9829fd295f 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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_trashbin.po b/l10n/pt_PT/files_trashbin.po index a92101cb1e..3304ccf5a7 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 d0e3dcfd18..07cdc42d55 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/pt_PT/settings.po index d54d4987a3..70ff56b300 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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/user_ldap.po b/l10n/pt_PT/user_ldap.po index 5e81d3c8df..7f8dcde86b 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index a18268e230..e14e432dfb 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/ro/files.po index 4dbb6c71f9..0cc3d416fa 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/ro/files_external.po index c72463a72a..7ee2a43528 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 ce1a38a526..acfd04d510 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: sergiu_sechel \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 69e28756c0..49decc1d2d 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 8483db614e..a62e744fc3 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 10f989e644..f1404b57c7 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 379644b382..9c46adecb9 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 9636553bab..2f0ef02029 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-15 00:22+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.po b/l10n/ru/files.po index 478a365d90..0962d65627 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: hackproof \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_external.po b/l10n/ru/files_external.po index d56860635e..7876985280 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 272ef2dbc1..b33a063e57 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23: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 01f889d915..b19b239b90 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 ffaf82a1f9..491d0013c8 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 7bac5faf4f..398034211d 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: hackproof \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 4fff770325..78a6b5a775 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: alfsoft \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 cb93ed3d4e..241364d696 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/si_LK/files.po index 75b81f2bd2..d675c9a020 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/si_LK/files_external.po index 6370789a03..c9587e7c2e 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 4c4a34310d..dd1c925392 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 a319a37a68..be3dbf051d 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 c202b5bd75..3b0a235ff4 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/si_LK/settings.po index c934849d59..00d90845d3 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 43aa73a46d..02b48bf1e1 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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_SK/core.po b/l10n/sk_SK/core.po index 6cffd2f1f3..5a38e3cde1 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-15 00:22+0000\n" "Last-Translator: mhh \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.po b/l10n/sk_SK/files.po index 3cc4051509..612c648884 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/sk_SK/files_external.po index ce74122eb7..b96779e724 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: mhh \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 7697c832e8..dfac301505 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 f859e1a96e..7caf00ae64 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 463d471350..22e085b9c4 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/sk_SK/settings.po index de98a5d43b..d5ceb46ed6 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: mhh \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 9e14950ba1..b38b7f9b26 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: mhh \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 26c9dcb0ba..bde8c0efc4 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/sl/files.po index 90a23fa56d..7f12f5658a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/sl/files_external.po index d62cbd3963..56165c45f3 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23: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 c28c7c8525..4090997905 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 6662d6edb0..2a2d9fd9c1 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 16ec6a0047..d24133b97f 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 4212a5e4f5..08bb696a2a 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 825da95e4d..af4a82838a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: barbarak \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 29539dc4fe..df2352ab79 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/sq/files.po index 7d76b793a2..b600099bf2 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/sq/files_external.po index 7455cdf844..0f18541d06 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 350674497a..9a7354f018 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 d7a2323596..9fa2254ba8 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 8ae1c9322c..fc4b4c4ee7 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 40e5f285e3..fc80cdb25a 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 592827e1fc..e770beff7d 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 23b2c8ea16..2e0099bec5 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/sr/files.po index d6bf59317f..d45e96c3d8 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/sr/files_external.po index 23cbdc19d9..b9d65615bb 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 ece8cdd48c..975884c360 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 e579111173..d64224cc6b 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 3a8211136a..e1581cf679 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 724ad31cc3..dff75bc0bb 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 05e054d871..ed1a478870 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 223a8335e4..7b59e3fe8c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/sr@latin/files.po index 01d9403cf3..c37ee92573 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/sr@latin/files_external.po index 34cc7a31b0..7ac341e6a3 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 237fcc5bfd..ff0f95b5ad 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 e8031f621f..bd30195cdb 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 004e4ef67c..dd4a250c7b 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/sr@latin/settings.po index 19d3bca803..7f2ed32e2e 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 1c9ee824cb..0160bfadfa 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/sv/files.po index a1bbe63f45..22905c13e4 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/sv/files_external.po index c0ee990c4f..3d02339625 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23: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 f665feb608..451764e4ce 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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_trashbin.po b/l10n/sv/files_trashbin.po index 65d79d642c..e64f396bc0 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 c38f933e6f..4e44caa616 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 4ad256f3cf..d394264d0e 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index d659c8ae03..565c1dbfd0 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23: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/ta_LK/core.po b/l10n/ta_LK/core.po index 25fb962533..e61e79bdb6 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/ta_LK/files.po index 8efb684198..cd1ff4e114 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/ta_LK/files_external.po index fab1a74ed3..a60d8a642f 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 682ad83af1..430ee0ffb2 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 76c5ec2522..6f0f999df1 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 3bb081ef29..1cd7fe01a7 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/ta_LK/settings.po index 3c6df108ce..adb32964fb 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 a4a78152b8..b872eca681 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 e911abbd9d..2a60430f2f 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/te/files.po index b4331a1b1a..9f18053d6f 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/te/files_external.po index dfc0ca62a8..16188ad42e 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 9699227cad..305d921244 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 f9a1fe244c..2a549aa34e 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 9d8b1ef042..fca68ec405 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 a7d5403974..7849b02383 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 9a22af3325..c4f2550a16 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-14 02:02+0200\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 97a7a487f6..ad77f50160 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-14 02:02+0200\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index ffd457b482..7cceecbf0f 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-14 02:02+0200\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 2302e96689..a9ea19cddd 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-14 02:02+0200\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 0ae068edc6..a921d1a8ed 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-14 02:02+0200\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index aeb70a2e96..6ad9827d19 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-14 02:02+0200\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 88ea67b723..8665bc3adf 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-14 02:02+0200\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index fc3ecf03a0..b1f13d4145 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-14 02:03+0200\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 1a209e4887..f8506866fd 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-14 02:03+0200\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 398715ceef..206db8400e 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-14 02:02+0200\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 8546b3c3ab..af49ea18b8 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-14 02:02+0200\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index ca4536e740..111f062166 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/th_TH/files.po index 72a12f3c6b..b8125d1f63 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/th_TH/files_external.po index faf775ea18..cf0eefa563 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 110a6bf93f..94f41c9ed6 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 8f12a56e9e..9a40ef8a30 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 c5045b45e1..506a51f60a 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/th_TH/settings.po index 413323b52d..a6df1feb4f 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 b02e3caf06..c5979e4761 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 286217fe68..5c076caf65 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/tr/files.po index 38cd3f65f6..8833925006 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/tr/files_external.po index ce5638c96d..0ed35574e6 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 c47da9c133..e827128270 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 d88ad4e058..214cd80004 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 2b09f65b62..a7332a0207 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index f40a28ba81..f9319558c1 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 0662149662..4e70f9a172 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: ismail yenigül \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 5778652e7e..368c0bd38c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 9ab4d77811..b5f4f16463 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index c960654188..281b9af76c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 28c78a96b1..72ef7aa68e 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index ec66530b72..abaad6da6b 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index c804014b76..195d29ebfe 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index a0f3f3b5a7..da7d24ed20 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 32a70ef0be..a47ab57813 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 3a016bb42a..d71b5c193e 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/uk/files.po index ef77e95ed0..43a6e93ee4 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/uk/files_external.po index 97f605032b..b0896b102a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 fc638449c2..20d7cdf05f 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 c2b1851bdd..c51cf52d65 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 c416516771..fe2c54f7d8 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 0bb61ad8c1..762a1fc985 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 7af360fd24..9e98507400 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 ce348882b8..34d13d1aca 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/files.po b/l10n/ur_PK/files.po index 7ec81f24c7..9bca9c3126 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index c529ec8cc8..2b69f937b4 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 03e2e134ff..e6bf367183 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/ur_PK/settings.po index 8d53e5d458..9b0e912067 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 0fd95d38fc..9024d9ebc4 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 bcbd62275e..0bf8a7dc14 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/vi/files.po index ad1b93bd31..eb4a3e5bcf 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/vi/files_external.po index de7f99c9d1..035432deae 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: xtdv \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 2442f05470..533c49aa46 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 db4c3b3859..7a31471c31 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 e4252e85c6..8a6484d592 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 313b0a47a7..c523cd0b9b 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 43d177a60a..07e15714eb 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 b7efcae5ab..51d8209449 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/zh_CN.GB2312/files.po index f2c81e235c..2e30b9e9ad 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: hlx98007 \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_external.po b/l10n/zh_CN.GB2312/files_external.po index ed92f4236b..309abfab56 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: hyy0591 \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 8bcabac2cb..20f1559728 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 a2334794bb..48ff2d1544 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 7036fc2d4b..74b6627359 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/zh_CN.GB2312/settings.po index ba55e8d739..d2d81b8cd3 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: hlx98007 \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 23ac2088b7..90e7e3a439 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 98a3e14471..7cf105e73a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/zh_CN/files.po index 349cca337a..b24140fdde 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/zh_CN/files_external.po index 02ae031d2d..18c19624e9 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 d1c2cc0d17..379972fb0b 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 ac313340bd..cc6fa911f0 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 dfaabff265..febe52a6b3 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/zh_CN/settings.po index a89f1b2321..e96e4ca499 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 3d3aac4c80..ad676005c6 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: modokwang \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 ba141e3103..5d49b7ebad 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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.po b/l10n/zh_HK/files.po index 03f5361c90..0074c64e88 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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_external.po b/l10n/zh_HK/files_external.po index c791bafdbb..883d6ad8bd 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 22d0a7909a..0f9f15d05c 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 650b00e7d6..40e6ce74ad 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 171cd43f91..a231b95019 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/zh_HK/settings.po index c1475d455b..dbd77f5710 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\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 \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 b59d9283dd..f8dd3bf30a 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 174361c0eb..aaaedfad51 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-15 00:22+0000\n" "Last-Translator: pellaeon \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.po b/l10n/zh_TW/files.po index 4745ff4275..b5b7cfd250 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: pellaeon \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_external.po b/l10n/zh_TW/files_external.po index baf774403b..24c58078bf 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:24+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: pellaeon \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 cb34eb7364..0ebb7992ec 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 4a64d534d5..a3fc309021 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\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 \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 7ca4646491..46256bfa86 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-14 00:02+0000\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 \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/settings.po b/l10n/zh_TW/settings.po index 42bc48882b..65f392229c 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-14 02:03+0200\n" -"PO-Revision-Date: 2013-07-13 23:14+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:25+0000\n" "Last-Translator: pellaeon \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_ldap.po b/l10n/zh_TW/user_ldap.po index cee161db1b..51881a3824 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-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 23:15+0000\n" +"POT-Creation-Date: 2013-07-15 02:25+0200\n" +"PO-Revision-Date: 2013-07-14 23:26+0000\n" "Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" From 7ba4269c263a6e102e5efeefdce94909f9a59aab Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Mon, 15 Jul 2013 10:28:14 +0200 Subject: [PATCH 065/108] <<config->setValue('foo', 'moo'); $this->assertAttributeEquals(array('foo' => 'moo'), 'cache', $this->config); $content = file_get_contents(self::CONFIG_FILE); - $this->assertEquals(<< 'moo', -); -EOL - , $content); + $expected = " '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(<< 'moo', - 'bar' => 'red', -); -EOL - , $content); + $expected = " '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(<<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(<<assertEquals($expected, $content); } /** From a457501394e699824bbef08efb0266e7d18dd8d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 15 Jul 2013 23:46:28 +0200 Subject: [PATCH 066/108] rename README --- README => README.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename README => README.md (100%) diff --git a/README b/README.md similarity index 100% rename from README rename to README.md From bfa0496fbb989a74ab9034ad3c4f1159a668010d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 15 Jul 2013 23:58:51 +0200 Subject: [PATCH 067/108] initial markdown verions of README --- README.md | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5f5d190cb0..56f90cd554 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,27 @@ -ownCloud gives you freedom and control over your own data. +# ownCloud + +[ownCloud](http://ownCloud.org) gives you freedom and control over your own data. A personal cloud which runs on your own server. -http://ownCloud.org +### Build Status on [Jenkins CI](https://ci.owncloud.org/) +Git master: [![Build Status](https://ci.owncloud.org/buildStatus/icon?job=ownCloud-Server%28master%29)](https://ci.owncloud.org/job/ownCloud-Server%28master%29/) -Installation instructions: http://doc.owncloud.org/server/5.0/developer_manual/app/gettingstarted.html -Contribution Guidelines: http://owncloud.org/dev/contribute/ +### Installation instructions +http://doc.owncloud.org/server/5.0/developer_manual/app/gettingstarted.html -Source code: https://github.com/owncloud +### Contribution Guidelines +http://owncloud.org/dev/contribute/ + +### Get in touch 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: +### Important notice on translations Please submit translations via Transifex: https://www.transifex.com/projects/p/owncloud/ From d9c697534d736e7165114a2f250f9ed9527dcf26 Mon Sep 17 00:00:00 2001 From: kondou Date: Tue, 16 Jul 2013 05:56:52 +0200 Subject: [PATCH 068/108] Fix some typos --- config/config.sample.php | 12 ++++++------ lib/app.php | 8 ++++---- lib/archive.php | 6 +++--- lib/archive/tar.php | 2 +- lib/archive/zip.php | 2 +- lib/files/cache/updater.php | 4 ++-- lib/files/filesystem.php | 4 ++-- lib/preferences.php | 2 +- 8 files changed, 20 insertions(+), 20 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index dfa29f329c..4d1950d60e 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/lib/app.php b/lib/app.php index f9b1c5ca7b..baacf508d8 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 61239c8207..70615db714 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 e7c8138961..a1c0535b1c 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 8e31795ded..8a866716a7 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/files/cache/updater.php b/lib/files/cache/updater.php index 87c33a313a..1f30173a8f 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 3d7d5abf8f..1bf7270c7f 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -8,7 +8,7 @@ /** * Class for abstraction of filesystem functions - * This class won't call any filesystem functions for itself but but will pass them to the correct OC_Filestorage object + * This class won't call any filesystem functions for itself but will pass them to the correct OC_Filestorage object * this class should also handle all the file permission related stuff * * Hooks provided: @@ -717,7 +717,7 @@ class Filesystem { /** * Get the path of a file by id * - * Note that the resulting path is not guarantied to be unique for the id, multiple paths can point to the same file + * Note that the resulting path is not guaranteed to be unique for the id, multiple paths can point to the same file * * @param int $id * @return string diff --git a/lib/preferences.php b/lib/preferences.php index 5f6434bcf9..11ca760830 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 * From a8acbfdf7b45e0e53cfb2a15eb32305925f6c645 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 16 Jul 2013 02:06:21 -0400 Subject: [PATCH 069/108] [tx-robot] updated from transifex --- apps/files/l10n/nb_NO.php | 4 ++ apps/files_sharing/l10n/nb_NO.php | 1 + apps/user_ldap/l10n/pt_PT.php | 3 ++ core/l10n/pt_PT.php | 4 ++ core/l10n/zh_TW.php | 2 +- l10n/ar/core.po | 4 +- l10n/ar/files.po | 4 +- l10n/ar/files_external.po | 4 +- l10n/ar/files_sharing.po | 4 +- l10n/ar/files_trashbin.po | 4 +- l10n/ar/lib.po | 4 +- l10n/ar/settings.po | 4 +- l10n/ar/user_ldap.po | 4 +- l10n/bg_BG/core.po | 4 +- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_external.po | 4 +- l10n/bg_BG/files_sharing.po | 4 +- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/lib.po | 4 +- l10n/bg_BG/settings.po | 4 +- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 4 +- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_external.po | 4 +- l10n/bn_BD/files_sharing.po | 4 +- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/lib.po | 4 +- l10n/bn_BD/settings.po | 4 +- l10n/bn_BD/user_ldap.po | 4 +- l10n/bs/core.po | 4 +- l10n/bs/files.po | 4 +- l10n/bs/files_trashbin.po | 4 +- l10n/ca/core.po | 4 +- l10n/ca/files.po | 4 +- l10n/ca/files_external.po | 4 +- l10n/ca/files_sharing.po | 4 +- l10n/ca/files_trashbin.po | 4 +- l10n/ca/lib.po | 4 +- l10n/ca/settings.po | 4 +- l10n/ca/user_ldap.po | 4 +- l10n/cs_CZ/core.po | 4 +- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_external.po | 4 +- l10n/cs_CZ/files_sharing.po | 4 +- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/lib.po | 4 +- l10n/cs_CZ/settings.po | 4 +- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/core.po | 4 +- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/files_external.po | 4 +- l10n/cy_GB/files_sharing.po | 4 +- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/lib.po | 4 +- l10n/cy_GB/settings.po | 4 +- l10n/cy_GB/user_ldap.po | 4 +- l10n/da/core.po | 4 +- l10n/da/files.po | 4 +- l10n/da/files_external.po | 4 +- l10n/da/files_sharing.po | 4 +- l10n/da/files_trashbin.po | 4 +- l10n/da/lib.po | 4 +- l10n/da/settings.po | 4 +- l10n/da/user_ldap.po | 4 +- l10n/de/core.po | 4 +- l10n/de/files.po | 4 +- l10n/de/files_external.po | 4 +- l10n/de/files_sharing.po | 4 +- l10n/de/files_trashbin.po | 4 +- l10n/de/lib.po | 4 +- l10n/de/settings.po | 4 +- l10n/de/user_ldap.po | 4 +- l10n/de_DE/core.po | 4 +- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_external.po | 4 +- l10n/de_DE/files_sharing.po | 4 +- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/lib.po | 4 +- l10n/de_DE/settings.po | 4 +- l10n/de_DE/user_ldap.po | 4 +- l10n/el/core.po | 4 +- l10n/el/files.po | 4 +- l10n/el/files_external.po | 4 +- l10n/el/files_sharing.po | 4 +- l10n/el/files_trashbin.po | 4 +- l10n/el/lib.po | 4 +- l10n/el/settings.po | 4 +- l10n/el/user_ldap.po | 4 +- l10n/en@pirate/files.po | 4 +- l10n/en@pirate/files_sharing.po | 4 +- l10n/eo/core.po | 4 +- l10n/eo/files.po | 4 +- l10n/eo/files_external.po | 4 +- l10n/eo/files_sharing.po | 4 +- l10n/eo/files_trashbin.po | 4 +- l10n/eo/lib.po | 4 +- l10n/eo/settings.po | 4 +- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 4 +- l10n/es/files.po | 4 +- l10n/es/files_external.po | 4 +- l10n/es/files_sharing.po | 4 +- l10n/es/files_trashbin.po | 4 +- l10n/es/lib.po | 4 +- l10n/es/settings.po | 4 +- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 4 +- l10n/es_AR/files.po | 4 +- l10n/es_AR/files_external.po | 4 +- l10n/es_AR/files_sharing.po | 4 +- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/lib.po | 4 +- l10n/es_AR/settings.po | 4 +- l10n/es_AR/user_ldap.po | 4 +- l10n/et_EE/core.po | 4 +- l10n/et_EE/files.po | 4 +- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/files_sharing.po | 4 +- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/lib.po | 4 +- l10n/et_EE/settings.po | 4 +- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/core.po | 4 +- l10n/eu/files.po | 4 +- l10n/eu/files_external.po | 4 +- l10n/eu/files_sharing.po | 4 +- l10n/eu/files_trashbin.po | 4 +- l10n/eu/lib.po | 4 +- l10n/eu/settings.po | 4 +- l10n/eu/user_ldap.po | 4 +- l10n/fa/core.po | 4 +- l10n/fa/files.po | 4 +- l10n/fa/files_external.po | 4 +- l10n/fa/files_sharing.po | 4 +- l10n/fa/files_trashbin.po | 4 +- l10n/fa/lib.po | 4 +- l10n/fa/settings.po | 4 +- l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/core.po | 4 +- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_external.po | 4 +- l10n/fi_FI/files_sharing.po | 4 +- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/lib.po | 4 +- l10n/fi_FI/settings.po | 4 +- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 4 +- l10n/fr/files.po | 4 +- l10n/fr/files_external.po | 4 +- l10n/fr/files_sharing.po | 4 +- l10n/fr/files_trashbin.po | 4 +- l10n/fr/lib.po | 4 +- l10n/fr/settings.po | 4 +- l10n/fr/user_ldap.po | 4 +- l10n/gl/core.po | 4 +- l10n/gl/files.po | 4 +- l10n/gl/files_external.po | 4 +- l10n/gl/files_sharing.po | 4 +- l10n/gl/files_trashbin.po | 4 +- l10n/gl/lib.po | 4 +- l10n/gl/settings.po | 4 +- l10n/gl/user_ldap.po | 4 +- l10n/he/core.po | 4 +- l10n/he/files.po | 4 +- l10n/he/files_external.po | 4 +- l10n/he/files_sharing.po | 4 +- l10n/he/files_trashbin.po | 4 +- l10n/he/lib.po | 4 +- l10n/he/settings.po | 4 +- l10n/he/user_ldap.po | 4 +- l10n/hi/core.po | 4 +- l10n/hi/files.po | 4 +- l10n/hi/files_trashbin.po | 4 +- l10n/hi/settings.po | 4 +- l10n/hi/user_ldap.po | 4 +- l10n/hr/core.po | 4 +- l10n/hr/files.po | 4 +- l10n/hr/files_external.po | 4 +- l10n/hr/files_sharing.po | 4 +- l10n/hr/files_trashbin.po | 4 +- l10n/hr/lib.po | 4 +- l10n/hr/settings.po | 4 +- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/core.po | 4 +- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/files_external.po | 4 +- l10n/hu_HU/files_sharing.po | 4 +- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/lib.po | 4 +- l10n/hu_HU/settings.po | 4 +- l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 +- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 +- l10n/ia/core.po | 4 +- l10n/ia/files.po | 4 +- l10n/ia/files_external.po | 4 +- l10n/ia/files_sharing.po | 4 +- l10n/ia/files_trashbin.po | 4 +- l10n/ia/lib.po | 4 +- l10n/ia/settings.po | 4 +- l10n/ia/user_ldap.po | 4 +- l10n/id/core.po | 4 +- l10n/id/files.po | 4 +- l10n/id/files_external.po | 4 +- l10n/id/files_sharing.po | 4 +- l10n/id/files_trashbin.po | 4 +- l10n/id/lib.po | 4 +- l10n/id/settings.po | 4 +- l10n/id/user_ldap.po | 4 +- l10n/is/core.po | 4 +- l10n/is/files.po | 4 +- l10n/is/files_external.po | 4 +- l10n/is/files_sharing.po | 4 +- l10n/is/files_trashbin.po | 4 +- l10n/is/lib.po | 4 +- l10n/is/settings.po | 4 +- l10n/is/user_ldap.po | 4 +- l10n/it/core.po | 4 +- l10n/it/files.po | 4 +- l10n/it/files_external.po | 4 +- l10n/it/files_sharing.po | 4 +- l10n/it/files_trashbin.po | 4 +- l10n/it/lib.po | 4 +- l10n/it/settings.po | 4 +- l10n/it/user_ldap.po | 4 +- l10n/ja_JP/core.po | 4 +- l10n/ja_JP/files.po | 4 +- l10n/ja_JP/files_external.po | 4 +- l10n/ja_JP/files_sharing.po | 4 +- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/lib.po | 4 +- l10n/ja_JP/settings.po | 4 +- l10n/ja_JP/user_ldap.po | 4 +- l10n/ka/files.po | 4 +- l10n/ka/files_sharing.po | 4 +- l10n/ka_GE/core.po | 4 +- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_external.po | 4 +- l10n/ka_GE/files_sharing.po | 4 +- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/lib.po | 4 +- l10n/ka_GE/settings.po | 4 +- l10n/ka_GE/user_ldap.po | 4 +- l10n/ko/core.po | 4 +- l10n/ko/files.po | 4 +- l10n/ko/files_external.po | 4 +- l10n/ko/files_sharing.po | 4 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/lib.po | 4 +- l10n/ko/settings.po | 4 +- l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/core.po | 4 +- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_sharing.po | 4 +- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/settings.po | 4 +- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/core.po | 4 +- l10n/lb/files.po | 4 +- l10n/lb/files_external.po | 4 +- l10n/lb/files_sharing.po | 4 +- l10n/lb/files_trashbin.po | 4 +- l10n/lb/lib.po | 4 +- l10n/lb/settings.po | 4 +- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/core.po | 4 +- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_external.po | 4 +- l10n/lt_LT/files_sharing.po | 4 +- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/lib.po | 4 +- l10n/lt_LT/settings.po | 67 +++++++++++++++-------------- l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/core.po | 4 +- l10n/lv/files.po | 4 +- l10n/lv/files_external.po | 4 +- l10n/lv/files_sharing.po | 4 +- l10n/lv/files_trashbin.po | 4 +- l10n/lv/lib.po | 4 +- l10n/lv/settings.po | 4 +- l10n/lv/user_ldap.po | 4 +- l10n/mk/core.po | 4 +- l10n/mk/files.po | 4 +- l10n/mk/files_external.po | 4 +- l10n/mk/files_sharing.po | 4 +- l10n/mk/files_trashbin.po | 4 +- l10n/mk/lib.po | 4 +- l10n/mk/settings.po | 4 +- l10n/mk/user_ldap.po | 4 +- l10n/ms_MY/core.po | 4 +- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_external.po | 4 +- l10n/ms_MY/files_sharing.po | 4 +- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/lib.po | 4 +- l10n/ms_MY/settings.po | 4 +- l10n/ms_MY/user_ldap.po | 4 +- l10n/my_MM/core.po | 4 +- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_sharing.po | 4 +- l10n/my_MM/lib.po | 4 +- l10n/nb_NO/core.po | 4 +- l10n/nb_NO/files.po | 15 ++++--- l10n/nb_NO/files_external.po | 4 +- l10n/nb_NO/files_sharing.po | 9 ++-- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/lib.po | 4 +- l10n/nb_NO/settings.po | 9 ++-- l10n/nb_NO/user_ldap.po | 4 +- l10n/nl/core.po | 4 +- l10n/nl/files.po | 4 +- l10n/nl/files_external.po | 4 +- l10n/nl/files_sharing.po | 4 +- l10n/nl/files_trashbin.po | 4 +- l10n/nl/lib.po | 4 +- l10n/nl/settings.po | 4 +- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/core.po | 4 +- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_external.po | 4 +- l10n/nn_NO/files_sharing.po | 4 +- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/lib.po | 4 +- l10n/nn_NO/settings.po | 4 +- l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/core.po | 4 +- l10n/oc/files.po | 4 +- l10n/oc/files_external.po | 4 +- l10n/oc/files_sharing.po | 4 +- l10n/oc/files_trashbin.po | 4 +- l10n/oc/settings.po | 4 +- l10n/oc/user_ldap.po | 4 +- l10n/pl/core.po | 4 +- l10n/pl/files.po | 4 +- l10n/pl/files_external.po | 4 +- l10n/pl/files_sharing.po | 4 +- l10n/pl/files_trashbin.po | 4 +- l10n/pl/lib.po | 4 +- l10n/pl/settings.po | 4 +- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 4 +- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/files_sharing.po | 4 +- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/lib.po | 4 +- l10n/pt_BR/settings.po | 4 +- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/core.po | 15 ++++--- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/files_external.po | 4 +- l10n/pt_PT/files_sharing.po | 4 +- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/lib.po | 4 +- l10n/pt_PT/settings.po | 9 ++-- l10n/pt_PT/user_ldap.po | 14 +++--- l10n/ro/core.po | 4 +- l10n/ro/files.po | 4 +- l10n/ro/files_external.po | 4 +- l10n/ro/files_sharing.po | 4 +- l10n/ro/files_trashbin.po | 4 +- l10n/ro/lib.po | 4 +- l10n/ro/settings.po | 4 +- l10n/ro/user_ldap.po | 4 +- l10n/ru/core.po | 4 +- l10n/ru/files.po | 4 +- l10n/ru/files_external.po | 4 +- l10n/ru/files_sharing.po | 4 +- l10n/ru/files_trashbin.po | 4 +- l10n/ru/lib.po | 4 +- l10n/ru/settings.po | 4 +- l10n/ru/user_ldap.po | 4 +- l10n/si_LK/core.po | 4 +- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_external.po | 4 +- l10n/si_LK/files_sharing.po | 4 +- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/lib.po | 4 +- l10n/si_LK/settings.po | 4 +- l10n/si_LK/user_ldap.po | 4 +- l10n/sk_SK/core.po | 4 +- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_sharing.po | 4 +- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/lib.po | 4 +- l10n/sk_SK/settings.po | 4 +- l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/core.po | 4 +- l10n/sl/files.po | 4 +- l10n/sl/files_external.po | 4 +- l10n/sl/files_sharing.po | 4 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 4 +- l10n/sl/settings.po | 4 +- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 4 +- l10n/sq/files.po | 4 +- l10n/sq/files_external.po | 4 +- l10n/sq/files_sharing.po | 4 +- l10n/sq/files_trashbin.po | 4 +- l10n/sq/lib.po | 4 +- l10n/sq/settings.po | 4 +- l10n/sq/user_ldap.po | 4 +- l10n/sr/core.po | 4 +- l10n/sr/files.po | 4 +- l10n/sr/files_external.po | 4 +- l10n/sr/files_sharing.po | 4 +- l10n/sr/files_trashbin.po | 4 +- l10n/sr/lib.po | 4 +- l10n/sr/settings.po | 4 +- l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/core.po | 4 +- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_external.po | 4 +- l10n/sr@latin/files_sharing.po | 4 +- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/lib.po | 4 +- l10n/sr@latin/settings.po | 4 +- l10n/sv/core.po | 4 +- l10n/sv/files.po | 4 +- l10n/sv/files_external.po | 4 +- l10n/sv/files_sharing.po | 4 +- l10n/sv/files_trashbin.po | 4 +- l10n/sv/lib.po | 4 +- l10n/sv/settings.po | 4 +- l10n/sv/user_ldap.po | 4 +- l10n/ta_LK/core.po | 4 +- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_external.po | 4 +- l10n/ta_LK/files_sharing.po | 4 +- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/lib.po | 4 +- l10n/ta_LK/settings.po | 4 +- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/core.po | 4 +- l10n/te/files.po | 4 +- l10n/te/files_external.po | 4 +- l10n/te/files_trashbin.po | 4 +- l10n/te/settings.po | 4 +- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_external.po | 4 +- l10n/th_TH/files_sharing.po | 4 +- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/lib.po | 4 +- l10n/th_TH/settings.po | 4 +- l10n/th_TH/user_ldap.po | 4 +- l10n/tr/core.po | 4 +- l10n/tr/files.po | 4 +- l10n/tr/files_external.po | 4 +- l10n/tr/files_sharing.po | 4 +- l10n/tr/files_trashbin.po | 4 +- l10n/tr/lib.po | 4 +- l10n/tr/settings.po | 4 +- l10n/tr/user_ldap.po | 4 +- l10n/ug/core.po | 4 +- l10n/ug/files.po | 4 +- l10n/ug/files_external.po | 4 +- l10n/ug/files_sharing.po | 4 +- l10n/ug/files_trashbin.po | 4 +- l10n/ug/lib.po | 4 +- l10n/ug/settings.po | 4 +- l10n/ug/user_ldap.po | 4 +- l10n/uk/core.po | 4 +- l10n/uk/files.po | 4 +- l10n/uk/files_external.po | 4 +- l10n/uk/files_sharing.po | 4 +- l10n/uk/files_trashbin.po | 4 +- l10n/uk/lib.po | 4 +- l10n/uk/settings.po | 4 +- l10n/uk/user_ldap.po | 4 +- l10n/ur_PK/core.po | 4 +- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/settings.po | 4 +- l10n/ur_PK/user_ldap.po | 4 +- l10n/vi/core.po | 4 +- l10n/vi/files.po | 4 +- l10n/vi/files_external.po | 4 +- l10n/vi/files_sharing.po | 4 +- l10n/vi/files_trashbin.po | 4 +- l10n/vi/lib.po | 4 +- l10n/vi/settings.po | 4 +- l10n/vi/user_ldap.po | 4 +- l10n/zh_CN.GB2312/core.po | 4 +- l10n/zh_CN.GB2312/files.po | 4 +- l10n/zh_CN.GB2312/files_external.po | 4 +- l10n/zh_CN.GB2312/files_sharing.po | 4 +- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/lib.po | 4 +- l10n/zh_CN.GB2312/settings.po | 4 +- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN/core.po | 4 +- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_external.po | 4 +- l10n/zh_CN/files_sharing.po | 4 +- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/lib.po | 4 +- l10n/zh_CN/settings.po | 4 +- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/core.po | 4 +- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_external.po | 4 +- l10n/zh_HK/files_sharing.po | 4 +- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/lib.po | 4 +- l10n/zh_HK/settings.po | 4 +- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/core.po | 6 +-- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_sharing.po | 4 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 4 +- l10n/zh_TW/settings.po | 4 +- l10n/zh_TW/user_ldap.po | 4 +- settings/l10n/lt_LT.php | 32 +++++++++++++- settings/l10n/nb_NO.php | 1 + settings/l10n/pt_PT.php | 1 + 535 files changed, 1147 insertions(+), 1095 deletions(-) diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 769dfe33ff..e6d0ed4104 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -1,6 +1,7 @@ "Kan ikke flytte %s - En fil med samme navn finnes allerede", "Could not move %s" => "Kunne ikke flytte %s", +"Unable to set upload directory." => "Kunne ikke sette opplastingskatalog.", "No file was uploaded. Unknown error" => "Ingen filer ble lastet opp. Ukjent feil.", "There is no error, the file uploaded with success" => "Pust ut, ingen feil. Filen ble lastet opp problemfritt", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Filstørrelsen overskrider maksgrensedirektivet upload_max_filesize i php.ini-konfigurasjonen.", @@ -65,11 +66,14 @@ "You don’t have write permissions here." => "Du har ikke skrivetilgang her.", "Nothing in here. Upload something!" => "Ingenting her. Last opp noe!", "Download" => "Last ned", +"Size (MB)" => "Størrelse (MB)", "Unshare" => "Avslutt deling", "Upload too large" => "Filen er for stor", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er for store for å laste opp til denne serveren.", "Files are being scanned, please wait." => "Skanner etter filer, vennligst vent.", "Current scanning" => "Pågående skanning", +"directory" => "katalog", +"directories" => "kataloger", "file" => "fil", "files" => "filer", "Upgrading filesystem cache..." => "Oppgraderer filsystemets mellomlager..." diff --git a/apps/files_sharing/l10n/nb_NO.php b/apps/files_sharing/l10n/nb_NO.php index 9c736f97d7..65eadd3cca 100644 --- a/apps/files_sharing/l10n/nb_NO.php +++ b/apps/files_sharing/l10n/nb_NO.php @@ -1,4 +1,5 @@ "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/user_ldap/l10n/pt_PT.php b/apps/user_ldap/l10n/pt_PT.php index 308fd34760..aca8c8e770 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/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index b0afff1ad2..c8d7ddd91b 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -1,4 +1,5 @@ "%s partilhado »%s« contigo", "Category type not provided." => "Tipo de categoria não fornecido", "No category to add?" => "Nenhuma categoria para adicionar?", "This category already exists: %s" => "A categoria já existe: %s", @@ -61,6 +62,7 @@ "Share with link" => "Partilhar com link", "Password protect" => "Proteger com palavra-passe", "Password" => "Password", +"Allow Public Upload" => "Permitir Envios Públicos", "Email link to person" => "Enviar o link por e-mail", "Send" => "Enviar", "Set expiration date" => "Especificar data de expiração", @@ -89,6 +91,7 @@ "Request failed!
Did you make sure your email/username was right?" => "O pedido falhou!
Tem a certeza que introduziu o seu email/username correcto?", "You will receive a link to reset your password via Email." => "Vai receber um endereço para repor a sua password", "Username" => "Nome de utilizador", +"Yes, I really want to reset my password now" => "Sim, tenho a certeza que pretendo redefinir a minha palavra-passe agora.", "Request reset" => "Pedir reposição", "Your password was reset" => "A sua password foi reposta", "To login page" => "Para a página de entrada", @@ -101,6 +104,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", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 4bec973946..f093a687f8 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.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "重設密碼的連結已經寄至您的電子郵件信箱,如果您過了一段時間還是沒有收到它,請檢查看看它是不是被放到垃圾郵件了,如果還是沒有的話,請聯絡您的 ownCloud 系統管理員。", "Request failed!
Did you make sure your email/username was right?" => "請求失敗!
您確定填入的電子郵件地址或是帳號名稱是正確的嗎?", -"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/l10n/ar/core.po b/l10n/ar/core.po index 98bf833ddf..98629d1bd9 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ar/files.po index a61fcd7d7b..0d84f05103 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ar/files_external.po index 9e5bf4bf1f..634e28609c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 7844194142..013b88782c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 c47098d055..794975e3eb 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 a2590ff9fd..e7a50f15a6 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index c1f5ac6922..75edbdafc4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 9f37b09419..d8481ec2c5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index d147d515c4..8d18aa994f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/bg_BG/files.po index e8cbbef59c..7475a69274 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bg_BG/files_external.po index 0fcfc21da0..a66b6b5cb9 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 51c4cb6e93..8d99e0103a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 951c4ffab7..b8e3af76d7 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Димитър Кръстев \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 60da0a5e0f..519caa60af 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/bg_BG/settings.po index 0f93416deb..82173443e4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 5a17cd41ed..ffa6c7570c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 fde42f5d98..5e3228c5b0 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/bn_BD/files.po index 59f0552ecd..d93f055b55 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bn_BD/files_external.po index 97a7a748c5..771f85a3f9 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 c468e5af86..649c713d77 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 6a511480a2..5066d6dc1b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 2252505ef0..dc21ddb30a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/bn_BD/settings.po index e3b8ca0535..0fc44013e3 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 69ac8639e1..884a73abbb 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 0b00330431..d5ed60d538 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 7eec57eeb9..a4b83d2698 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 5a20901c76..1226bd9618 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 c7400ac9db..7b33c60865 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ca/files.po index f302c09130..698f6924b1 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 7711e8dc3d..9f6dc6cc7f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 3cf80bc3ee..dbd46411f6 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 1d89ecfbe9..94757926e1 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 7d73b9585d..226be349eb 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index b57bef18ba..f3c1f1ad1f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index c387cd2bba..9d82feeaa4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index cb9c750381..8e2cba74d3 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/cs_CZ/files.po index 14baccb8d1..fbeac5004d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/cs_CZ/files_external.po index 0bd95c47fb..9c83c0e9a4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 89f5e4a643..26d7b7dd4f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 c436ea9c1d..cd7b55307b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 0934df91bc..ce64a0d98f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/cs_CZ/settings.po index e57309eadc..8b15190290 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: Honza K. \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 384c6dca28..ac66bcbd88 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Tomáš Chvátal \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 c6b7517c57..e9f55e9a03 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/cy_GB/files.po index 75dd7cf708..bc75d73567 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/cy_GB/files_external.po index b061e77f23..53782eeeda 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 74080cb9b9..6a15c0f05a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 7f552d0aef..14ca4b4873 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: ubuntucymraeg \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 f53493488d..d63afc55c2 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/cy_GB/settings.po index 5fe9ee583d..bd037c0cd5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 1b20cbda12..6b3f80c381 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 5f0816847c..f6c1832143 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/da/files.po index 2280300c20..33278b134f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/da/files_external.po index 97927b1bf3..c96fb1f625 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 708ccea974..05b577113c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 6a5f9c277d..1d4da36897 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 a6d93ebdb9..47f721892f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 0909e08611..da984c490c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Morten Juhl-Johansen Zölde-Fejér \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 5cf21dcf87..607318d716 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 aab8b54fa0..897d62d7fe 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 74cf41dea8..3bbb17a640 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.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:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: kabum \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 3f33a144a2..8eb4334df3 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 8f35904ecf..a20ef05697 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 3fecf1fa38..07873608c7 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 491541398c..0cbc310c4c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 461eed0654..2442235054 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index a188d16c5f..14fef61b3d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 4e6d227320..06808e78c1 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 28d664e02d..5c600586e3 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.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:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: kabum \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index a5c7227299..3e743d1b10 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index aede741f50..f2f2842af1 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: JamFX \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 6defdd31ee..bcd4ece72c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index c763a3d95c..e088119668 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 3d8e333baf..5dd97c202d 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.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-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: kabum \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index e7ba773674..98581d51b6 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index d284cd712a..aed06275d5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/el/files.po index 73ad879739..811e9cb54a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/el/files_external.po index 20e70d6700..79db7e67f6 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: KAT.RAT12 \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 634cc17e54..3b57fcff47 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 b4f223976b..babffee811 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 6c96fbf186..201673b5eb 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 1c2cdcbe3a..a2aab06a56 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 9731606303..6b289448ed 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 657ded3ad4..d3dca00e63 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 01d61e1fba..cd9c5d9b9e 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 beb69ea265..bac5e60698 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/eo/files.po index a3df6ef17a..52571a69f2 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/eo/files_external.po index 3b9be7fe2c..4c4989be3e 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 1cbe546c22..92b8d89b03 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 2d5339b6ac..54f503049e 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 c4a11f439c..c923920d48 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 9fa5a15710..f28fe95b45 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 746ce516aa..c47a2d680f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 3f18cde6c5..7b31c7bc8b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/es/files.po index c1758c8957..e677a958b1 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.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:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: qdneren \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_external.po b/l10n/es/files_external.po index 61aef3a650..a5c2d94131 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Korrosivo \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 fdd0bb62ee..a70fe15d7c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Korrosivo \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 1216416340..8c9b096a02 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Korrosivo \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 b4872992c1..3908857796 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index f9dee57549..50050dd7cb 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: qdneren \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 7e2e43da7b..b1442adb02 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: xhiena \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 b6099b5fc9..62c99834b7 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: cjtess \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.po b/l10n/es_AR/files.po index eb1317c895..4b95bfa2ae 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: cjtess \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_external.po b/l10n/es_AR/files_external.po index 0c14fcd4d9..26d3427d93 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: cjtess \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 c20a28c0f0..e29f2c6159 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: cjtess \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 4bf320b149..61519208e3 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 23fa03fb42..2306702a18 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/es_AR/settings.po index 8bccf0fa4b..c6ff1b1ae7 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: cjtess \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 0149a7affb..bbed37a53e 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: cjtess \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 cd3bb0d8cb..e901e39f0d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/et_EE/files.po index b2e8c35d41..afaac644d4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/et_EE/files_external.po index 0588c06918..009721f8c0 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Rivo Zängov \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 185a61737e..a62684016a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Rivo Zängov \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 01f1f71d77..e4c22adc71 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Rivo Zängov \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 7751bd7908..e1db83567a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/et_EE/settings.po index fcd8b78148..2790153ec1 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: pisike.sipelgas \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 573356e6ed..f49ed019c1 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: pisike.sipelgas \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 f91c61b45b..945bc29ce0 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/eu/files.po index a0fb2b92a0..8b0f9fa496 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/eu/files_external.po index 342c6faea5..b3c1d8449d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Piarres Beobide \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 a14dae9124..0f54981f7d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 e1846e5626..36c23a962e 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 538827e619..6b993549cc 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index b9ffd7c916..6315c2b886 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 4bbaef94f6..de8e9d3539 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 b471ca25a6..b89db91806 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: miki_mika1362 \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.po b/l10n/fa/files.po index 2ef8fbc44c..7c7f2b5654 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/fa/files_external.po index 4a2a89eaa4..457b87778b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index b28fd6a30d..6d7563f4a4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: miki_mika1362 \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 14bb3e307d..705a2cc6a4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 7c654f4af3..bdc5474ac6 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 88d9b9729f..592f2a0b3d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: miki_mika1362 \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 b876c7e18b..3b7551b0aa 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:26+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 23c656d765..88695ae3bc 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/fi_FI/files.po index 769eda72a0..d749522b0c 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: Jiri Grönroos \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_external.po b/l10n/fi_FI/files_external.po index af197411d2..a38825ccbc 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 6cb58f71cf..e7c0288216 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/fi_FI/files_trashbin.po index 54de6f374b..deda5fe2af 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 02d6f5351a..26597929f3 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/fi_FI/settings.po index 02afc024f9..139f65333a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: Jiri Grönroos \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/user_ldap.po b/l10n/fi_FI/user_ldap.po index 0737b4bc06..5a9b84bbf9 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 dee88b2508..237c11ea0a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/fr/files.po index d7f65f3282..6e4e6aef7e 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: Adalberto Rodrigues \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_external.po b/l10n/fr/files_external.po index 65d20c7831..0062dbbfce 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 0ae12c3ded..d9b0e2f976 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: square \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 cc9085180a..998684a1f3 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 49018beafe..ca146f82ba 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 70e31b44bd..26f664b2ec 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Adalberto Rodrigues \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 6960d656a0..c18a9e934c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: plachance \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 5b393d74d1..5876519053 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: mbouzada \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.po b/l10n/gl/files.po index 6853906459..b3a0ea209d 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: mbouzada \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_external.po b/l10n/gl/files_external.po index c64addd5c8..2537fa88a3 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 09b6f9fc50..1e5f37ef89 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: mbouzada \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 23c20011a2..1b1a5c5641 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 237adf5f3c..dbebb83bb7 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index cc5b76cef7..2be287ff69 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: mbouzada \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 7245661313..7fdc55510f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: mbouzada \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 ef48a20276..eb9f3ddb0b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/he/files.po index 3b6df10aa6..7eef49edb5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/he/files_external.po index 52562d075e..1b42beebfb 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 1ca2d4c54b..37fa826aeb 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 09391b3dde..f9a5a726cc 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Yaron Shahrabani \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 5da87298fa..f0516c4d72 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index f9cc9d49f0..7d3eaeaff8 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 9a716be54d..fd8ed59779 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 5da80d7d60..7a131a0748 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 41ddb12355..1b0c40803f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index c09e3f7397..510d0d871b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index bdaa881db3..ea5a0cb322 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 0cba9904ba..64f080204f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 f89b696a8d..be8bbe31dc 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/hr/files.po index 3f8de3fa3a..c1253691cb 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hr/files_external.po index 5cfa64c1c8..300028e73c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 dd9765afb8..489c27a665 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 a37d8ef328..e3e3b86f83 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 0247748899..6e073216bb 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 5ada653ae2..fca9becc31 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 9d45f9968b..89a5cd0729 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 060fe7f19d..a6e525ef0d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: Laszlo Tornoci \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.po b/l10n/hu_HU/files.po index 032b336c80..19784205f1 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hu_HU/files_external.po index e32bc77c6f..8faa409654 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Laszlo Tornoci \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 040296b406..2c38118073 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Laszlo Tornoci \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 b5e998aa8c..2029887fb4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 6644f9be31..323f0b8f14 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/hu_HU/settings.po index 830c808034..c4ff8f9ed1 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: Laszlo Tornoci \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 38b4934ae2..ecea996337 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Laszlo Tornoci \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 78f096a57c..c6f9e75101 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hy/files_external.po index 04526c1aaf..019473b1e0 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-16 01:56-0400\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 75a044682e..1fe9c96faf 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 26541c8326..4a5faa2f1d 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-16 01:56-0400\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 9a7542a4e9..a7b0e408ab 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 64286762b5..4975b41a5d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ia/files.po index 57c489bd82..3761df6b2b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ia/files_external.po index 4c419fe3ee..cfbdbfef1c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 86a6867bc8..70e01c6b77 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 991ae73746..36ff7025c9 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 123e470a96..0dc3457ae5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index f4d5747b9e..e900599dbd 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 e174d2dbc7..c73a359766 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 d1530c5193..97d5ca02ac 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/id/files.po index f00a58c6fb..5d705696e5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/id/files_external.po index 1f85c66277..f55ad37488 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 ed2f983ab4..3eb2122760 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 dfa8b074a5..caa11bfea8 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 90b921a57a..c940cd9dc4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index ac325b2c7b..f33c752762 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 2130a127c3..6f24ea0b5e 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 70cd24829f..a0fb835885 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/is/files.po index 4e9f2fab68..198a2ead32 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/is/files_external.po index 6634245eee..a095743f9e 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 09e733b544..aae0dc523d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 f52eccdd15..8902c225a8 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 01eeede2ec..d5a572ebd3 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index e03e16dfec..c47ecb25ce 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 3066b044f0..560646dcd5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Magnus Magnusson \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 9fcdd7d564..6b4f74aea4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: Vincenzo Reale \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.po b/l10n/it/files.po index 610fa380be..118b7f2815 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: Vincenzo Reale \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_external.po b/l10n/it/files_external.po index 7bbcf1cd0f..67d0655315 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Vincenzo Reale \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 0b3a971058..942cbed1ab 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Vincenzo Reale \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 9a7fb77192..71e5f85d88 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Vincenzo Reale \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 737dce7b4b..9db4fe4915 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index ac27b24fb7..582f8fd8ab 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Vincenzo Reale \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 beffcc9b7a..756476aaba 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Vincenzo Reale \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 0b1f3ea0b7..a20f0576d4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: Daisuke Deguchi \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.po b/l10n/ja_JP/files.po index cd7bb1d258..0c179248db 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.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:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: pabook \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_external.po b/l10n/ja_JP/files_external.po index df3947af79..06098e70c1 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 f141a95f8b..ad77f98b89 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: tt yn \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 4c15cd46ae..c5840a9c21 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 552a26b811..e3eda617f3 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ja_JP/settings.po index 1e131eaa70..d2513e017e 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Daisuke Deguchi \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 b9b1a169b1..5d313bb95d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Daisuke Deguchi \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 8b71e233b3..c4d7b314d8 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 32885cbd73..58fd9aca1a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 ca46ff0d92..b69c2f4aa8 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ka_GE/files.po index d3efe720de..2e84bd5b12 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ka_GE/files_external.po index dec9518fbf..3fcb6b529f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: drlinux64 \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 c456d55bdc..c568596978 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 8c1a4e2c12..803560eebd 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: drlinux64 \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 d48c26c11a..31d0ccbb15 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ka_GE/settings.po index 5d1a3d4061..761320d2eb 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 faf89cbefd..ff2434d388 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/ko/core.po b/l10n/ko/core.po index a8ade2a35a..452eeee1b9 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ko/files.po index 240743a726..db585343a5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ko/files_external.po index c3cd16a957..a333bac029 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Shinjo Park \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 6682175242..b416a17276 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 0438f39dec..45c69a8d24 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 6c52cabd67..fcd4bbfc7e 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 2bdfd76e93..6140751d62 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 2b1872ce5a..71ba779aa4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 8893aff016..aab5f4f3d0 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ku_IQ/files.po index 276346a4e2..fc830a8d46 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_sharing.po b/l10n/ku_IQ/files_sharing.po index b26a8184dd..36b77c9049 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 072368fb82..832517006c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ku_IQ/settings.po index dc81a204e4..ecf95b52a7 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 4df95acb1d..a28bbd493d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 40b48a44a2..5b3211b377 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/lb/files.po index 42f147b1c6..497e84e2ba 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lb/files_external.po index 192e6a0e6c..80c0a356ad 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 cb32e6aa5f..e9af078fd9 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: llaera \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 5fef4353fe..f2d50e3196 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 2b28ee7042..31b72a98a2 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 192b91ba0b..1331a3a6fc 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 0f8102ebab..b7069de570 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 0b06bba805..ffd6400009 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/lt_LT/files.po index b021b74b70..90d9b1dbd5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lt_LT/files_external.po index bce7b9b52c..b43e770f5b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Min2liz \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 30e55fb41a..16b531870c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 f66a8a0ce3..afaa086c0a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: fizikiukas \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 11111dcc7f..aa9513fa7c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/lt_LT/settings.po index 7b85423bd9..645046c930 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 , 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 \n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"Last-Translator: fizikiukas \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 57d42c468d..64e273fdd0 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 fad8ca39fb..8d6fa18840 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/lv/files.po index 85bf37da9a..5f4834d7da 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lv/files_external.po index e82a461679..f0e01ec74f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 826e012207..27e1af6f17 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 63822c5854..8bda34559b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 ba2b3139b7..15e6b4d31f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 07c7792f15..49d98eba52 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 dc4a7df6b7..4979535e44 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 1538e502fd..98120c85e5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/mk/files.po index 4f01df8226..3592bde7c2 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/mk/files_external.po index 523da5dd22..da72c5906d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 ed98aff16c..143e1ded41 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 de0653196a..80e82a3f0d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 cfcea7371c..d1f5e30ce1 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index d34e84d39a..46e2ece84f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 f0dace2af5..58221d601b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 9615d06035..df29a97e51 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ms_MY/files.po index e929bcc185..cf00e38ce7 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ms_MY/files_external.po index d104343009..a5752e069f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 a5f2b676ea..7dc8dcc771 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 9ba6691ec1..60aac5b1a8 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 752176b6b4..7a09b22d4c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ms_MY/settings.po index a8b0954c43..572e2a47c2 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 a494c386f7..be265b3b66 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 7f3d05ae19..3be6248831 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/my_MM/files.po index e23e9949dc..c6bd3986f6 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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/files_sharing.po b/l10n/my_MM/files_sharing.po index e71a33fcbc..10824b77bc 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 7271da3853..a7fde5dc5d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/nb_NO/core.po b/l10n/nb_NO/core.po index 75e1d2d324..db957cf9e3 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/nb_NO/files.po index cd443c4e26..82f98b5fe8 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -4,13 +4,14 @@ # # Translators: # Hans Nesse <>, 2013 +# Stein-Aksel Basma , 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 \n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"Last-Translator: Stein-Aksel Basma \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" @@ -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" @@ -308,7 +309,7 @@ msgstr "Last ned" #: templates/index.php:80 msgid "Size (MB)" -msgstr "" +msgstr "Størrelse (MB)" #: templates/index.php:87 templates/index.php:88 msgid "Unshare" @@ -334,11 +335,11 @@ msgstr "Pågående skanning" #: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "katalog" #: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "kataloger" #: templates/part.list.php:87 msgid "file" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index ad13ec7ed2..3ef80c30ab 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 151cd1b5e0..05c9905e45 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 , 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 \n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"Last-Translator: Stein-Aksel Basma \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 8ac5cc0bc5..7b08fabf7e 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index ac149328d9..857247c01e 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/nb_NO/settings.po index 4bd2dc39b3..2408608bca 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -4,13 +4,14 @@ # # Translators: # Hans Nesse <>, 2013 +# Stein-Aksel Basma , 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 \n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"Last-Translator: Stein-Aksel Basma \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 access your Files via WebDAV" -msgstr "" +msgstr "Bruk denne adressen for å få tilgang til filene dine via WebDAV" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 0c3fdb1ebb..7f0a07640a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/nl/core.po b/l10n/nl/core.po index 7352282bf3..24b0af0fbe 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/nl/files.po index 8b170f50af..1fb1100771 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nl/files_external.po index ba3676225e..f507a95a98 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: André Koot \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 4f993adf25..a33d48998b 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/nl/files_trashbin.po index 281c9ff9e5..2635422a82 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 93d98cb310..5f9eb7f6ff 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 1e5c9f0e7b..b6bea2d7fe 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 26d4c12889..e34bcb044b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: André Koot \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 e94b904a95..a2aa55f4e3 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/nn_NO/files.po index 1dba71c237..acb0771f5d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nn_NO/files_external.po index 27824f544c..74bf620066 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 0c79189c66..256899bfb0 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 4ed6f8ac88..a054c41ef6 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: unhammer \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 3ea1252cb6..a24ba3a603 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/nn_NO/settings.po index d37243cd2d..a198c0af60 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 9e17b44a97..895b9419a6 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 d1a6763457..68c029f7cb 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/oc/files.po index abada50050..dbd4ba2323 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/oc/files_external.po index e4794bb67d..372fce7bc2 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 85c347a7be..7be92aa4c1 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 9792a345a8..06e03d76ae 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/oc/settings.po index a832efe3d3..611d297829 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 bad4c6ac4f..b20257f42d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 d21e338c28..4dc3ba5dc2 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/pl/files.po index e388324522..9edcb56625 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/pl/files_external.po index 5b62e8b973..7aee0bafa8 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 897622cbf7..ac33c4fd3c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 30a78df05b..a917a3762d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 82cf85ccef..54e63410bc 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 401d110a51..495ac2aa79 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 3a5aecaec7..1f6458e1cd 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: orcio6 \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 851b751237..715ebc54f1 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/pt_BR/files.po index e4ee8420c7..a2e7a35336 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: Flávio Veras \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_external.po b/l10n/pt_BR/files_external.po index fe1ee79dce..27cd11adf7 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Flávio Veras \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 3422c03176..c50b4bb9dd 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Flávio Veras \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 7a55ae541c..5ccf6c6618 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 ca8d184de0..d2687c0c2a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/pt_BR/settings.po index 4487c3b7fe..dd275898bd 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: bjamalaro \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 c8570e2a6c..75c8ac0f17 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Flávio Veras \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 ab4a616764..d699e17876 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Bruno Martins , 2013 # bmgmatias , 2013 # Mouxy , 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 \n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"Last-Translator: Bruno Martins \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 +23,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." @@ -286,7 +287,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" @@ -417,7 +418,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Sim, tenho a certeza que pretendo redefinir a minha palavra-passe agora." #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -476,7 +477,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" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 699f88e106..1a3a82d20a 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/pt_PT/files_external.po index 391f85fb8f..8d56b37088 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Mouxy \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 9829fd295f..b1eed656ee 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/pt_PT/files_trashbin.po index 3304ccf5a7..b136d3dd88 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 07cdc42d55..a05d0920f4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/pt_PT/settings.po index 70ff56b300..b07babbc0c 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -5,14 +5,15 @@ # Translators: # bmgmatias , 2013 # Mouxy , 2013 +# Helder Meneses , 2013 # Nelson Rosado , 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 \n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"Last-Translator: Helder Meneses \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 access your Files via WebDAV" -msgstr "" +msgstr "Use este endereço para aceder aos seus ficheiros via WebDav" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 7f8dcde86b..fa966ddee0 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 , 2013 # Mouxy , 2013 +# Helder Meneses , 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 \n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"Last-Translator: Bruno Martins \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 e14e432dfb..cf625c4d15 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ro/files.po index 0cc3d416fa..3b5b0b9bbe 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ro/files_external.po index 7ee2a43528..3cd544fe2c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 acfd04d510..47a91dcef0 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: sergiu_sechel \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 49decc1d2d..ed3a30a30b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 a62e744fc3..abffd7ae1d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index f1404b57c7..8ec664573a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 9c46adecb9..ae4a427575 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 2f0ef02029..78309e7393 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: Victor Bravo <>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 0962d65627..b9b545a4f3 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.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:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: hackproof \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_external.po b/l10n/ru/files_external.po index 7876985280..4582282c34 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 b33a063e57..a1fdac94a9 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Victor Bravo <>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index b19b239b90..d2f6918e75 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 491d0013c8..4a35173675 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 398034211d..ae6f416c27 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: hackproof \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 78a6b5a775..9ff2e0ed8a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: alfsoft \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 241364d696..d9bc0a4792 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/si_LK/files.po index d675c9a020..0fae866177 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/si_LK/files_external.po index c9587e7c2e..a835a07011 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 dd1c925392..b0c5f16764 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 be3dbf051d..5ee3a1bcd9 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 3b0a235ff4..3c0d0352eb 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/si_LK/settings.po index 00d90845d3..4ecd93e379 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 02b48bf1e1..d89380d8b2 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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_SK/core.po b/l10n/sk_SK/core.po index 5a38e3cde1..a51beafae0 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: mhh \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.po b/l10n/sk_SK/files.po index 612c648884..c1773fc45c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sk_SK/files_external.po index b96779e724..9afdfe52f5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: mhh \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 dfac301505..fb46459d6f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 7caf00ae64..3cf0b16eae 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 22e085b9c4..82674ad98f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/sk_SK/settings.po index d5ceb46ed6..41e1fdd450 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: mhh \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 b38b7f9b26..600917f7d0 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: mhh \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 bde8c0efc4..3d73b19f2b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sl/files.po index 7f12f5658a..7da9e555de 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sl/files_external.po index 56165c45f3..60ee44ca8c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 4090997905..5edfaf447c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 2a2d9fd9c1..9dd926156a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 d24133b97f..5599c3c0f8 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 08bb696a2a..a58899904c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 af4a82838a..761544db83 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: barbarak \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 df2352ab79..e1b99360b5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sq/files.po index b600099bf2..b2aa83dfc4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sq/files_external.po index 0f18541d06..8707926460 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 9a7354f018..14fcb9306c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 9fa2254ba8..8d37fda6cf 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 fc4b4c4ee7..27ae1f44c6 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index fc80cdb25a..54cf5535cb 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 e770beff7d..d0d5cdb7c5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 2e0099bec5..c62dea81e0 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr/files.po index d45e96c3d8..5cf6e87c05 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sr/files_external.po index b9d65615bb..9ad66615e0 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 975884c360..a6b92f5a00 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 d64224cc6b..b2659ca1cc 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 e1581cf679..15f7b586ff 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index dff75bc0bb..7291214340 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 ed1a478870..c71c9f91b8 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 7b59e3fe8c..9cc62828aa 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr@latin/files.po index c37ee92573..2664b979ea 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sr@latin/files_external.po index 7ac341e6a3..b3efd43af9 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 ff0f95b5ad..4d9d895f55 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 bd30195cdb..5e16a03d05 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 dd4a250c7b..79f8c9699a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/sr@latin/settings.po index 7f2ed32e2e..c6766791ef 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 0160bfadfa..9298504a7b 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sv/files.po index 22905c13e4..c51ea8231b 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sv/files_external.po index 3d02339625..56403350c5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 451764e4ce..434626b5a4 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/sv/files_trashbin.po index e64f396bc0..4e8e631087 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 4e44caa616..36182920c0 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index d394264d0e..9f5909e066 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 565c1dbfd0..38540042cd 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index e61e79bdb6..5f22daf0f7 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ta_LK/files.po index cd1ff4e114..9846efcefe 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ta_LK/files_external.po index a60d8a642f..b64a8db25c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 430ee0ffb2..fc7e62c05b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 6f0f999df1..bf7e4705d6 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 1cd7fe01a7..59f94246ea 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ta_LK/settings.po index adb32964fb..6202c0c285 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 b872eca681..51f5b2f962 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 2a60430f2f..e9600d7119 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/te/files.po index 9f18053d6f..0600b57e7b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/te/files_external.po index 16188ad42e..7806e85536 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 305d921244..6f2ef29f42 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index fca68ec405..993d0bf919 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 7849b02383..96099ac746 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 c4f2550a16..66b0d3c618 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-16 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ad77f50160..ce59067f68 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-16 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 7cceecbf0f..4eebc1e9b5 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-16 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index a9ea19cddd..27d34a14e3 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-16 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index a921d1a8ed..ea2da6b67c 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-16 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 6ad9827d19..dee1909042 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-16 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 8665bc3adf..1b4cd4d229 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-16 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index b1f13d4145..d9b9bfe956 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-16 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index f8506866fd..f9510d098d 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-16 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 206db8400e..ea6f802a81 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-16 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index af49ea18b8..f610240843 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-16 01:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 111f062166..7d68abb6d1 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/th_TH/files.po index b8125d1f63..572e1fcba8 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/th_TH/files_external.po index cf0eefa563..325b002871 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 94f41c9ed6..28f69361f5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 9a40ef8a30..32435564e0 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 506a51f60a..eb05ba7e56 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/th_TH/settings.po index a6df1feb4f..ed44ee0356 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 c5979e4761..d772ead7af 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 5c076caf65..c481cf1864 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-15 00:22+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/tr/files.po index 8833925006..00bacc7fc7 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/tr/files_external.po index 0ed35574e6..9edce31112 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 e827128270..6362004a15 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 214cd80004..db42b38a53 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 a7332a0207..8529d37a6f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index f9319558c1..8990725783 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:25+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 4e70f9a172..7b2042435e 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: ismail yenigül \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 368c0bd38c..15d79f96a3 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index b5f4f16463..dfcb313d0f 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 281b9af76c..938e0ca6c5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 72ef7aa68e..a6f9c120d9 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index abaad6da6b..7b0da33db6 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 195d29ebfe..69aa1eab14 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index da7d24ed20..5b369d9f5a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index a47ab57813..75a4fe7e05 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index d71b5c193e..15e113681a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/uk/files.po index 43a6e93ee4..fc98d121c2 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/uk/files_external.po index b0896b102a..d7d553a3c1 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 20d7cdf05f..2ee542bfe4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 c51cf52d65..09b70703a1 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 fe2c54f7d8..fb2cffbdf7 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 762a1fc985..0b870f8675 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 9e98507400..53fdd77e18 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 34d13d1aca..9aff183ba3 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/ur_PK/files.po index 9bca9c3126..90ea2c03f0 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 2b69f937b4..b7409fcefb 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ur_PK/settings.po index 9b0e912067..2e349b1f21 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 9024d9ebc4..e9eacd8d2b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 0bf8a7dc14..4fd6d1bea1 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/vi/files.po index eb4a3e5bcf..c775501bf6 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/vi/files_external.po index 035432deae..d13d63a057 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: xtdv \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 533c49aa46..8e7d988a1a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 7a31471c31..3f9b75886a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 8a6484d592..e331e53b3a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index c523cd0b9b..7d49e7dfe4 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 07e15714eb..dfe62f42f8 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 51d8209449..f129b63a54 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN.GB2312/files.po index 2e30b9e9ad..173427847a 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: hlx98007 \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_external.po b/l10n/zh_CN.GB2312/files_external.po index 309abfab56..e28a5fe44b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: hyy0591 \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 20f1559728..fcd818131d 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 48ff2d1544..b8688d45d6 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 74b6627359..a06d359861 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_CN.GB2312/settings.po index d2d81b8cd3..9f8caf8d60 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: hlx98007 \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 90e7e3a439..6ff53e0614 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 7cf105e73a..2b8da76b44 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN/files.po index b24140fdde..844a455bf6 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/zh_CN/files_external.po index 18c19624e9..faea223484 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 379972fb0b..a3a26b2b02 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 cc6fa911f0..6efb256f88 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 febe52a6b3..1260ed01de 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_CN/settings.po index e96e4ca499..ab51bda050 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 ad676005c6..90fbd8a973 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: modokwang \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 5d49b7ebad..9318c11856 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_HK/files.po index 0074c64e88..4ac3e14d8b 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/zh_HK/files_external.po index 883d6ad8bd..cf3a728058 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 0f9f15d05c..9d0e97023a 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 40e6ce74ad..f257e3c5e8 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 a231b95019..36dc7a1578 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_HK/settings.po index dbd77f5710..b057f2d974 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: I Robot \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 f8dd3bf30a..fe5f2b97a5 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 aaaedfad51..d8f8f7992c 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -400,7 +400,7 @@ msgstr "請求失敗!
您確定填入的電子郵件地址或是帳號名 #: 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 b5b7cfd250..2af89ddda6 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-15 02:24+0200\n" -"PO-Revision-Date: 2013-07-14 23:25+0000\n" +"POT-Creation-Date: 2013-07-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: pellaeon \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_external.po b/l10n/zh_TW/files_external.po index 24c58078bf..05c1e684e0 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: pellaeon \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 0ebb7992ec..501d046998 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 a3fc309021..b748a457ef 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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 46256bfa86..f265091997 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_TW/settings.po index 65f392229c..48fd13a42e 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:14+0000\n" "Last-Translator: pellaeon \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_ldap.po b/l10n/zh_TW/user_ldap.po index 51881a3824..35ef2dd636 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-16 01:56-0400\n" +"PO-Revision-Date: 2013-07-16 05:15+0000\n" "Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index eb628a530e..1e54dcb692 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -1,32 +1,57 @@ "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ą", "-licensed by " => "- autorius", "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 f24aa50dbf..408b8570fd 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 access your Files via WebDAV" => "Bruk denne adressen for å få tilgang til filene dine via WebDAV", "Login Name" => "Logginn navn", "Create" => "Opprett", "Default Storage" => "Standard lager", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 1390cd16be..259b303274 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 access your Files via WebDAV" => "Use este endereço para aceder aos seus ficheiros via WebDav", "Login Name" => "Nome de utilizador", "Create" => "Criar", "Admin Recovery Password" => "Recuperar password de administrador", From 7403cfff8bb0460e4ebaee64cadb4cb02284ba66 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Tue, 16 Jul 2013 09:50:06 +0200 Subject: [PATCH 070/108] update 'get in touch' links --- README.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 56f90cd554..ca7b04a925 100644 --- a/README.md +++ b/README.md @@ -13,13 +13,10 @@ http://doc.owncloud.org/server/5.0/developer_manual/app/gettingstarted.html http://owncloud.org/dev/contribute/ ### Get in touch -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 +* [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: From d82c1dfcabe84709ff02ea5c13c82c573d524937 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 16 Jul 2013 15:34:22 +0200 Subject: [PATCH 071/108] split out memcache factory from base class --- lib/memcache/cache.php | 25 +------------------------ lib/memcache/factory.php | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 24 deletions(-) create mode 100644 lib/memcache/factory.php diff --git a/lib/memcache/cache.php b/lib/memcache/cache.php index 331c689f06..b9e0c2249a 100644 --- a/lib/memcache/cache.php +++ b/lib/memcache/cache.php @@ -9,23 +9,7 @@ namespace OC\Memcache; abstract class Cache { - /** - * get a cache instance - * - * @param bool $global - * @return Cache - */ - static function create($global = false) { - if (XCache::isAvailable()) { - return new XCache($global); - } elseif (APC::isAvailable()) { - return new APC($global); - } elseif (Memcached::isAvailable()) { - return new Memcached($global); - } else { - return null; - } - } + /** * @param bool $global @@ -63,11 +47,4 @@ abstract class Cache { * @return mixed */ abstract public function clear($prefix = ''); - - /** - * @return bool - */ - static public function isAvailable() { - return XCache::isAvailable() || APC::isAvailable() || Memcached::isAvailable(); - } } diff --git a/lib/memcache/factory.php b/lib/memcache/factory.php new file mode 100644 index 0000000000..1926582aa5 --- /dev/null +++ b/lib/memcache/factory.php @@ -0,0 +1,38 @@ + + * 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 bool $global + * @return \OC\Memcache\Cache + */ + function create($global = false) { + if (XCache::isAvailable()) { + return new XCache($global); + } elseif (APC::isAvailable()) { + return new APC($global); + } elseif (Memcached::isAvailable()) { + return new Memcached($global); + } else { + return null; + } + } + + /** + * check if there is a memcache backend available + * + * @return bool + */ + public function isAvailable() { + return XCache::isAvailable() || APC::isAvailable() || Memcached::isAvailable(); + } +} From 69048ab71f615ea7a219f7f119855319cf38621d Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 16 Jul 2013 15:42:40 +0200 Subject: [PATCH 072/108] memchache: use prefix string instead of global flag --- lib/memcache/apc.php | 11 +---------- lib/memcache/cache.php | 15 ++++++++++++--- lib/memcache/memcached.php | 9 ++------- lib/memcache/xcache.php | 9 --------- 4 files changed, 15 insertions(+), 29 deletions(-) diff --git a/lib/memcache/apc.php b/lib/memcache/apc.php index b3bb68223b..575ee4427d 100644 --- a/lib/memcache/apc.php +++ b/lib/memcache/apc.php @@ -9,15 +9,6 @@ namespace OC\Memcache; class APC extends Cache { - 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 */ @@ -61,7 +52,7 @@ class APC extends Cache { return false; } elseif (!ini_get('apc.enable_cli') && \OC::$CLI) { return false; - }else{ + } else { return true; } } diff --git a/lib/memcache/cache.php b/lib/memcache/cache.php index b9e0c2249a..9db69ae410 100644 --- a/lib/memcache/cache.php +++ b/lib/memcache/cache.php @@ -9,12 +9,21 @@ namespace OC\Memcache; abstract class Cache { - + /** + * @var string $prefix + */ + protected $prefix; /** - * @param bool $global + * @param string $prefix */ - abstract public function __construct($global); + public function __construct($prefix = '') { + $this->prefix = \OC_Util::getInstanceId() . '/' . $prefix; + } + + public function getPrefix() { + return $this->prefix; + } /** * @param string $key diff --git a/lib/memcache/memcached.php b/lib/memcache/memcached.php index ab35bd8bba..978e6c2eff 100644 --- a/lib/memcache/memcached.php +++ b/lib/memcache/memcached.php @@ -9,18 +9,13 @@ namespace OC\Memcache; class Memcached extends Cache { - protected $prefix; - /** * @var \Memcached $cache */ private static $cache = null; - public function __construct($global = false) { - $this->prefix = \OC_Util::getInstanceId() . '/'; - if (!$global) { - $this->prefix .= \OC_User::getUser() . '/'; - } + 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)); diff --git a/lib/memcache/xcache.php b/lib/memcache/xcache.php index 0ee34c667d..33de30562f 100644 --- a/lib/memcache/xcache.php +++ b/lib/memcache/xcache.php @@ -9,15 +9,6 @@ namespace OC\Memcache; class XCache extends Cache { - protected $prefix; - - public function __construct($global = false) { - $this->prefix = \OC_Util::getInstanceId().'/'; - if (!$global) { - $this->prefix .= \OC_User::getUser().'/'; - } - } - /** * entries in XCache gets namespaced to prevent collisions between owncloud instances and users */ From 8ad148feaf975481815b3f2413fc1fa34b3e8be7 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 16 Jul 2013 15:46:27 +0200 Subject: [PATCH 073/108] memcache: some additional unit tests --- tests/lib/memcache/apc.php | 33 ++++++++++------------------- tests/lib/memcache/cache.php | 36 ++++++++++++++++++++++++++++++++ tests/lib/memcache/memcached.php | 7 +++++-- tests/lib/memcache/xcache.php | 29 ++++++++----------------- 4 files changed, 61 insertions(+), 44 deletions(-) create mode 100644 tests/lib/memcache/cache.php diff --git a/tests/lib/memcache/apc.php b/tests/lib/memcache/apc.php index e3dccc0966..6b2a49470b 100644 --- a/tests/lib/memcache/apc.php +++ b/tests/lib/memcache/apc.php @@ -1,31 +1,20 @@ . -* -*/ -class Test_Memcache_APC extends Test_Cache { +/** + * Copyright (c) 2013 Robin Appelman + * 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(); + $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 0000000000..2c1dbc9d2f --- /dev/null +++ b/tests/lib/memcache/cache.php @@ -0,0 +1,36 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Memcache; + +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 tearDown() { + if ($this->instance) { + $this->instance->clear(); + } + } +} diff --git a/tests/lib/memcache/memcached.php b/tests/lib/memcache/memcached.php index a0be047ed1..4b38ae8ef3 100644 --- a/tests/lib/memcache/memcached.php +++ b/tests/lib/memcache/memcached.php @@ -1,4 +1,5 @@ * This file is licensed under the Affero General Public License version 3 or @@ -6,12 +7,14 @@ * See the COPYING-README file. */ -class Test_Memcache_Memcached extends Test_Cache { +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(); + $this->instance = new \OC\Memcache\Memcached(uniqid()); } } diff --git a/tests/lib/memcache/xcache.php b/tests/lib/memcache/xcache.php index 48773533c8..f59afda396 100644 --- a/tests/lib/memcache/xcache.php +++ b/tests/lib/memcache/xcache.php @@ -1,31 +1,20 @@ . - * + * Copyright (c) 2013 Robin Appelman + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. */ -class Test_Memcache_XCache extends Test_Cache { +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(); + $this->instance = new \OC\Memcache\XCache(uniqid()); } } From 504089940de88220a425db21e8e133582fe15c30 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 16 Jul 2013 16:06:00 +0200 Subject: [PATCH 074/108] mamcache: implement the ArrayAccess interface --- lib/memcache/cache.php | 20 +++++++++++++++++++- tests/lib/memcache/cache.php | 22 ++++++++++++++++++++++ 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/lib/memcache/cache.php b/lib/memcache/cache.php index 9db69ae410..0ad1cc7ec0 100644 --- a/lib/memcache/cache.php +++ b/lib/memcache/cache.php @@ -8,7 +8,7 @@ namespace OC\Memcache; -abstract class Cache { +abstract class Cache implements \ArrayAccess { /** * @var string $prefix */ @@ -56,4 +56,22 @@ abstract class Cache { * @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/tests/lib/memcache/cache.php b/tests/lib/memcache/cache.php index 2c1dbc9d2f..e2643b9fcd 100644 --- a/tests/lib/memcache/cache.php +++ b/tests/lib/memcache/cache.php @@ -28,6 +28,28 @@ class Cache extends \Test_Cache { $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(); From dc1a17b6f486c565ff5b30a6446421f1436355af Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 16 Jul 2013 16:08:37 +0200 Subject: [PATCH 075/108] memcache: also switch factory to prefix --- lib/memcache/factory.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/memcache/factory.php b/lib/memcache/factory.php index 1926582aa5..b1b4997103 100644 --- a/lib/memcache/factory.php +++ b/lib/memcache/factory.php @@ -12,16 +12,16 @@ class Factory { /** * get a cache instance, will return null if no backend is available * - * @param bool $global + * @param string $prefix * @return \OC\Memcache\Cache */ - function create($global = false) { + function create($prefix = '') { if (XCache::isAvailable()) { - return new XCache($global); + return new XCache($prefix); } elseif (APC::isAvailable()) { - return new APC($global); + return new APC($prefix); } elseif (Memcached::isAvailable()) { - return new Memcached($global); + return new Memcached($prefix); } else { return null; } From 7d86e262e18d931f613a6dac16afe66a70d963ac Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 16 Jul 2013 22:32:04 +0200 Subject: [PATCH 076/108] Use autoloader for Patchwork/PHP/Shim/Normalizer --- lib/base.php | 1 + lib/util.php | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/base.php b/lib/base.php index 53aa7b09fd..43145e1733 100644 --- a/lib/base.php +++ b/lib/base.php @@ -370,6 +370,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 diff --git a/lib/util.php b/lib/util.php index 981b05b2b4..2586ad2832 100755 --- a/lib/util.php +++ b/lib/util.php @@ -1,7 +1,5 @@ Date: Tue, 16 Jul 2013 22:36:39 +0200 Subject: [PATCH 077/108] Cleanup error generation in base.php --- lib/base.php | 28 ++++++++-------------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/lib/base.php b/lib/base.php index 43145e1733..1ff462819d 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 ' .'giving the webserver write access to the config directory.' - ))); - $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(); From 971a3fd124785033e7ed7db1018512b838c5ec58 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 16 Jul 2013 22:37:32 +0200 Subject: [PATCH 078/108] Early errors (in base.php) don't have session available --- lib/template.php | 5 ++++- lib/user.php | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/template.php b/lib/template.php index ae9ea18744..a1808c0b35 100644 --- a/lib/template.php +++ b/lib/template.php @@ -181,7 +181,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 +243,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 diff --git a/lib/user.php b/lib/user.php index 830f13bb8d..d93ab1a5f7 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 { From 5b60fad467164326a776103e6a6ffc5a69b91a37 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Tue, 16 Jul 2013 22:42:09 +0200 Subject: [PATCH 079/108] Display the exception error backtrace preformatted --- lib/template.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/template.php b/lib/template.php index a1808c0b35..9ad1a330d4 100644 --- a/lib/template.php +++ b/lib/template.php @@ -550,6 +550,9 @@ class OC_Template{ $error_msg = '['.$exception->getCode().'] '.$error_msg; } $hint = $exception->getTraceAsString(); + if (!empty($hint)) { + $hint = '
'.$hint.'
'; + } while (method_exists($exception,'previous') && $exception = $exception->previous()) { $error_msg .= '
Caused by: '; if ($exception->getCode()) { From b2bcc9774bb3c7857a99dc81116e0d949962657e Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 16 Jul 2013 23:11:22 +0200 Subject: [PATCH 080/108] memcache: make base testcase abstract --- tests/lib/memcache/cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/memcache/cache.php b/tests/lib/memcache/cache.php index e2643b9fcd..d07c492cef 100644 --- a/tests/lib/memcache/cache.php +++ b/tests/lib/memcache/cache.php @@ -9,7 +9,7 @@ namespace Test\Memcache; -class Cache extends \Test_Cache { +abstract class Cache extends \Test_Cache { public function testExistsAfterSet() { $this->assertFalse($this->instance->hasKey('foo')); $this->instance->set('foo', 'bar'); From 210006c4a6ed4e46100d9af12647e145c6b67553 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 17 Jul 2013 02:28:02 -0400 Subject: [PATCH 081/108] [tx-robot] updated from transifex --- apps/files/l10n/et_EE.php | 1 + apps/files/l10n/fa.php | 1 + apps/files/l10n/pt_PT.php | 6 ++++++ apps/files_external/l10n/fa.php | 8 +++++++- core/l10n/pt_PT.php | 1 + l10n/af_ZA/core.po | 4 ++-- l10n/af_ZA/lib.po | 4 ++-- l10n/ar/core.po | 4 ++-- l10n/ar/files.po | 4 ++-- l10n/ar/files_external.po | 4 ++-- l10n/ar/files_sharing.po | 4 ++-- l10n/ar/files_trashbin.po | 4 ++-- l10n/ar/lib.po | 4 ++-- l10n/ar/settings.po | 4 ++-- l10n/ar/user_ldap.po | 4 ++-- l10n/bg_BG/core.po | 4 ++-- l10n/bg_BG/files.po | 4 ++-- l10n/bg_BG/files_external.po | 4 ++-- l10n/bg_BG/files_sharing.po | 4 ++-- l10n/bg_BG/files_trashbin.po | 4 ++-- l10n/bg_BG/lib.po | 4 ++-- l10n/bg_BG/settings.po | 4 ++-- l10n/bg_BG/user_ldap.po | 4 ++-- l10n/bn_BD/core.po | 4 ++-- l10n/bn_BD/files.po | 4 ++-- l10n/bn_BD/files_external.po | 4 ++-- l10n/bn_BD/files_sharing.po | 4 ++-- l10n/bn_BD/files_trashbin.po | 4 ++-- l10n/bn_BD/lib.po | 4 ++-- l10n/bn_BD/settings.po | 4 ++-- l10n/bn_BD/user_ldap.po | 4 ++-- l10n/bs/core.po | 4 ++-- l10n/bs/files.po | 4 ++-- l10n/bs/files_trashbin.po | 4 ++-- l10n/ca/core.po | 4 ++-- l10n/ca/files.po | 4 ++-- l10n/ca/files_external.po | 4 ++-- l10n/ca/files_sharing.po | 4 ++-- l10n/ca/files_trashbin.po | 4 ++-- l10n/ca/lib.po | 4 ++-- l10n/ca/settings.po | 4 ++-- l10n/ca/user_ldap.po | 4 ++-- l10n/cs_CZ/core.po | 4 ++-- l10n/cs_CZ/files.po | 4 ++-- l10n/cs_CZ/files_external.po | 4 ++-- l10n/cs_CZ/files_sharing.po | 4 ++-- l10n/cs_CZ/files_trashbin.po | 4 ++-- l10n/cs_CZ/lib.po | 4 ++-- l10n/cs_CZ/settings.po | 4 ++-- l10n/cs_CZ/user_ldap.po | 4 ++-- l10n/cy_GB/core.po | 4 ++-- l10n/cy_GB/files.po | 4 ++-- l10n/cy_GB/files_external.po | 4 ++-- l10n/cy_GB/files_sharing.po | 4 ++-- l10n/cy_GB/files_trashbin.po | 4 ++-- l10n/cy_GB/lib.po | 4 ++-- l10n/cy_GB/settings.po | 4 ++-- l10n/cy_GB/user_ldap.po | 4 ++-- l10n/da/core.po | 4 ++-- l10n/da/files.po | 4 ++-- l10n/da/files_external.po | 4 ++-- l10n/da/files_sharing.po | 4 ++-- l10n/da/files_trashbin.po | 4 ++-- l10n/da/lib.po | 4 ++-- l10n/da/settings.po | 4 ++-- l10n/da/user_ldap.po | 4 ++-- l10n/de/core.po | 4 ++-- l10n/de/files.po | 4 ++-- l10n/de/files_external.po | 4 ++-- l10n/de/files_sharing.po | 4 ++-- l10n/de/files_trashbin.po | 4 ++-- l10n/de/lib.po | 4 ++-- l10n/de/settings.po | 4 ++-- l10n/de/user_ldap.po | 4 ++-- l10n/de_DE/core.po | 4 ++-- l10n/de_DE/files.po | 4 ++-- l10n/de_DE/files_external.po | 4 ++-- l10n/de_DE/files_sharing.po | 4 ++-- l10n/de_DE/files_trashbin.po | 4 ++-- l10n/de_DE/lib.po | 4 ++-- l10n/de_DE/settings.po | 4 ++-- l10n/de_DE/user_ldap.po | 4 ++-- l10n/el/core.po | 4 ++-- l10n/el/files.po | 4 ++-- l10n/el/files_external.po | 4 ++-- l10n/el/files_sharing.po | 4 ++-- l10n/el/files_trashbin.po | 4 ++-- l10n/el/lib.po | 4 ++-- l10n/el/settings.po | 4 ++-- l10n/el/user_ldap.po | 4 ++-- l10n/en@pirate/files.po | 4 ++-- l10n/en@pirate/files_sharing.po | 4 ++-- l10n/eo/core.po | 4 ++-- l10n/eo/files.po | 4 ++-- l10n/eo/files_external.po | 4 ++-- l10n/eo/files_sharing.po | 4 ++-- l10n/eo/files_trashbin.po | 4 ++-- l10n/eo/lib.po | 4 ++-- l10n/eo/settings.po | 4 ++-- l10n/eo/user_ldap.po | 4 ++-- l10n/es/core.po | 4 ++-- l10n/es/files.po | 4 ++-- l10n/es/files_external.po | 4 ++-- l10n/es/files_sharing.po | 4 ++-- l10n/es/files_trashbin.po | 4 ++-- l10n/es/lib.po | 4 ++-- l10n/es/settings.po | 4 ++-- l10n/es/user_ldap.po | 4 ++-- l10n/es_AR/core.po | 4 ++-- l10n/es_AR/files.po | 4 ++-- l10n/es_AR/files_external.po | 4 ++-- l10n/es_AR/files_sharing.po | 4 ++-- l10n/es_AR/files_trashbin.po | 4 ++-- l10n/es_AR/lib.po | 4 ++-- l10n/es_AR/settings.po | 4 ++-- l10n/es_AR/user_ldap.po | 4 ++-- l10n/et_EE/core.po | 4 ++-- l10n/et_EE/files.po | 8 ++++---- l10n/et_EE/files_external.po | 4 ++-- l10n/et_EE/files_sharing.po | 4 ++-- l10n/et_EE/files_trashbin.po | 4 ++-- l10n/et_EE/lib.po | 4 ++-- l10n/et_EE/settings.po | 4 ++-- l10n/et_EE/user_ldap.po | 4 ++-- l10n/eu/core.po | 4 ++-- l10n/eu/files.po | 4 ++-- l10n/eu/files_external.po | 4 ++-- l10n/eu/files_sharing.po | 4 ++-- l10n/eu/files_trashbin.po | 4 ++-- l10n/eu/lib.po | 4 ++-- l10n/eu/settings.po | 4 ++-- l10n/eu/user_ldap.po | 4 ++-- l10n/fa/core.po | 4 ++-- l10n/fa/files.po | 8 ++++---- l10n/fa/files_external.po | 16 ++++++++-------- l10n/fa/files_sharing.po | 4 ++-- l10n/fa/files_trashbin.po | 4 ++-- l10n/fa/lib.po | 4 ++-- l10n/fa/settings.po | 4 ++-- l10n/fa/user_ldap.po | 4 ++-- l10n/fa/user_webdavauth.po | 13 +++++++------ l10n/fi_FI/core.po | 4 ++-- l10n/fi_FI/files.po | 4 ++-- l10n/fi_FI/files_external.po | 4 ++-- l10n/fi_FI/files_sharing.po | 4 ++-- l10n/fi_FI/files_trashbin.po | 4 ++-- l10n/fi_FI/lib.po | 4 ++-- l10n/fi_FI/settings.po | 4 ++-- l10n/fi_FI/user_ldap.po | 4 ++-- l10n/fr/core.po | 4 ++-- l10n/fr/files.po | 4 ++-- l10n/fr/files_external.po | 4 ++-- l10n/fr/files_sharing.po | 4 ++-- l10n/fr/files_trashbin.po | 4 ++-- l10n/fr/lib.po | 4 ++-- l10n/fr/settings.po | 4 ++-- l10n/fr/user_ldap.po | 4 ++-- l10n/gl/core.po | 4 ++-- l10n/gl/files.po | 4 ++-- l10n/gl/files_external.po | 4 ++-- l10n/gl/files_sharing.po | 4 ++-- l10n/gl/files_trashbin.po | 4 ++-- l10n/gl/lib.po | 4 ++-- l10n/gl/settings.po | 4 ++-- l10n/gl/user_ldap.po | 4 ++-- l10n/he/core.po | 4 ++-- l10n/he/files.po | 4 ++-- l10n/he/files_external.po | 4 ++-- l10n/he/files_sharing.po | 4 ++-- l10n/he/files_trashbin.po | 4 ++-- l10n/he/lib.po | 4 ++-- l10n/he/settings.po | 4 ++-- l10n/he/user_ldap.po | 4 ++-- l10n/hi/core.po | 4 ++-- l10n/hi/files.po | 4 ++-- l10n/hi/files_trashbin.po | 4 ++-- l10n/hi/lib.po | 4 ++-- l10n/hi/settings.po | 4 ++-- l10n/hi/user_ldap.po | 4 ++-- l10n/hr/core.po | 4 ++-- l10n/hr/files.po | 4 ++-- l10n/hr/files_external.po | 4 ++-- l10n/hr/files_sharing.po | 4 ++-- l10n/hr/files_trashbin.po | 4 ++-- l10n/hr/lib.po | 4 ++-- l10n/hr/settings.po | 4 ++-- l10n/hr/user_ldap.po | 4 ++-- l10n/hu_HU/core.po | 4 ++-- l10n/hu_HU/files.po | 4 ++-- l10n/hu_HU/files_external.po | 4 ++-- l10n/hu_HU/files_sharing.po | 4 ++-- l10n/hu_HU/files_trashbin.po | 4 ++-- l10n/hu_HU/lib.po | 4 ++-- l10n/hu_HU/settings.po | 4 ++-- l10n/hu_HU/user_ldap.po | 4 ++-- l10n/hy/files.po | 4 ++-- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 ++-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 ++-- l10n/ia/core.po | 4 ++-- l10n/ia/files.po | 4 ++-- l10n/ia/files_external.po | 4 ++-- l10n/ia/files_sharing.po | 4 ++-- l10n/ia/files_trashbin.po | 4 ++-- l10n/ia/lib.po | 4 ++-- l10n/ia/settings.po | 4 ++-- l10n/ia/user_ldap.po | 4 ++-- l10n/id/core.po | 4 ++-- l10n/id/files.po | 4 ++-- l10n/id/files_external.po | 4 ++-- l10n/id/files_sharing.po | 4 ++-- l10n/id/files_trashbin.po | 4 ++-- l10n/id/lib.po | 4 ++-- l10n/id/settings.po | 4 ++-- l10n/id/user_ldap.po | 4 ++-- l10n/is/core.po | 4 ++-- l10n/is/files.po | 4 ++-- l10n/is/files_external.po | 4 ++-- l10n/is/files_sharing.po | 4 ++-- l10n/is/files_trashbin.po | 4 ++-- l10n/is/lib.po | 4 ++-- l10n/is/settings.po | 4 ++-- l10n/is/user_ldap.po | 4 ++-- l10n/it/core.po | 4 ++-- l10n/it/files.po | 4 ++-- l10n/it/files_external.po | 4 ++-- l10n/it/files_sharing.po | 4 ++-- l10n/it/files_trashbin.po | 4 ++-- l10n/it/lib.po | 4 ++-- l10n/it/settings.po | 4 ++-- l10n/it/user_ldap.po | 4 ++-- l10n/ja_JP/core.po | 4 ++-- l10n/ja_JP/files.po | 4 ++-- l10n/ja_JP/files_external.po | 4 ++-- l10n/ja_JP/files_sharing.po | 4 ++-- l10n/ja_JP/files_trashbin.po | 4 ++-- l10n/ja_JP/lib.po | 4 ++-- l10n/ja_JP/settings.po | 4 ++-- l10n/ja_JP/user_ldap.po | 4 ++-- l10n/ka/files.po | 4 ++-- l10n/ka/files_sharing.po | 4 ++-- l10n/ka_GE/core.po | 4 ++-- l10n/ka_GE/files.po | 4 ++-- l10n/ka_GE/files_external.po | 4 ++-- l10n/ka_GE/files_sharing.po | 4 ++-- l10n/ka_GE/files_trashbin.po | 4 ++-- l10n/ka_GE/lib.po | 4 ++-- l10n/ka_GE/settings.po | 4 ++-- l10n/ka_GE/user_ldap.po | 4 ++-- l10n/ko/core.po | 4 ++-- l10n/ko/files.po | 4 ++-- l10n/ko/files_external.po | 4 ++-- l10n/ko/files_sharing.po | 4 ++-- l10n/ko/files_trashbin.po | 4 ++-- l10n/ko/lib.po | 4 ++-- l10n/ko/settings.po | 4 ++-- l10n/ko/user_ldap.po | 4 ++-- l10n/ku_IQ/core.po | 4 ++-- l10n/ku_IQ/files.po | 4 ++-- l10n/ku_IQ/files_sharing.po | 4 ++-- l10n/ku_IQ/files_trashbin.po | 4 ++-- l10n/ku_IQ/lib.po | 4 ++-- l10n/ku_IQ/settings.po | 4 ++-- l10n/ku_IQ/user_ldap.po | 4 ++-- l10n/lb/core.po | 4 ++-- l10n/lb/files.po | 4 ++-- l10n/lb/files_external.po | 4 ++-- l10n/lb/files_sharing.po | 4 ++-- l10n/lb/files_trashbin.po | 4 ++-- l10n/lb/lib.po | 4 ++-- l10n/lb/settings.po | 4 ++-- l10n/lb/user_ldap.po | 4 ++-- l10n/lt_LT/core.po | 4 ++-- l10n/lt_LT/files.po | 4 ++-- l10n/lt_LT/files_external.po | 4 ++-- l10n/lt_LT/files_sharing.po | 4 ++-- l10n/lt_LT/files_trashbin.po | 4 ++-- l10n/lt_LT/lib.po | 4 ++-- l10n/lt_LT/settings.po | 4 ++-- l10n/lt_LT/user_ldap.po | 4 ++-- l10n/lv/core.po | 4 ++-- l10n/lv/files.po | 4 ++-- l10n/lv/files_external.po | 4 ++-- l10n/lv/files_sharing.po | 4 ++-- l10n/lv/files_trashbin.po | 4 ++-- l10n/lv/lib.po | 4 ++-- l10n/lv/settings.po | 4 ++-- l10n/lv/user_ldap.po | 4 ++-- l10n/mk/core.po | 4 ++-- l10n/mk/files.po | 4 ++-- l10n/mk/files_external.po | 4 ++-- l10n/mk/files_sharing.po | 4 ++-- l10n/mk/files_trashbin.po | 4 ++-- l10n/mk/lib.po | 4 ++-- l10n/mk/settings.po | 4 ++-- l10n/mk/user_ldap.po | 4 ++-- l10n/ms_MY/core.po | 4 ++-- l10n/ms_MY/files.po | 4 ++-- l10n/ms_MY/files_external.po | 4 ++-- l10n/ms_MY/files_sharing.po | 4 ++-- l10n/ms_MY/files_trashbin.po | 4 ++-- l10n/ms_MY/lib.po | 4 ++-- l10n/ms_MY/settings.po | 4 ++-- l10n/ms_MY/user_ldap.po | 4 ++-- l10n/my_MM/core.po | 4 ++-- l10n/my_MM/files.po | 4 ++-- l10n/my_MM/files_sharing.po | 4 ++-- l10n/my_MM/lib.po | 4 ++-- l10n/nb_NO/core.po | 4 ++-- l10n/nb_NO/files.po | 4 ++-- l10n/nb_NO/files_external.po | 4 ++-- l10n/nb_NO/files_sharing.po | 4 ++-- l10n/nb_NO/files_trashbin.po | 4 ++-- l10n/nb_NO/lib.po | 4 ++-- l10n/nb_NO/settings.po | 4 ++-- l10n/nb_NO/user_ldap.po | 4 ++-- l10n/nl/core.po | 4 ++-- l10n/nl/files.po | 4 ++-- l10n/nl/files_external.po | 4 ++-- l10n/nl/files_sharing.po | 4 ++-- l10n/nl/files_trashbin.po | 4 ++-- l10n/nl/lib.po | 4 ++-- l10n/nl/settings.po | 4 ++-- l10n/nl/user_ldap.po | 4 ++-- l10n/nn_NO/core.po | 4 ++-- l10n/nn_NO/files.po | 4 ++-- l10n/nn_NO/files_external.po | 4 ++-- l10n/nn_NO/files_sharing.po | 4 ++-- l10n/nn_NO/files_trashbin.po | 4 ++-- l10n/nn_NO/lib.po | 4 ++-- l10n/nn_NO/settings.po | 4 ++-- l10n/nn_NO/user_ldap.po | 4 ++-- l10n/oc/core.po | 4 ++-- l10n/oc/files.po | 4 ++-- l10n/oc/files_external.po | 4 ++-- l10n/oc/files_sharing.po | 4 ++-- l10n/oc/files_trashbin.po | 4 ++-- l10n/oc/lib.po | 4 ++-- l10n/oc/settings.po | 4 ++-- l10n/oc/user_ldap.po | 4 ++-- l10n/pl/core.po | 4 ++-- l10n/pl/files.po | 4 ++-- l10n/pl/files_external.po | 4 ++-- l10n/pl/files_sharing.po | 4 ++-- l10n/pl/files_trashbin.po | 4 ++-- l10n/pl/lib.po | 4 ++-- l10n/pl/settings.po | 4 ++-- l10n/pl/user_ldap.po | 4 ++-- l10n/pt_BR/core.po | 4 ++-- l10n/pt_BR/files.po | 4 ++-- l10n/pt_BR/files_external.po | 4 ++-- l10n/pt_BR/files_sharing.po | 4 ++-- l10n/pt_BR/files_trashbin.po | 4 ++-- l10n/pt_BR/lib.po | 4 ++-- l10n/pt_BR/settings.po | 4 ++-- l10n/pt_BR/user_ldap.po | 4 ++-- l10n/pt_PT/core.po | 9 +++++---- l10n/pt_PT/files.po | 19 ++++++++++--------- l10n/pt_PT/files_external.po | 4 ++-- l10n/pt_PT/files_sharing.po | 4 ++-- l10n/pt_PT/files_trashbin.po | 4 ++-- l10n/pt_PT/lib.po | 4 ++-- l10n/pt_PT/settings.po | 4 ++-- l10n/pt_PT/user_ldap.po | 4 ++-- l10n/ro/core.po | 4 ++-- l10n/ro/files.po | 4 ++-- l10n/ro/files_external.po | 4 ++-- l10n/ro/files_sharing.po | 4 ++-- l10n/ro/files_trashbin.po | 4 ++-- l10n/ro/lib.po | 4 ++-- l10n/ro/settings.po | 4 ++-- l10n/ro/user_ldap.po | 4 ++-- l10n/ru/core.po | 4 ++-- l10n/ru/files.po | 4 ++-- l10n/ru/files_external.po | 4 ++-- l10n/ru/files_sharing.po | 4 ++-- l10n/ru/files_trashbin.po | 4 ++-- l10n/ru/lib.po | 4 ++-- l10n/ru/settings.po | 4 ++-- l10n/ru/user_ldap.po | 4 ++-- l10n/si_LK/core.po | 4 ++-- l10n/si_LK/files.po | 4 ++-- l10n/si_LK/files_external.po | 4 ++-- l10n/si_LK/files_sharing.po | 4 ++-- l10n/si_LK/files_trashbin.po | 4 ++-- l10n/si_LK/lib.po | 4 ++-- l10n/si_LK/settings.po | 4 ++-- l10n/si_LK/user_ldap.po | 4 ++-- l10n/sk_SK/core.po | 4 ++-- l10n/sk_SK/files.po | 4 ++-- l10n/sk_SK/files_external.po | 4 ++-- l10n/sk_SK/files_sharing.po | 4 ++-- l10n/sk_SK/files_trashbin.po | 4 ++-- l10n/sk_SK/lib.po | 4 ++-- l10n/sk_SK/settings.po | 4 ++-- l10n/sk_SK/user_ldap.po | 4 ++-- l10n/sl/core.po | 4 ++-- l10n/sl/files.po | 4 ++-- l10n/sl/files_external.po | 4 ++-- l10n/sl/files_sharing.po | 4 ++-- l10n/sl/files_trashbin.po | 4 ++-- l10n/sl/lib.po | 4 ++-- l10n/sl/settings.po | 4 ++-- l10n/sl/user_ldap.po | 4 ++-- l10n/sq/core.po | 4 ++-- l10n/sq/files.po | 4 ++-- l10n/sq/files_external.po | 4 ++-- l10n/sq/files_sharing.po | 4 ++-- l10n/sq/files_trashbin.po | 4 ++-- l10n/sq/lib.po | 4 ++-- l10n/sq/settings.po | 4 ++-- l10n/sq/user_ldap.po | 4 ++-- l10n/sr/core.po | 4 ++-- l10n/sr/files.po | 4 ++-- l10n/sr/files_external.po | 4 ++-- l10n/sr/files_sharing.po | 4 ++-- l10n/sr/files_trashbin.po | 4 ++-- l10n/sr/lib.po | 4 ++-- l10n/sr/settings.po | 4 ++-- l10n/sr/user_ldap.po | 4 ++-- l10n/sr@latin/core.po | 4 ++-- l10n/sr@latin/files.po | 4 ++-- l10n/sr@latin/files_external.po | 4 ++-- l10n/sr@latin/files_sharing.po | 4 ++-- l10n/sr@latin/files_trashbin.po | 4 ++-- l10n/sr@latin/lib.po | 4 ++-- l10n/sr@latin/settings.po | 4 ++-- l10n/sv/core.po | 4 ++-- l10n/sv/files.po | 4 ++-- l10n/sv/files_external.po | 4 ++-- l10n/sv/files_sharing.po | 4 ++-- l10n/sv/files_trashbin.po | 4 ++-- l10n/sv/lib.po | 4 ++-- l10n/sv/settings.po | 4 ++-- l10n/sv/user_ldap.po | 4 ++-- l10n/ta_LK/core.po | 4 ++-- l10n/ta_LK/files.po | 4 ++-- l10n/ta_LK/files_external.po | 4 ++-- l10n/ta_LK/files_sharing.po | 4 ++-- l10n/ta_LK/files_trashbin.po | 4 ++-- l10n/ta_LK/lib.po | 4 ++-- l10n/ta_LK/settings.po | 4 ++-- l10n/ta_LK/user_ldap.po | 4 ++-- l10n/te/core.po | 4 ++-- l10n/te/files.po | 4 ++-- l10n/te/files_external.po | 4 ++-- l10n/te/files_trashbin.po | 4 ++-- l10n/te/lib.po | 4 ++-- l10n/te/settings.po | 4 ++-- l10n/te/user_ldap.po | 4 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 ++-- l10n/th_TH/files.po | 4 ++-- l10n/th_TH/files_external.po | 4 ++-- l10n/th_TH/files_sharing.po | 4 ++-- l10n/th_TH/files_trashbin.po | 4 ++-- l10n/th_TH/lib.po | 4 ++-- l10n/th_TH/settings.po | 4 ++-- l10n/th_TH/user_ldap.po | 4 ++-- l10n/tr/core.po | 4 ++-- l10n/tr/files.po | 4 ++-- l10n/tr/files_external.po | 4 ++-- l10n/tr/files_sharing.po | 4 ++-- l10n/tr/files_trashbin.po | 4 ++-- l10n/tr/lib.po | 4 ++-- l10n/tr/settings.po | 4 ++-- l10n/tr/user_ldap.po | 4 ++-- l10n/ug/core.po | 4 ++-- l10n/ug/files.po | 4 ++-- l10n/ug/files_external.po | 4 ++-- l10n/ug/files_sharing.po | 4 ++-- l10n/ug/files_trashbin.po | 4 ++-- l10n/ug/lib.po | 4 ++-- l10n/ug/settings.po | 4 ++-- l10n/ug/user_ldap.po | 4 ++-- l10n/uk/core.po | 4 ++-- l10n/uk/files.po | 4 ++-- l10n/uk/files_external.po | 4 ++-- l10n/uk/files_sharing.po | 4 ++-- l10n/uk/files_trashbin.po | 4 ++-- l10n/uk/lib.po | 4 ++-- l10n/uk/settings.po | 4 ++-- l10n/uk/user_ldap.po | 4 ++-- l10n/ur_PK/core.po | 4 ++-- l10n/ur_PK/files.po | 4 ++-- l10n/ur_PK/files_trashbin.po | 4 ++-- l10n/ur_PK/lib.po | 4 ++-- l10n/ur_PK/settings.po | 4 ++-- l10n/ur_PK/user_ldap.po | 4 ++-- l10n/vi/core.po | 4 ++-- l10n/vi/files.po | 4 ++-- l10n/vi/files_external.po | 4 ++-- l10n/vi/files_sharing.po | 4 ++-- l10n/vi/files_trashbin.po | 4 ++-- l10n/vi/lib.po | 4 ++-- l10n/vi/settings.po | 4 ++-- l10n/vi/user_ldap.po | 4 ++-- l10n/zh_CN.GB2312/core.po | 4 ++-- l10n/zh_CN.GB2312/files.po | 4 ++-- l10n/zh_CN.GB2312/files_external.po | 4 ++-- l10n/zh_CN.GB2312/files_sharing.po | 4 ++-- l10n/zh_CN.GB2312/files_trashbin.po | 4 ++-- l10n/zh_CN.GB2312/lib.po | 4 ++-- l10n/zh_CN.GB2312/settings.po | 4 ++-- l10n/zh_CN.GB2312/user_ldap.po | 4 ++-- l10n/zh_CN/core.po | 4 ++-- l10n/zh_CN/files.po | 4 ++-- l10n/zh_CN/files_external.po | 4 ++-- l10n/zh_CN/files_sharing.po | 4 ++-- l10n/zh_CN/files_trashbin.po | 4 ++-- l10n/zh_CN/lib.po | 4 ++-- l10n/zh_CN/settings.po | 4 ++-- l10n/zh_CN/user_ldap.po | 4 ++-- l10n/zh_HK/core.po | 4 ++-- l10n/zh_HK/files.po | 4 ++-- l10n/zh_HK/files_external.po | 4 ++-- l10n/zh_HK/files_sharing.po | 4 ++-- l10n/zh_HK/files_trashbin.po | 4 ++-- l10n/zh_HK/lib.po | 4 ++-- l10n/zh_HK/settings.po | 4 ++-- l10n/zh_HK/user_ldap.po | 4 ++-- l10n/zh_TW/core.po | 4 ++-- l10n/zh_TW/files.po | 4 ++-- l10n/zh_TW/files_external.po | 4 ++-- l10n/zh_TW/files_sharing.po | 4 ++-- l10n/zh_TW/files_trashbin.po | 4 ++-- l10n/zh_TW/lib.po | 4 ++-- l10n/zh_TW/settings.po | 4 ++-- l10n/zh_TW/user_ldap.po | 4 ++-- 540 files changed, 1099 insertions(+), 1081 deletions(-) diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index c58b066e28..8ba928be94 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -68,6 +68,7 @@ "You don’t have write permissions here." => "Siin puudvad sul kirjutamisõigused.", "Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!", "Download" => "Lae alla", +"Size (MB)" => "Suurus (MB)", "Unshare" => "Lõpeta jagamine", "Upload too large" => "Üleslaadimine on liiga suur", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse.", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 73f4b493b4..8a6089f635 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -68,6 +68,7 @@ "You don’t have write permissions here." => "شما اجازه ی نوشتن در اینجا را ندارید", "Nothing in here. Upload something!" => "اینجا هیچ چیز نیست.", "Download" => "دانلود", +"Size (MB)" => "اندازه(مگابایت)", "Unshare" => "لغو اشتراک", "Upload too large" => "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 4273de9c47..8656edfc16 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -1,6 +1,8 @@ "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome", "Could not move %s" => "Não foi possível move o ficheiro %s", +"Unable to set upload directory." => "Não foi possível criar o diretório de upload", +"Invalid Token" => "Token inválido", "No file was uploaded. Unknown error" => "Nenhum ficheiro foi carregado. Erro desconhecido", "There is no error, the file uploaded with success" => "Não ocorreram erros, o ficheiro foi submetido com sucesso", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "O ficheiro enviado excede o limite permitido na directiva do php.ini upload_max_filesize", @@ -47,6 +49,7 @@ "{count} folders" => "{count} pastas", "1 file" => "1 ficheiro", "{count} files" => "{count} ficheiros", +"%s could not be renamed" => "%s não pode ser renomeada", "Upload" => "Carregar", "File handling" => "Manuseamento de ficheiros", "Maximum upload size" => "Tamanho máximo de envio", @@ -65,11 +68,14 @@ "You don’t have write permissions here." => "Não tem permissões de escrita aqui.", "Nothing in here. Upload something!" => "Vazio. Envie alguma coisa!", "Download" => "Transferir", +"Size (MB)" => "Tamanho (MB)", "Unshare" => "Deixar de partilhar", "Upload too large" => "Upload muito grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor.", "Files are being scanned, please wait." => "Os ficheiros estão a ser analisados, por favor aguarde.", "Current scanning" => "Análise actual", +"directory" => "diretório", +"directories" => "diretórios", "file" => "ficheiro", "files" => "ficheiros", "Upgrading filesystem cache..." => "Atualizar cache do sistema de ficheiros..." diff --git a/apps/files_external/l10n/fa.php b/apps/files_external/l10n/fa.php index 82d3676e17..036a34c099 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", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "خطا: \"smbclient\" نصب نشده است. نصب و راه اندازی سهام CIFS/SMB امکان پذیر نمیباشد. لطفا از مدیریت سازمان خود برای راه اندازی آن درخواست نمایید.", +"Warning: 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کنید.", +"Warning: 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/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index c8d7ddd91b..fd88b70ed4 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -134,6 +134,7 @@ "remember" => "lembrar", "Log in" => "Entrar", "Alternative Logins" => "Contas de acesso alternativas", +"Hey there,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" => "Olá,

Apenas para lhe informar que %s partilhou »%s« consigo.
Consulte-o aqui!

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/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 7a01f98a8f..94eaac1b07 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-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-16 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index e81fc22070..487f2119a1 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-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-16 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 98629d1bd9..74a8b2381f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ar/files.po index 0d84f05103..aa119ffa1a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ar/files_external.po index 634e28609c..ca7611d912 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 013b88782c..89ab7d24b3 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 794975e3eb..ae56d8031b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 e7a50f15a6..acee8d983e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 75edbdafc4..24955a4b6b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 d8481ec2c5..ec0467e2fd 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 8d18aa994f..6bb12555c0 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/bg_BG/files.po index 7475a69274..47159edeb2 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bg_BG/files_external.po index a66b6b5cb9..6a933cd93d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 8d99e0103a..ff9d127718 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 b8e3af76d7..02528cf85e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Димитър Кръстев \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 519caa60af..d485b79d0a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/bg_BG/settings.po index 82173443e4..7868f3f5ac 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 ffa6c7570c..5ee7a6748a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 5e3228c5b0..68525a6c68 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/bn_BD/files.po index d93f055b55..d9a2366dc6 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bn_BD/files_external.po index 771f85a3f9..6d93c3f9ec 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 649c713d77..39c19b6f79 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 5066d6dc1b..ae0a1cc70d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 dc21ddb30a..05403194a7 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/bn_BD/settings.po index 0fc44013e3..600024a9fe 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 884a73abbb..513b49d0ec 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 d5ed60d538..3761e7b8b5 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index a4b83d2698..74e6991e9a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 1226bd9618..bdc9b45863 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 7b33c60865..b06b433eda 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ca/files.po index 698f6924b1..3d0dd07272 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 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_external.po b/l10n/ca/files_external.po index 9f6dc6cc7f..643e389b7f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 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 dbd46411f6..d462935960 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 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 94757926e1..7a93119b75 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 226be349eb..cba409bc22 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index f3c1f1ad1f..0fabd1c9cb 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 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 9d82feeaa4..50b126b34f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 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 8e2cba74d3..9924d1bacb 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/cs_CZ/files.po index fbeac5004d..b968f0751b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/cs_CZ/files_external.po index 9c83c0e9a4..6464203262 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 26d7b7dd4f..114cacf0ca 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 cd7b55307b..3695d5a821 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 ce64a0d98f..dd17e5f53a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/cs_CZ/settings.po index 8b15190290..5e30bc975f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Honza K. \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 ac66bcbd88..6f514f8d75 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: Tomáš Chvátal \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 e9f55e9a03..60ca251f68 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/cy_GB/files.po index bc75d73567..9c7b9cba19 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/cy_GB/files_external.po index 53782eeeda..25b5868496 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 6a15c0f05a..1c119c71b8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 14ca4b4873..51f8d0143d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: ubuntucymraeg \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 d63afc55c2..c3969187ee 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/cy_GB/settings.po index bd037c0cd5..8ecdae0a36 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 6b3f80c381..7c34c68353 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 f6c1832143..d103c1728a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/da/files.po index 33278b134f..ae82a9e72c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/da/files_external.po index c96fb1f625..e421f6f852 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 05b577113c..5e3c89e938 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 1d4da36897..f8792603ec 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 47f721892f..96e62e3baf 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index da984c490c..0376e6ae83 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Morten Juhl-Johansen Zölde-Fejér \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 607318d716..24bc2ecb55 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 897d62d7fe..dd40e9c33c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index 3bbb17a640..e1b04c82bd 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: kabum \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 8eb4334df3..72607ee315 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index a20ef05697..b30d5cc1b6 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 07873608c7..59f81dede0 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 0cbc310c4c..a39864317d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 2442235054..e4f9746264 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 14fef61b3d..ae2285f1d0 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 06808e78c1..11e2da20d4 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 5c600586e3..e8ae5b2d10 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: kabum \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 3e743d1b10..398f6cdbc6 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index f2f2842af1..04e8b0afca 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: JamFX \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index bcd4ece72c..7d8f555929 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index e088119668..47bb28d900 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 5dd97c202d..980a9535d7 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: kabum \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 98581d51b6..f544d2b1ce 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index aed06275d5..81b71aa147 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/el/files.po index 811e9cb54a..e78efe35a8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/el/files_external.po index 79db7e67f6..2172f8772c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: KAT.RAT12 \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 3b57fcff47..6c8f71ecb0 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 babffee811..aa58c8c9f8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 201673b5eb..ad1f134349 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index a2aab06a56..dc6e512223 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 6b289448ed..c6c60eed76 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 d3dca00e63..e0ed2c60a9 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index cd9c5d9b9e..699082fa88 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 bac5e60698..e955556d9b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/eo/files.po index 52571a69f2..3c1ba325ac 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/eo/files_external.po index 4c4989be3e..7b60d83888 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 92b8d89b03..f7900c32e9 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 54f503049e..c47acddb33 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 c923920d48..efe88cfc6a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index f28fe95b45..d632df7342 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 c47a2d680f..807f26f207 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 7b31c7bc8b..d798541488 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/es/files.po index e677a958b1..74bc50ffe4 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: qdneren \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_external.po b/l10n/es/files_external.po index a5c2d94131..f320ca6527 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Korrosivo \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 a70fe15d7c..af3b0d189b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Korrosivo \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 8c9b096a02..2d4190a467 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Korrosivo \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 3908857796..e5d045975d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 50050dd7cb..557ac7d1b8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: qdneren \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 b1442adb02..92d730e378 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: xhiena \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 62c99834b7..bd53005ab4 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: cjtess \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.po b/l10n/es_AR/files.po index 4b95bfa2ae..61e723fc3e 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: cjtess \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_external.po b/l10n/es_AR/files_external.po index 26d3427d93..02baba0327 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: cjtess \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 e29f2c6159..c2fe728b83 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: cjtess \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 61519208e3..f4bff7bb29 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 2306702a18..dd149b8ecd 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/es_AR/settings.po index c6ff1b1ae7..340a87a496 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: cjtess \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 bbed37a53e..acbaf859b1 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: cjtess \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 e901e39f0d..901f0fb182 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/et_EE/files.po index afaac644d4..47204287e1 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -309,7 +309,7 @@ msgstr "Lae alla" #: templates/index.php:80 msgid "Size (MB)" -msgstr "" +msgstr "Suurus (MB)" #: templates/index.php:87 templates/index.php:88 msgid "Unshare" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 009721f8c0..f283c520f6 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Rivo Zängov \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 a62684016a..2abbaa860f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Rivo Zängov \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 e4c22adc71..c7cfb243ec 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: Rivo Zängov \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 e1db83567a..2d9d111052 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/et_EE/settings.po index 2790153ec1..b4eccf2514 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: pisike.sipelgas \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 f49ed019c1..cb96725d01 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: pisike.sipelgas \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 945bc29ce0..8830a761f4 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/eu/files.po index 8b0f9fa496..da9dc4d444 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/eu/files_external.po index b3c1d8449d..075af18a4e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Piarres Beobide \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 0f54981f7d..074d2f63c5 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 36c23a962e..57b05f20ee 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 6b993549cc..aec2515505 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 6315c2b886..b91bb21922 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index de8e9d3539..9ed1f96d01 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 b89db91806..e1d0b18873 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: miki_mika1362 \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.po b/l10n/fa/files.po index 7c7f2b5654..3809ad7c0d 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"Last-Translator: miki_mika1362 \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" @@ -308,7 +308,7 @@ msgstr "دانلود" #: templates/index.php:80 msgid "Size (MB)" -msgstr "" +msgstr "اندازه(مگابایت)" #: templates/index.php:87 templates/index.php:88 msgid "Unshare" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 457b87778b..0178f39111 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -49,14 +49,14 @@ msgid "" "Warning: 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 "" "Warning: 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 6d7563f4a4..e3a219cc5e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: miki_mika1362 \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 705a2cc6a4..daed061075 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 bdc5474ac6..fb235470e9 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 592f2a0b3d..080dda2213 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: miki_mika1362 \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 3b7551b0aa..1f73346dc7 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/user_webdavauth.po b/l10n/fa/user_webdavauth.po index 1310a3b5e6..fb3e2b908a 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 , 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 \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 \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 88695ae3bc..e0782e6278 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/fi_FI/files.po index d749522b0c..553efe97ee 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Jiri Grönroos \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_external.po b/l10n/fi_FI/files_external.po index a38825ccbc..5f62a188ec 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 e7c0288216..4933c6f66a 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/fi_FI/files_trashbin.po index deda5fe2af..88202b57cb 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 26597929f3..6452ece861 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/fi_FI/settings.po index 139f65333a..82441cb663 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Jiri Grönroos \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/user_ldap.po b/l10n/fi_FI/user_ldap.po index 5a9b84bbf9..1c93d7f508 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 237c11ea0a..6c9cde267e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/fr/files.po index 6e4e6aef7e..ffda287fbd 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Adalberto Rodrigues \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_external.po b/l10n/fr/files_external.po index 0062dbbfce..555e6c7921 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 d9b0e2f976..0163477916 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: square \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 998684a1f3..2bc2d62e1c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 ca146f82ba..1fd4942819 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 26f664b2ec..b6c0dde898 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Adalberto Rodrigues \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 c18a9e934c..084f4d49da 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: plachance \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 5876519053..05359f2764 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: mbouzada \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.po b/l10n/gl/files.po index b3a0ea209d..31787f5506 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: mbouzada \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_external.po b/l10n/gl/files_external.po index 2537fa88a3..6d6843fcce 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 1e5f37ef89..1df61ba86b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: mbouzada \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 1b1a5c5641..554cb9299d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 dbebb83bb7..b15132d2f2 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 2be287ff69..3081f01681 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: mbouzada \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 7fdc55510f..952fb0937f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: mbouzada \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 eb9f3ddb0b..549c07881e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/he/files.po index 7eef49edb5..e09c8840ef 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/he/files_external.po index 1b42beebfb..8a4ad50777 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 37fa826aeb..5766019c79 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 f9a5a726cc..bb0774633c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Yaron Shahrabani \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 f0516c4d72..a45d01f120 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 7d3eaeaff8..b448c5c765 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 fd8ed59779..c6f155da5f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 7a131a0748..585d638e5c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 1b0c40803f..bc7aec79fd 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 510d0d871b..72a7002e82 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 43405095dc..811b01669f 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-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-16 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index ea5a0cb322..d6517b6f97 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 64f080204f..621c283050 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 be8bbe31dc..f15f6d0bd9 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/hr/files.po index c1253691cb..745a02f392 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hr/files_external.po index 300028e73c..239b5cf080 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 489c27a665..2b2c8e9fa9 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 e3e3b86f83..32042e8545 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 6e073216bb..b80c5f06ae 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index fca9becc31..418552ae12 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 89a5cd0729..536bdabd41 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 a6e525ef0d..fc30fcb608 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: Laszlo Tornoci \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.po b/l10n/hu_HU/files.po index 19784205f1..f3efb05434 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hu_HU/files_external.po index 8faa409654..6b6179e6dc 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Laszlo Tornoci \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 2c38118073..723b2138da 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Laszlo Tornoci \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 2029887fb4..7503f89c15 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 323f0b8f14..0367f4f318 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/hu_HU/settings.po index c4ff8f9ed1..de7fcd316d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Laszlo Tornoci \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 ecea996337..9ce1583e3b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: Laszlo Tornoci \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 c6f9e75101..96c6b4a7fb 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hy/files_external.po index 019473b1e0..aedc12bc24 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-16 01:56-0400\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 1fe9c96faf..341fe29d79 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 4a5faa2f1d..b5ade7baea 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-16 01:56-0400\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 a7b0e408ab..a3f359e76d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 4975b41a5d..291e3472e0 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/ia/files.po index 3761df6b2b..3ccd90b7fe 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ia/files_external.po index cfbdbfef1c..5c58fac771 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 70e01c6b77..25dad43a34 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 36ff7025c9..8da3c80946 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 0dc3457ae5..1481c06a51 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index e900599dbd..682d7dde10 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 c73a359766..576be42966 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 97d5ca02ac..0f474a7dbd 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/id/files.po index 5d705696e5..cb98864a28 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/id/files_external.po index f55ad37488..54491ea6e8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 3eb2122760..8ef86f5117 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 caa11bfea8..c7b657eb9f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 c940cd9dc4..b2ac1efcb8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index f33c752762..6aa3685c99 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 6f24ea0b5e..9c26018691 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 a0fb835885..7b90f47383 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/is/files.po index 198a2ead32..813e30b78f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/is/files_external.po index a095743f9e..adbd2f9dff 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 aae0dc523d..aa3c93d591 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 8902c225a8..f1e909a148 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 d5a572ebd3..27bab1b43f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index c47ecb25ce..8700391e25 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 560646dcd5..ccad0cb2ea 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: Magnus Magnusson \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 6b4f74aea4..8e4c4d860c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Vincenzo Reale \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.po b/l10n/it/files.po index 118b7f2815..5794120594 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Vincenzo Reale \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_external.po b/l10n/it/files_external.po index 67d0655315..7408154bc3 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Vincenzo Reale \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 942cbed1ab..98d538f460 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Vincenzo Reale \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 71e5f85d88..b44df1c806 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Vincenzo Reale \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 9db4fe4915..d9a0065d2f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 582f8fd8ab..3eb3b27335 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Vincenzo Reale \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 756476aaba..fe692028df 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: Vincenzo Reale \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 a20f0576d4..a1e7f2deab 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Daisuke Deguchi \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.po b/l10n/ja_JP/files.po index 0c179248db..0a0ffe43bd 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: pabook \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_external.po b/l10n/ja_JP/files_external.po index 06098e70c1..8d5333ecbe 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 ad77f98b89..b35ce89a8f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: tt yn \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 c5840a9c21..b5be6ff3a7 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 e3eda617f3..59328fb3f2 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ja_JP/settings.po index d2513e017e..958d43d9a0 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Daisuke Deguchi \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 5d313bb95d..174b0a64c3 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: Daisuke Deguchi \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 c4d7b314d8..74cd7b19fa 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 58fd9aca1a..9f6a3989f6 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 b69c2f4aa8..d29c769ee1 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/ka_GE/files.po index 2e84bd5b12..ae96713f07 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ka_GE/files_external.po index 3fcb6b529f..d95f98a233 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: drlinux64 \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 c568596978..36ff0ca22e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 803560eebd..75ec682b5d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: drlinux64 \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 31d0ccbb15..d2d78a6855 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ka_GE/settings.po index 761320d2eb..c355454557 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 ff2434d388..5dc5aa92e6 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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/ko/core.po b/l10n/ko/core.po index 452eeee1b9..bdfa57a831 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ko/files.po index db585343a5..3311c70335 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ko/files_external.po index a333bac029..3ae5824496 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Shinjo Park \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 b416a17276..d9c91d1ddd 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 45c69a8d24..01ecfa79de 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 fcd4bbfc7e..6e7f8db303 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 6140751d62..8963882247 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 71ba779aa4..18ddb8ec95 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 aab5f4f3d0..688bf0a4d6 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/ku_IQ/files.po index fc830a8d46..9adc8ea103 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_sharing.po b/l10n/ku_IQ/files_sharing.po index 36b77c9049..b6dc055885 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 832517006c..1e7fb10898 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 4174dad549..78cd991e4d 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-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-16 06:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ku_IQ/settings.po index ecf95b52a7..ca8fff2a33 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 a28bbd493d..4c592ba7d5 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 5b3211b377..9874ee4f79 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/lb/files.po index 497e84e2ba..f0da095f33 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lb/files_external.po index 80c0a356ad..7f5f1110b9 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 e9af078fd9..2d3aa871ec 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: llaera \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 f2d50e3196..b0c667f174 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 31b72a98a2..cf95d92f45 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 1331a3a6fc..c94056e94c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 b7069de570..beca103ecd 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 ffd6400009..4079565e2b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/lt_LT/files.po index 90d9b1dbd5..224db714e7 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lt_LT/files_external.po index b43e770f5b..6e2ed19487 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Min2liz \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 16b531870c..e77a732adb 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 afaa086c0a..bab098187f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: fizikiukas \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 aa9513fa7c..3c99d90acf 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/lt_LT/settings.po index 645046c930..87789fa85a 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: fizikiukas \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/user_ldap.po b/l10n/lt_LT/user_ldap.po index 64e273fdd0..b257319a42 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 8d6fa18840..66e18c24d9 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/lv/files.po index 5f4834d7da..5a316b75dc 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lv/files_external.po index f0e01ec74f..cb771f70aa 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 27e1af6f17..51e14cf668 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 8bda34559b..997a4b3fd9 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 15e6b4d31f..6044beaba6 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 49d98eba52..a060577967 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 4979535e44..30bd72afc7 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 98120c85e5..bf38be9375 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/mk/files.po index 3592bde7c2..aefc904b4f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/mk/files_external.po index da72c5906d..f7ae77d942 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 143e1ded41..b9a64540c0 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 80e82a3f0d..7843be64c1 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 d1f5e30ce1..d327bb9be1 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 46e2ece84f..a5a52e2580 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 58221d601b..f9ed93c5c1 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index df29a97e51..84b97b8365 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/ms_MY/files.po index cf00e38ce7..42e37f108e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ms_MY/files_external.po index a5752e069f..e770e88ca1 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 7dc8dcc771..5252b40240 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 60aac5b1a8..a71ed0cb72 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 7a09b22d4c..00d2ad1a42 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ms_MY/settings.po index 572e2a47c2..5cdaa3c84c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 be265b3b66..e1902a86ed 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 3be6248831..fdc5abda07 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/my_MM/files.po index c6bd3986f6..677a0e3e08 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/files_sharing.po b/l10n/my_MM/files_sharing.po index 10824b77bc..00e3a1124b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 a7fde5dc5d..8a4a39daf8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/nb_NO/core.po b/l10n/nb_NO/core.po index db957cf9e3..1d15e8b1c7 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/nb_NO/files.po index 82f98b5fe8..88e99ce2be 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Stein-Aksel Basma \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_external.po b/l10n/nb_NO/files_external.po index 3ef80c30ab..dd1309cae2 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 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 05c9905e45..7be544650e 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Stein-Aksel Basma \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_trashbin.po b/l10n/nb_NO/files_trashbin.po index 7b08fabf7e..61610e1b69 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 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 857247c01e..49359dd54c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/nb_NO/settings.po index 2408608bca..e07bd991fd 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Stein-Aksel Basma \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/user_ldap.po b/l10n/nb_NO/user_ldap.po index 7f0a07640a..be36462550 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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/nl/core.po b/l10n/nl/core.po index 24b0af0fbe..46351da7a4 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/nl/files.po index 1fb1100771..99d32b9630 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nl/files_external.po index f507a95a98..7c559a1b01 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: André Koot \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 a33d48998b..9c6e71f811 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/nl/files_trashbin.po index 2635422a82..233e63b47f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 5f9eb7f6ff..a5f5054555 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index b6bea2d7fe..a433bef403 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index e34bcb044b..07795340d6 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: André Koot \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 a2aa55f4e3..acb70a63f9 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/nn_NO/files.po index acb0771f5d..d719a5bd7f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nn_NO/files_external.po index 74bf620066..3471add2cd 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 256899bfb0..0a5422156b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 a054c41ef6..256acba665 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: unhammer \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 a24ba3a603..75bd3f8d3c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/nn_NO/settings.po index a198c0af60..99d9c14073 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 895b9419a6..8de011ddc6 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 68c029f7cb..8d99cd1759 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/oc/files.po index dbd4ba2323..d631723fec 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/oc/files_external.po index 372fce7bc2..3092ccb23a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 7be92aa4c1..4e7cfb1f4b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 06e03d76ae..d1a4d8700b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 192782b618..07236bf267 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-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-16 06:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/oc/settings.po index 611d297829..73a128d7fb 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 b20257f42d..11f7a91f89 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 4dc3ba5dc2..ed92a73689 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/pl/files.po index 9edcb56625..11fb080586 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/pl/files_external.po index 7aee0bafa8..7e4fe365b8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index ac33c4fd3c..06cd70c042 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 a917a3762d..3a4f3c3f2d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 54e63410bc..325fe51284 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 495ac2aa79..4e275e0f5c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 1f6458e1cd..6f1694e4d8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: orcio6 \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 715ebc54f1..bf429e33e4 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/pt_BR/files.po index a2e7a35336..cb96efb64a 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Flávio Veras \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_external.po b/l10n/pt_BR/files_external.po index 27cd11adf7..ba4b1deea1 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Flávio Veras \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 c50b4bb9dd..154dc2b04f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Flávio Veras \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 5ccf6c6618..9914284011 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 d2687c0c2a..eee42dedd6 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/pt_BR/settings.po index dd275898bd..51fd18a894 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: bjamalaro \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 75c8ac0f17..fddab3d10e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: Flávio Veras \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 d699e17876..032128f4e4 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -6,13 +6,14 @@ # Bruno Martins , 2013 # bmgmatias , 2013 # Mouxy , 2013 +# Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" -"Last-Translator: Bruno Martins \n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"Last-Translator: Helder Meneses \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" @@ -615,7 +616,7 @@ msgstr "Contas de acesso alternativas" msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" -msgstr "" +msgstr "Olá,

Apenas para lhe informar que %s partilhou »%s« consigo.
Consulte-o aqui!

Cumprimentos!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 1a3a82d20a..434bb213cd 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -4,13 +4,14 @@ # # Translators: # bmgmatias , 2013 +# FernandoMASilva, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"Last-Translator: FernandoMASilva\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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" @@ -232,7 +233,7 @@ msgstr "{count} ficheiros" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s não pode ser renomeada" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -308,7 +309,7 @@ msgstr "Transferir" #: templates/index.php:80 msgid "Size (MB)" -msgstr "" +msgstr "Tamanho (MB)" #: templates/index.php:87 templates/index.php:88 msgid "Unshare" @@ -334,11 +335,11 @@ msgstr "Análise actual" #: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "diretório" #: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "diretórios" #: templates/part.list.php:87 msgid "file" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 8d56b37088..ad563a800d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Mouxy \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 b1eed656ee..0f835b3d61 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/pt_PT/files_trashbin.po index b136d3dd88..9b6468b0bb 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 a05d0920f4..6e4aa5fd61 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/pt_PT/settings.po index b07babbc0c..368813fee2 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Helder Meneses \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/user_ldap.po b/l10n/pt_PT/user_ldap.po index fa966ddee0..ac061a994b 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: Bruno Martins \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index cf625c4d15..103248d1ea 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/ro/files.po index 3b5b0b9bbe..50bebf9d07 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ro/files_external.po index 3cd544fe2c..5af30fa7f3 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 47a91dcef0..9f185dd28f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: sergiu_sechel \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 ed3a30a30b..f8343d0c8b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 abffd7ae1d..39ebd8a985 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 8ec664573a..da06741307 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 ae4a427575..689e62678a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 78309e7393..8e00c64345 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 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" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index b9b545a4f3..72933985df 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: hackproof \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_external.po b/l10n/ru/files_external.po index 4582282c34..01d2dac194 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 a1fdac94a9..a5a2fca56c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 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 d2f6918e75..05bd3f11bb 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 4a35173675..2e40b5ee0d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index ae6f416c27..b559856f80 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: hackproof \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 9ff2e0ed8a..0689c0a87e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: alfsoft \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 d9bc0a4792..9ab7db9deb 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/si_LK/files.po index 0fae866177..af12eeedd3 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/si_LK/files_external.po index a835a07011..c5a4b17f20 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 b0c5f16764..6798cf2fca 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 5ee3a1bcd9..df981e0833 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 3c0d0352eb..5822b061e8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/si_LK/settings.po index 4ecd93e379..adccd8fe3f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 d89380d8b2..73930576ac 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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_SK/core.po b/l10n/sk_SK/core.po index a51beafae0..1bf84e3f50 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: mhh \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.po b/l10n/sk_SK/files.po index c1773fc45c..fc4b4d66c5 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sk_SK/files_external.po index 9afdfe52f5..a0a8c3e5dd 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: mhh \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 fb46459d6f..5d9f542def 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 3cf0b16eae..feeb9b2bb3 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 82674ad98f..57c323b789 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/sk_SK/settings.po index 41e1fdd450..3dabc097d4 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: mhh \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 600917f7d0..6f68454ac3 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: mhh \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 3d73b19f2b..886355d0e8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/sl/files.po index 7da9e555de..037cdeb2d1 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sl/files_external.po index 60ee44ca8c..b8b8016e8a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 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 5edfaf447c..bfd4a57fca 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 9dd926156a..ddb6e44fb5 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 5599c3c0f8..0066eb12ce 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index a58899904c..bb78c0921b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 761544db83..1c2d51f7e6 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: barbarak \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 e1b99360b5..fb94210cb4 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/sq/files.po index b2aa83dfc4..e926bfd348 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sq/files_external.po index 8707926460..f2f0b0d442 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 14fcb9306c..5168286b20 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 8d37fda6cf..91d0f4555f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 27ae1f44c6..d0fefdc15b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 54cf5535cb..c3f7f1a2ab 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 d0d5cdb7c5..6af69ba47b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 c62dea81e0..ec89a32268 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr/files.po index 5cf6e87c05..0925b075df 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sr/files_external.po index 9ad66615e0..2a0105b932 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 a6b92f5a00..cc9350827d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 b2659ca1cc..fdae5c6a3e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 15f7b586ff..b983fa2d14 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 7291214340..fff55d8711 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 c71c9f91b8..59733647ab 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 9cc62828aa..e5dcd6f9c5 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr@latin/files.po index 2664b979ea..2284f7b137 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sr@latin/files_external.po index b3efd43af9..b81595c84a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 4d9d895f55..81c190aa49 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 5e16a03d05..49ef6a996a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 79f8c9699a..cf73d85f33 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/sr@latin/settings.po index c6766791ef..ba2943c744 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 9298504a7b..8f5474fedb 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/sv/files.po index c51ea8231b..dd2b0c25d8 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sv/files_external.po index 56403350c5..aaa49ef79e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 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 434626b5a4..cada804a8b 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/sv/files_trashbin.po index 4e8e631087..cb6571604a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 36182920c0..efdd6feb68 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 9f5909e066..493c563f39 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 38540042cd..eabab72a1f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 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/ta_LK/core.po b/l10n/ta_LK/core.po index 5f22daf0f7..276b044c6a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/ta_LK/files.po index 9846efcefe..d5facc4351 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ta_LK/files_external.po index b64a8db25c..d383bd4894 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 fc7e62c05b..0d0dd9d463 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 bf7e4705d6..bf23a92cd7 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 59f94246ea..1304184dcb 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ta_LK/settings.po index 6202c0c285..5ce40d851d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 51f5b2f962..0e74b7be40 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 e9600d7119..d966389de7 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/te/files.po index 0600b57e7b..71733cc6a3 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/te/files_external.po index 7806e85536..81da799ca8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 6f2ef29f42..11cdd5ea0a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 2a549aa34e..387c72f66e 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-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-16 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 993d0bf919..589f3f07ff 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 96099ac746..8536964c89 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 66b0d3c618..25243d7fcb 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-16 01:56-0400\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ce59067f68..ea879ad519 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-16 01:56-0400\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 4eebc1e9b5..32d1b2ba66 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-16 01:56-0400\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 27d34a14e3..49d1e4dd0b 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-16 01:56-0400\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index ea2da6b67c..e5ec53d581 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-16 01:56-0400\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index dee1909042..b972541ec2 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-16 01:56-0400\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 1b4cd4d229..2c266024fa 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-16 01:56-0400\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index d9b9bfe956..df82b4a2cb 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-16 01:56-0400\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index f9510d098d..9f1f5b9796 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-16 01:56-0400\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index ea6f802a81..e1e8c3fcf9 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-16 01:56-0400\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index f610240843..5505462559 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-16 01:56-0400\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 7d68abb6d1..325e217edf 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/th_TH/files.po index 572e1fcba8..2941fe54d3 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/th_TH/files_external.po index 325b002871..545d185507 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 28f69361f5..eaed61ec2b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 32435564e0..613773959b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 eb05ba7e56..bb2d98e83b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/th_TH/settings.po index ed44ee0356..f2c7ca1be9 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 d772ead7af..98e2eacf42 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 c481cf1864..e0d0b1e1e9 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/tr/files.po index 00bacc7fc7..14ec0f4237 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/tr/files_external.po index 9edce31112..8827927e20 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 6362004a15..e6bf14f636 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 db42b38a53..a65d3f862f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 8529d37a6f..40fb4cfd73 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 8990725783..b18e7201d0 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 7b2042435e..35b1f15cd4 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: ismail yenigül \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 15d79f96a3..d2ea8cf7ce 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index dfcb313d0f..97edf15311 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 938e0ca6c5..f8a2383b85 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index a6f9c120d9..f35b23a055 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 7b0da33db6..8e9fce5c93 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 69aa1eab14..54b8583804 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 5b369d9f5a..7e82b2ace9 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 75a4fe7e05..53636a3d8c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 15e113681a..d06b697184 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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.po b/l10n/uk/files.po index fc98d121c2..8511430f69 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/uk/files_external.po index d7d553a3c1..fdef102189 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 2ee542bfe4..b551e86e5b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 09b70703a1..28bdd23170 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 fb2cffbdf7..14d05ff543 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 0b870f8675..289832daf8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 53fdd77e18..1eac58267c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 9aff183ba3..7baa7513be 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/ur_PK/files.po index 90ea2c03f0..a7ab9c0ff8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index b7409fcefb..36d9fff81f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 e6bf367183..a66b2a4cc9 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-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-16 06:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ur_PK/settings.po index 2e349b1f21..445c51fd77 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 e9eacd8d2b..90bea6ba8e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 4fd6d1bea1..1776dfed37 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/vi/files.po index c775501bf6..a9c7a22774 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/vi/files_external.po index d13d63a057..7503ea3165 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: xtdv \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 8e7d988a1a..a7c993e0b1 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 3f9b75886a..d505f0a9b1 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 e331e53b3a..33796a890d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 7d49e7dfe4..e5e2f97d21 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 dfe62f42f8..a300437e41 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 f129b63a54..9e024679ac 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN.GB2312/files.po index 173427847a..1355ae3f42 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: hlx98007 \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_external.po b/l10n/zh_CN.GB2312/files_external.po index e28a5fe44b..6691cb985f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: hyy0591 \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 fcd818131d..807f512ae8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 b8688d45d6..bb1e096e9d 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 a06d359861..687cb04894 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_CN.GB2312/settings.po index 9f8caf8d60..e14f28c32a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: hlx98007 \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 6ff53e0614..3086ada92a 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 2b8da76b44..4366f45b44 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN/files.po index 844a455bf6..10c790b0e3 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/zh_CN/files_external.po index faea223484..df1dde2e02 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 a3a26b2b02..a06182282e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 6efb256f88..9bb57ed443 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 1260ed01de..10017f5d0e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_CN/settings.po index ab51bda050..cd2128875c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 90fbd8a973..64d8fba259 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: modokwang \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 9318c11856..97492a31db 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_HK/files.po index 4ac3e14d8b..97cecef3f9 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/zh_HK/files_external.po index cf3a728058..eda1a7619c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 9d0e97023a..08c7725e5c 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 f257e3c5e8..9ab8ba20e8 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 36dc7a1578..958918ae5e 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_HK/settings.po index b057f2d974..cbd9b33b42 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 fe5f2b97a5..971f6d8edf 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: I Robot \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 d8f8f7992c..39547ae9cb 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:24+0000\n" "Last-Translator: pellaeon \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.po b/l10n/zh_TW/files.po index 2af89ddda6..0d5deaac09 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: pellaeon \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_external.po b/l10n/zh_TW/files_external.po index 05c1e684e0..9662a43770 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: pellaeon \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 501d046998..605d8dd0be 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 b748a457ef..2996152eb9 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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 f265091997..38bc29a66b 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_TW/settings.po index 48fd13a42e..000615b039 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:14+0000\n" +"POT-Creation-Date: 2013-07-17 02:20-0400\n" +"PO-Revision-Date: 2013-07-17 05:25+0000\n" "Last-Translator: pellaeon \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_ldap.po b/l10n/zh_TW/user_ldap.po index 35ef2dd636..d73e26a63f 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-16 01:56-0400\n" -"PO-Revision-Date: 2013-07-16 05:15+0000\n" +"POT-Creation-Date: 2013-07-17 02:19-0400\n" +"PO-Revision-Date: 2013-07-17 05:26+0000\n" "Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" From 24283425a6681a074ee72a61ad31b2ee45f1be7c Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 17 Jul 2013 13:18:46 +0200 Subject: [PATCH 082/108] fixing UNIX_TIMESTAMP() for mssql --- lib/db.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/db.php b/lib/db.php index 6fec60e53c..6662785646 100644 --- a/lib/db.php +++ b/lib/db.php @@ -775,10 +775,10 @@ class OC_DB { $query = str_ireplace( 'UNIX_TIMESTAMP()', '((CAST(SYS_EXTRACT_UTC(systimestamp) AS DATE))-TO_DATE(\'1970101000000\',\'YYYYMMDDHH24MiSS\'))*24*3600', $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); } From bf7514f76abef4bcbb533e4c6c33e00a4e1fdfb5 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Fri, 12 Jul 2013 13:42:01 +0200 Subject: [PATCH 083/108] WebDAV Auth Connector: Check if already logged in --- lib/connector/sabre/auth.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/lib/connector/sabre/auth.php b/lib/connector/sabre/auth.php index 6990d928cf..bf3a49593c 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); + } } From 93b9bad6bb44dfa38386b15fbfd56d52510c0f51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Wed, 17 Jul 2013 15:25:41 +0200 Subject: [PATCH 084/108] Update build.xml --- build/build.xml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build/build.xml b/build/build.xml index 3df77ad024..0f9d3605da 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 - - @@ -172,8 +170,6 @@ jQuery,$$,OC,$,oc_webroot,oc_appswebroots,oc_current_user,t,Files,FileList,FileA - - From 279a71acb37ac373703ed05050771ef971b5d9a1 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 18 Jul 2013 02:02:51 -0400 Subject: [PATCH 085/108] [tx-robot] updated from transifex --- apps/files/l10n/de_DE.php | 2 +- apps/files/l10n/hu_HU.php | 1 + apps/files/l10n/sv.php | 1 + apps/files_encryption/l10n/de_DE.php | 2 +- apps/files_sharing/l10n/fi_FI.php | 1 + core/l10n/de_DE.php | 4 ++-- core/l10n/sv.php | 2 +- l10n/af_ZA/core.po | 4 ++-- l10n/af_ZA/lib.po | 4 ++-- l10n/ar/core.po | 4 ++-- l10n/ar/files.po | 4 ++-- l10n/ar/files_external.po | 4 ++-- l10n/ar/files_sharing.po | 4 ++-- l10n/ar/files_trashbin.po | 4 ++-- l10n/ar/lib.po | 4 ++-- l10n/ar/settings.po | 4 ++-- l10n/ar/user_ldap.po | 4 ++-- l10n/bg_BG/core.po | 4 ++-- l10n/bg_BG/files.po | 4 ++-- l10n/bg_BG/files_external.po | 4 ++-- l10n/bg_BG/files_sharing.po | 4 ++-- l10n/bg_BG/files_trashbin.po | 4 ++-- l10n/bg_BG/lib.po | 4 ++-- l10n/bg_BG/settings.po | 4 ++-- l10n/bg_BG/user_ldap.po | 4 ++-- l10n/bn_BD/core.po | 4 ++-- l10n/bn_BD/files.po | 4 ++-- l10n/bn_BD/files_external.po | 4 ++-- l10n/bn_BD/files_sharing.po | 4 ++-- l10n/bn_BD/files_trashbin.po | 4 ++-- l10n/bn_BD/lib.po | 4 ++-- l10n/bn_BD/settings.po | 4 ++-- l10n/bn_BD/user_ldap.po | 4 ++-- l10n/bs/core.po | 4 ++-- l10n/bs/files.po | 4 ++-- l10n/bs/files_trashbin.po | 4 ++-- l10n/ca/core.po | 4 ++-- l10n/ca/files.po | 4 ++-- l10n/ca/files_external.po | 4 ++-- l10n/ca/files_sharing.po | 4 ++-- l10n/ca/files_trashbin.po | 4 ++-- l10n/ca/lib.po | 4 ++-- l10n/ca/settings.po | 4 ++-- l10n/ca/user_ldap.po | 4 ++-- l10n/cs_CZ/core.po | 4 ++-- l10n/cs_CZ/files.po | 4 ++-- l10n/cs_CZ/files_external.po | 4 ++-- l10n/cs_CZ/files_sharing.po | 4 ++-- l10n/cs_CZ/files_trashbin.po | 4 ++-- l10n/cs_CZ/lib.po | 4 ++-- l10n/cs_CZ/settings.po | 4 ++-- l10n/cs_CZ/user_ldap.po | 4 ++-- l10n/cy_GB/core.po | 4 ++-- l10n/cy_GB/files.po | 4 ++-- l10n/cy_GB/files_external.po | 4 ++-- l10n/cy_GB/files_sharing.po | 4 ++-- l10n/cy_GB/files_trashbin.po | 4 ++-- l10n/cy_GB/lib.po | 4 ++-- l10n/cy_GB/settings.po | 4 ++-- l10n/cy_GB/user_ldap.po | 4 ++-- l10n/da/core.po | 4 ++-- l10n/da/files.po | 4 ++-- l10n/da/files_external.po | 4 ++-- l10n/da/files_sharing.po | 4 ++-- l10n/da/files_trashbin.po | 4 ++-- l10n/da/lib.po | 4 ++-- l10n/da/settings.po | 4 ++-- l10n/da/user_ldap.po | 4 ++-- l10n/de/core.po | 4 ++-- l10n/de/files.po | 4 ++-- l10n/de/files_external.po | 4 ++-- l10n/de/files_sharing.po | 4 ++-- l10n/de/files_trashbin.po | 4 ++-- l10n/de/lib.po | 4 ++-- l10n/de/settings.po | 4 ++-- l10n/de/user_ldap.po | 4 ++-- l10n/de_DE/core.po | 10 +++++----- l10n/de_DE/files.po | 9 +++++---- l10n/de_DE/files_encryption.po | 8 ++++---- l10n/de_DE/files_external.po | 4 ++-- l10n/de_DE/files_sharing.po | 4 ++-- l10n/de_DE/files_trashbin.po | 4 ++-- l10n/de_DE/lib.po | 6 +++--- l10n/de_DE/settings.po | 10 +++++----- l10n/de_DE/user_ldap.po | 4 ++-- l10n/el/core.po | 4 ++-- l10n/el/files.po | 4 ++-- l10n/el/files_external.po | 4 ++-- l10n/el/files_sharing.po | 4 ++-- l10n/el/files_trashbin.po | 4 ++-- l10n/el/lib.po | 4 ++-- l10n/el/settings.po | 4 ++-- l10n/el/user_ldap.po | 4 ++-- l10n/en@pirate/files.po | 4 ++-- l10n/en@pirate/files_sharing.po | 4 ++-- l10n/eo/core.po | 4 ++-- l10n/eo/files.po | 4 ++-- l10n/eo/files_external.po | 4 ++-- l10n/eo/files_sharing.po | 4 ++-- l10n/eo/files_trashbin.po | 4 ++-- l10n/eo/lib.po | 4 ++-- l10n/eo/settings.po | 4 ++-- l10n/eo/user_ldap.po | 4 ++-- l10n/es/core.po | 4 ++-- l10n/es/files.po | 4 ++-- l10n/es/files_external.po | 4 ++-- l10n/es/files_sharing.po | 4 ++-- l10n/es/files_trashbin.po | 4 ++-- l10n/es/lib.po | 4 ++-- l10n/es/settings.po | 4 ++-- l10n/es/user_ldap.po | 4 ++-- l10n/es_AR/core.po | 4 ++-- l10n/es_AR/files.po | 4 ++-- l10n/es_AR/files_external.po | 4 ++-- l10n/es_AR/files_sharing.po | 4 ++-- l10n/es_AR/files_trashbin.po | 4 ++-- l10n/es_AR/lib.po | 4 ++-- l10n/es_AR/settings.po | 4 ++-- l10n/es_AR/user_ldap.po | 4 ++-- l10n/et_EE/core.po | 4 ++-- l10n/et_EE/files.po | 4 ++-- l10n/et_EE/files_external.po | 4 ++-- l10n/et_EE/files_sharing.po | 4 ++-- l10n/et_EE/files_trashbin.po | 4 ++-- l10n/et_EE/lib.po | 4 ++-- l10n/et_EE/settings.po | 4 ++-- l10n/et_EE/user_ldap.po | 4 ++-- l10n/eu/core.po | 4 ++-- l10n/eu/files.po | 4 ++-- l10n/eu/files_external.po | 4 ++-- l10n/eu/files_sharing.po | 4 ++-- l10n/eu/files_trashbin.po | 4 ++-- l10n/eu/lib.po | 4 ++-- l10n/eu/settings.po | 4 ++-- l10n/eu/user_ldap.po | 4 ++-- l10n/fa/core.po | 4 ++-- l10n/fa/files.po | 4 ++-- l10n/fa/files_external.po | 4 ++-- l10n/fa/files_sharing.po | 4 ++-- l10n/fa/files_trashbin.po | 4 ++-- l10n/fa/lib.po | 4 ++-- l10n/fa/settings.po | 4 ++-- l10n/fa/user_ldap.po | 4 ++-- l10n/fi_FI/core.po | 4 ++-- l10n/fi_FI/files.po | 4 ++-- l10n/fi_FI/files_external.po | 4 ++-- l10n/fi_FI/files_sharing.po | 9 +++++---- l10n/fi_FI/files_trashbin.po | 4 ++-- l10n/fi_FI/lib.po | 4 ++-- l10n/fi_FI/settings.po | 6 +++--- l10n/fi_FI/user_ldap.po | 4 ++-- l10n/fr/core.po | 4 ++-- l10n/fr/files.po | 4 ++-- l10n/fr/files_external.po | 4 ++-- l10n/fr/files_sharing.po | 4 ++-- l10n/fr/files_trashbin.po | 4 ++-- l10n/fr/lib.po | 4 ++-- l10n/fr/settings.po | 4 ++-- l10n/fr/user_ldap.po | 4 ++-- l10n/gl/core.po | 4 ++-- l10n/gl/files.po | 4 ++-- l10n/gl/files_external.po | 4 ++-- l10n/gl/files_sharing.po | 4 ++-- l10n/gl/files_trashbin.po | 4 ++-- l10n/gl/lib.po | 4 ++-- l10n/gl/settings.po | 4 ++-- l10n/gl/user_ldap.po | 4 ++-- l10n/he/core.po | 4 ++-- l10n/he/files.po | 4 ++-- l10n/he/files_external.po | 4 ++-- l10n/he/files_sharing.po | 4 ++-- l10n/he/files_trashbin.po | 4 ++-- l10n/he/lib.po | 4 ++-- l10n/he/settings.po | 4 ++-- l10n/he/user_ldap.po | 4 ++-- l10n/hi/core.po | 4 ++-- l10n/hi/files.po | 4 ++-- l10n/hi/files_trashbin.po | 4 ++-- l10n/hi/lib.po | 4 ++-- l10n/hi/settings.po | 4 ++-- l10n/hi/user_ldap.po | 4 ++-- l10n/hr/core.po | 4 ++-- l10n/hr/files.po | 4 ++-- l10n/hr/files_external.po | 4 ++-- l10n/hr/files_sharing.po | 4 ++-- l10n/hr/files_trashbin.po | 4 ++-- l10n/hr/lib.po | 4 ++-- l10n/hr/settings.po | 4 ++-- l10n/hr/user_ldap.po | 4 ++-- l10n/hu_HU/core.po | 4 ++-- l10n/hu_HU/files.po | 8 ++++---- l10n/hu_HU/files_external.po | 4 ++-- l10n/hu_HU/files_sharing.po | 4 ++-- l10n/hu_HU/files_trashbin.po | 4 ++-- l10n/hu_HU/lib.po | 4 ++-- l10n/hu_HU/settings.po | 4 ++-- l10n/hu_HU/user_ldap.po | 4 ++-- l10n/hy/files.po | 4 ++-- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 ++-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 ++-- l10n/ia/core.po | 4 ++-- l10n/ia/files.po | 4 ++-- l10n/ia/files_external.po | 4 ++-- l10n/ia/files_sharing.po | 4 ++-- l10n/ia/files_trashbin.po | 4 ++-- l10n/ia/lib.po | 4 ++-- l10n/ia/settings.po | 4 ++-- l10n/ia/user_ldap.po | 4 ++-- l10n/id/core.po | 4 ++-- l10n/id/files.po | 4 ++-- l10n/id/files_external.po | 4 ++-- l10n/id/files_sharing.po | 4 ++-- l10n/id/files_trashbin.po | 4 ++-- l10n/id/lib.po | 4 ++-- l10n/id/settings.po | 4 ++-- l10n/id/user_ldap.po | 4 ++-- l10n/is/core.po | 4 ++-- l10n/is/files.po | 4 ++-- l10n/is/files_external.po | 4 ++-- l10n/is/files_sharing.po | 4 ++-- l10n/is/files_trashbin.po | 4 ++-- l10n/is/lib.po | 4 ++-- l10n/is/settings.po | 4 ++-- l10n/is/user_ldap.po | 4 ++-- l10n/it/core.po | 4 ++-- l10n/it/files.po | 4 ++-- l10n/it/files_external.po | 4 ++-- l10n/it/files_sharing.po | 4 ++-- l10n/it/files_trashbin.po | 4 ++-- l10n/it/lib.po | 4 ++-- l10n/it/settings.po | 4 ++-- l10n/it/user_ldap.po | 4 ++-- l10n/ja_JP/core.po | 4 ++-- l10n/ja_JP/files.po | 4 ++-- l10n/ja_JP/files_external.po | 4 ++-- l10n/ja_JP/files_sharing.po | 4 ++-- l10n/ja_JP/files_trashbin.po | 4 ++-- l10n/ja_JP/lib.po | 4 ++-- l10n/ja_JP/settings.po | 4 ++-- l10n/ja_JP/user_ldap.po | 4 ++-- l10n/ka/files.po | 4 ++-- l10n/ka/files_sharing.po | 4 ++-- l10n/ka_GE/core.po | 4 ++-- l10n/ka_GE/files.po | 4 ++-- l10n/ka_GE/files_external.po | 4 ++-- l10n/ka_GE/files_sharing.po | 4 ++-- l10n/ka_GE/files_trashbin.po | 4 ++-- l10n/ka_GE/lib.po | 4 ++-- l10n/ka_GE/settings.po | 4 ++-- l10n/ka_GE/user_ldap.po | 4 ++-- l10n/ko/core.po | 4 ++-- l10n/ko/files.po | 4 ++-- l10n/ko/files_external.po | 4 ++-- l10n/ko/files_sharing.po | 4 ++-- l10n/ko/files_trashbin.po | 4 ++-- l10n/ko/lib.po | 4 ++-- l10n/ko/settings.po | 4 ++-- l10n/ko/user_ldap.po | 4 ++-- l10n/ku_IQ/core.po | 4 ++-- l10n/ku_IQ/files.po | 4 ++-- l10n/ku_IQ/files_sharing.po | 4 ++-- l10n/ku_IQ/files_trashbin.po | 4 ++-- l10n/ku_IQ/lib.po | 4 ++-- l10n/ku_IQ/settings.po | 4 ++-- l10n/ku_IQ/user_ldap.po | 4 ++-- l10n/lb/core.po | 4 ++-- l10n/lb/files.po | 4 ++-- l10n/lb/files_external.po | 4 ++-- l10n/lb/files_sharing.po | 4 ++-- l10n/lb/files_trashbin.po | 4 ++-- l10n/lb/lib.po | 4 ++-- l10n/lb/settings.po | 4 ++-- l10n/lb/user_ldap.po | 4 ++-- l10n/lt_LT/core.po | 4 ++-- l10n/lt_LT/files.po | 4 ++-- l10n/lt_LT/files_external.po | 4 ++-- l10n/lt_LT/files_sharing.po | 4 ++-- l10n/lt_LT/files_trashbin.po | 4 ++-- l10n/lt_LT/lib.po | 4 ++-- l10n/lt_LT/settings.po | 4 ++-- l10n/lt_LT/user_ldap.po | 4 ++-- l10n/lv/core.po | 4 ++-- l10n/lv/files.po | 4 ++-- l10n/lv/files_external.po | 4 ++-- l10n/lv/files_sharing.po | 4 ++-- l10n/lv/files_trashbin.po | 4 ++-- l10n/lv/lib.po | 4 ++-- l10n/lv/settings.po | 4 ++-- l10n/lv/user_ldap.po | 4 ++-- l10n/mk/core.po | 4 ++-- l10n/mk/files.po | 4 ++-- l10n/mk/files_external.po | 4 ++-- l10n/mk/files_sharing.po | 4 ++-- l10n/mk/files_trashbin.po | 4 ++-- l10n/mk/lib.po | 4 ++-- l10n/mk/settings.po | 4 ++-- l10n/mk/user_ldap.po | 4 ++-- l10n/ms_MY/core.po | 4 ++-- l10n/ms_MY/files.po | 4 ++-- l10n/ms_MY/files_external.po | 4 ++-- l10n/ms_MY/files_sharing.po | 4 ++-- l10n/ms_MY/files_trashbin.po | 4 ++-- l10n/ms_MY/lib.po | 4 ++-- l10n/ms_MY/settings.po | 4 ++-- l10n/ms_MY/user_ldap.po | 4 ++-- l10n/my_MM/core.po | 4 ++-- l10n/my_MM/files.po | 4 ++-- l10n/my_MM/files_sharing.po | 4 ++-- l10n/my_MM/lib.po | 4 ++-- l10n/nb_NO/core.po | 4 ++-- l10n/nb_NO/files.po | 4 ++-- l10n/nb_NO/files_external.po | 4 ++-- l10n/nb_NO/files_sharing.po | 4 ++-- l10n/nb_NO/files_trashbin.po | 4 ++-- l10n/nb_NO/lib.po | 4 ++-- l10n/nb_NO/settings.po | 4 ++-- l10n/nb_NO/user_ldap.po | 4 ++-- l10n/nl/core.po | 4 ++-- l10n/nl/files.po | 4 ++-- l10n/nl/files_external.po | 4 ++-- l10n/nl/files_sharing.po | 4 ++-- l10n/nl/files_trashbin.po | 4 ++-- l10n/nl/lib.po | 4 ++-- l10n/nl/settings.po | 4 ++-- l10n/nl/user_ldap.po | 4 ++-- l10n/nn_NO/core.po | 4 ++-- l10n/nn_NO/files.po | 4 ++-- l10n/nn_NO/files_external.po | 4 ++-- l10n/nn_NO/files_sharing.po | 4 ++-- l10n/nn_NO/files_trashbin.po | 4 ++-- l10n/nn_NO/lib.po | 4 ++-- l10n/nn_NO/settings.po | 4 ++-- l10n/nn_NO/user_ldap.po | 4 ++-- l10n/oc/core.po | 4 ++-- l10n/oc/files.po | 4 ++-- l10n/oc/files_external.po | 4 ++-- l10n/oc/files_sharing.po | 4 ++-- l10n/oc/files_trashbin.po | 4 ++-- l10n/oc/lib.po | 4 ++-- l10n/oc/settings.po | 4 ++-- l10n/oc/user_ldap.po | 4 ++-- l10n/pl/core.po | 4 ++-- l10n/pl/files.po | 4 ++-- l10n/pl/files_external.po | 4 ++-- l10n/pl/files_sharing.po | 4 ++-- l10n/pl/files_trashbin.po | 4 ++-- l10n/pl/lib.po | 4 ++-- l10n/pl/settings.po | 4 ++-- l10n/pl/user_ldap.po | 4 ++-- l10n/pt_BR/core.po | 4 ++-- l10n/pt_BR/files.po | 4 ++-- l10n/pt_BR/files_external.po | 4 ++-- l10n/pt_BR/files_sharing.po | 4 ++-- l10n/pt_BR/files_trashbin.po | 4 ++-- l10n/pt_BR/lib.po | 4 ++-- l10n/pt_BR/settings.po | 4 ++-- l10n/pt_BR/user_ldap.po | 4 ++-- l10n/pt_PT/core.po | 4 ++-- l10n/pt_PT/files.po | 4 ++-- l10n/pt_PT/files_external.po | 4 ++-- l10n/pt_PT/files_sharing.po | 4 ++-- l10n/pt_PT/files_trashbin.po | 4 ++-- l10n/pt_PT/lib.po | 4 ++-- l10n/pt_PT/settings.po | 4 ++-- l10n/pt_PT/user_ldap.po | 4 ++-- l10n/ro/core.po | 4 ++-- l10n/ro/files.po | 4 ++-- l10n/ro/files_external.po | 4 ++-- l10n/ro/files_sharing.po | 4 ++-- l10n/ro/files_trashbin.po | 4 ++-- l10n/ro/lib.po | 4 ++-- l10n/ro/settings.po | 4 ++-- l10n/ro/user_ldap.po | 4 ++-- l10n/ru/core.po | 4 ++-- l10n/ru/files.po | 4 ++-- l10n/ru/files_external.po | 4 ++-- l10n/ru/files_sharing.po | 4 ++-- l10n/ru/files_trashbin.po | 4 ++-- l10n/ru/lib.po | 4 ++-- l10n/ru/settings.po | 4 ++-- l10n/ru/user_ldap.po | 4 ++-- l10n/si_LK/core.po | 4 ++-- l10n/si_LK/files.po | 4 ++-- l10n/si_LK/files_external.po | 4 ++-- l10n/si_LK/files_sharing.po | 4 ++-- l10n/si_LK/files_trashbin.po | 4 ++-- l10n/si_LK/lib.po | 4 ++-- l10n/si_LK/settings.po | 4 ++-- l10n/si_LK/user_ldap.po | 4 ++-- l10n/sk_SK/core.po | 4 ++-- l10n/sk_SK/files.po | 4 ++-- l10n/sk_SK/files_external.po | 4 ++-- l10n/sk_SK/files_sharing.po | 4 ++-- l10n/sk_SK/files_trashbin.po | 4 ++-- l10n/sk_SK/lib.po | 4 ++-- l10n/sk_SK/settings.po | 4 ++-- l10n/sk_SK/user_ldap.po | 4 ++-- l10n/sl/core.po | 4 ++-- l10n/sl/files.po | 4 ++-- l10n/sl/files_external.po | 4 ++-- l10n/sl/files_sharing.po | 4 ++-- l10n/sl/files_trashbin.po | 4 ++-- l10n/sl/lib.po | 4 ++-- l10n/sl/settings.po | 4 ++-- l10n/sl/user_ldap.po | 4 ++-- l10n/sq/core.po | 4 ++-- l10n/sq/files.po | 4 ++-- l10n/sq/files_external.po | 4 ++-- l10n/sq/files_sharing.po | 4 ++-- l10n/sq/files_trashbin.po | 4 ++-- l10n/sq/lib.po | 4 ++-- l10n/sq/settings.po | 4 ++-- l10n/sq/user_ldap.po | 4 ++-- l10n/sr/core.po | 4 ++-- l10n/sr/files.po | 4 ++-- l10n/sr/files_external.po | 4 ++-- l10n/sr/files_sharing.po | 4 ++-- l10n/sr/files_trashbin.po | 4 ++-- l10n/sr/lib.po | 4 ++-- l10n/sr/settings.po | 4 ++-- l10n/sr/user_ldap.po | 4 ++-- l10n/sr@latin/core.po | 4 ++-- l10n/sr@latin/files.po | 4 ++-- l10n/sr@latin/files_external.po | 4 ++-- l10n/sr@latin/files_sharing.po | 4 ++-- l10n/sr@latin/files_trashbin.po | 4 ++-- l10n/sr@latin/lib.po | 4 ++-- l10n/sr@latin/settings.po | 4 ++-- l10n/sv/core.po | 8 ++++---- l10n/sv/files.po | 9 +++++---- l10n/sv/files_external.po | 4 ++-- l10n/sv/files_sharing.po | 4 ++-- l10n/sv/files_trashbin.po | 4 ++-- l10n/sv/lib.po | 4 ++-- l10n/sv/settings.po | 9 +++++---- l10n/sv/user_ldap.po | 4 ++-- l10n/ta_LK/core.po | 4 ++-- l10n/ta_LK/files.po | 4 ++-- l10n/ta_LK/files_external.po | 4 ++-- l10n/ta_LK/files_sharing.po | 4 ++-- l10n/ta_LK/files_trashbin.po | 4 ++-- l10n/ta_LK/lib.po | 4 ++-- l10n/ta_LK/settings.po | 4 ++-- l10n/ta_LK/user_ldap.po | 4 ++-- l10n/te/core.po | 4 ++-- l10n/te/files.po | 4 ++-- l10n/te/files_external.po | 4 ++-- l10n/te/files_trashbin.po | 4 ++-- l10n/te/lib.po | 4 ++-- l10n/te/settings.po | 4 ++-- l10n/te/user_ldap.po | 4 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 ++-- l10n/th_TH/files.po | 4 ++-- l10n/th_TH/files_external.po | 4 ++-- l10n/th_TH/files_sharing.po | 4 ++-- l10n/th_TH/files_trashbin.po | 4 ++-- l10n/th_TH/lib.po | 4 ++-- l10n/th_TH/settings.po | 4 ++-- l10n/th_TH/user_ldap.po | 4 ++-- l10n/tr/core.po | 4 ++-- l10n/tr/files.po | 4 ++-- l10n/tr/files_external.po | 4 ++-- l10n/tr/files_sharing.po | 4 ++-- l10n/tr/files_trashbin.po | 4 ++-- l10n/tr/lib.po | 4 ++-- l10n/tr/settings.po | 4 ++-- l10n/tr/user_ldap.po | 4 ++-- l10n/ug/core.po | 4 ++-- l10n/ug/files.po | 4 ++-- l10n/ug/files_external.po | 4 ++-- l10n/ug/files_sharing.po | 4 ++-- l10n/ug/files_trashbin.po | 4 ++-- l10n/ug/lib.po | 4 ++-- l10n/ug/settings.po | 4 ++-- l10n/ug/user_ldap.po | 4 ++-- l10n/uk/core.po | 4 ++-- l10n/uk/files.po | 4 ++-- l10n/uk/files_external.po | 4 ++-- l10n/uk/files_sharing.po | 4 ++-- l10n/uk/files_trashbin.po | 4 ++-- l10n/uk/lib.po | 4 ++-- l10n/uk/settings.po | 4 ++-- l10n/uk/user_ldap.po | 4 ++-- l10n/ur_PK/core.po | 4 ++-- l10n/ur_PK/files.po | 4 ++-- l10n/ur_PK/files_trashbin.po | 4 ++-- l10n/ur_PK/lib.po | 4 ++-- l10n/ur_PK/settings.po | 4 ++-- l10n/ur_PK/user_ldap.po | 4 ++-- l10n/vi/core.po | 4 ++-- l10n/vi/files.po | 4 ++-- l10n/vi/files_external.po | 4 ++-- l10n/vi/files_sharing.po | 4 ++-- l10n/vi/files_trashbin.po | 4 ++-- l10n/vi/lib.po | 4 ++-- l10n/vi/settings.po | 4 ++-- l10n/vi/user_ldap.po | 4 ++-- l10n/zh_CN.GB2312/core.po | 4 ++-- l10n/zh_CN.GB2312/files.po | 4 ++-- l10n/zh_CN.GB2312/files_external.po | 4 ++-- l10n/zh_CN.GB2312/files_sharing.po | 4 ++-- l10n/zh_CN.GB2312/files_trashbin.po | 4 ++-- l10n/zh_CN.GB2312/lib.po | 4 ++-- l10n/zh_CN.GB2312/settings.po | 4 ++-- l10n/zh_CN.GB2312/user_ldap.po | 4 ++-- l10n/zh_CN/core.po | 4 ++-- l10n/zh_CN/files.po | 4 ++-- l10n/zh_CN/files_external.po | 4 ++-- l10n/zh_CN/files_sharing.po | 4 ++-- l10n/zh_CN/files_trashbin.po | 4 ++-- l10n/zh_CN/lib.po | 4 ++-- l10n/zh_CN/settings.po | 4 ++-- l10n/zh_CN/user_ldap.po | 4 ++-- l10n/zh_HK/core.po | 4 ++-- l10n/zh_HK/files.po | 4 ++-- l10n/zh_HK/files_external.po | 4 ++-- l10n/zh_HK/files_sharing.po | 4 ++-- l10n/zh_HK/files_trashbin.po | 4 ++-- l10n/zh_HK/lib.po | 4 ++-- l10n/zh_HK/settings.po | 4 ++-- l10n/zh_HK/user_ldap.po | 4 ++-- l10n/zh_TW/core.po | 4 ++-- l10n/zh_TW/files.po | 4 ++-- l10n/zh_TW/files_external.po | 4 ++-- l10n/zh_TW/files_sharing.po | 4 ++-- l10n/zh_TW/files_trashbin.po | 4 ++-- l10n/zh_TW/lib.po | 4 ++-- l10n/zh_TW/settings.po | 4 ++-- l10n/zh_TW/user_ldap.po | 4 ++-- settings/l10n/de_DE.php | 4 ++-- settings/l10n/fi_FI.php | 1 + settings/l10n/sv.php | 1 + 545 files changed, 1095 insertions(+), 1086 deletions(-) diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 3a323321ba..d21fd92324 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -1,5 +1,5 @@ "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", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index b083351695..21a519ea42 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -68,6 +68,7 @@ "You don’t have write permissions here." => "Itt nincs írásjoga.", "Nothing in here. Upload something!" => "Itt nincs semmi. Töltsön fel valamit!", "Download" => "Letöltés", +"Size (MB)" => "Méret (MB)", "Unshare" => "A megosztás visszavonása", "Upload too large" => "A feltöltés túl nagy", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet.", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 70f3121a20..132a014e61 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -68,6 +68,7 @@ "You don’t have write permissions here." => "Du saknar skrivbehörighet här.", "Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!", "Download" => "Ladda ner", +"Size (MB)" => "Storlek (MB)", "Unshare" => "Sluta dela", "Upload too large" => "För stor uppladdning", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern.", diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 2d7512354d..79bde7e262 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_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index 03931bf298..370cbd9874 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -1,4 +1,5 @@ "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/core/l10n/de_DE.php b/core/l10n/de_DE.php index 9d5a7298e1..4188522b0c 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!
Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
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/sv.php b/core/l10n/sv.php index d6d4b0ff32..1c84c62467 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 ownCloud community." => "Uppdateringen misslyckades. Rapportera detta problem till ownCloud-gemenskapen.", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Uppdateringen misslyckades. Rapportera detta problem till ownCloud Community.", "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/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 94eaac1b07..eb7b5e0e1c 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-16 06:02+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 06:32+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 487f2119a1..cc67bceb2f 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-16 06:02+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 06:32+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 74a8b2381f..6a3f4fe16f 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ar/files.po index aa119ffa1a..6a87cf17df 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ar/files_external.po index ca7611d912..011040b2cc 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 89ab7d24b3..1e305943ec 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 ae56d8031b..30acd52ba8 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 acee8d983e..983b08ffaa 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 24955a4b6b..07f7ac7847 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 ec0467e2fd..2bcce9e20a 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 6bb12555c0..c11a79a2c7 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/bg_BG/files.po index 47159edeb2..daf19a64ec 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bg_BG/files_external.po index 6a933cd93d..04f5a523e0 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 ff9d127718..e3709fd0c4 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 02528cf85e..6ebd911d2d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Димитър Кръстев \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 d485b79d0a..53e2e229e8 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/bg_BG/settings.po index 7868f3f5ac..cc3e23e241 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 5ee7a6748a..c42c4ecd76 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 68525a6c68..ffc886c897 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/bn_BD/files.po index d9a2366dc6..c4cc711dc8 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bn_BD/files_external.po index 6d93c3f9ec..f0cc0cb5ad 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 39c19b6f79..18a49ee640 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 ae0a1cc70d..57c8f8c150 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 05403194a7..9da5e29288 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/bn_BD/settings.po index 600024a9fe..c2414ce778 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 513b49d0ec..c7038ee951 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 3761e7b8b5..2dc3bf4285 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 74e6991e9a..f31436d479 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index bdc9b45863..1703ef2a99 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 b06b433eda..6077d73ff7 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ca/files.po index 3d0dd07272..486a1e0922 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 643e389b7f..903f22f6d6 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index d462935960..da659bea6b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 7a93119b75..54d220cfac 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 cba409bc22..616ce4d4de 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 0fabd1c9cb..8957bebad3 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 50b126b34f..b154555797 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 9924d1bacb..6089505b77 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/cs_CZ/files.po index b968f0751b..b58b60a7a6 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/cs_CZ/files_external.po index 6464203262..9dcdf33539 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 114cacf0ca..ac0cda9e29 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 3695d5a821..0db57763e1 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 dd17e5f53a..679e2f98cf 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/cs_CZ/settings.po index 5e30bc975f..c5218c7632 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Honza K. \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 6f514f8d75..758ab2ce84 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Tomáš Chvátal \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 60ca251f68..d25a3dc653 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/cy_GB/files.po index 9c7b9cba19..10ddd11ed4 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/cy_GB/files_external.po index 25b5868496..f4b7d91df0 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 1c119c71b8..fb99f82296 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 51f8d0143d..1c01c7586b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: ubuntucymraeg \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 c3969187ee..f9bea70a48 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/cy_GB/settings.po index 8ecdae0a36..bcbd833de9 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 7c34c68353..f189c759fc 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 d103c1728a..a15063de00 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/da/files.po index ae82a9e72c..5715348abd 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/da/files_external.po index e421f6f852..a8e26e7806 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 5e3c89e938..d78aa560dd 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 f8792603ec..c142518b52 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 96e62e3baf..fee71596e6 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 0376e6ae83..a5a878610a 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Morten Juhl-Johansen Zölde-Fejér \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 24bc2ecb55..8d20b0d624 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 dd40e9c33c..48de31d051 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index e1b04c82bd..f9aed195dc 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: kabum \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 72607ee315..db034af130 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index b30d5cc1b6..8d881be209 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 59f81dede0..091b6a36bd 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index a39864317d..19e7d35f39 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index e4f9746264..826b6bd5ad 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index ae2285f1d0..d4dfbb4d47 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 11e2da20d4..b065af4241 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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 e8ae5b2d10..9f756d6186 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -7,15 +7,16 @@ # SteinQuadrat, 2013 # I Robot , 2013 # Marcel Kühlhorn , 2013 +# traductor , 2013 # Mirodin , 2013 # kabum , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" -"Last-Translator: kabum \n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) \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 diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index 752ceee589..ca88a9a239 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 \n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 09:20+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) \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 398f6cdbc6..642dd77045 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 04e8b0afca..0e204f015a 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: JamFX \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 7d8f555929..2300c9f4ba 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 47bb28d900..885e50c2b1 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 980a9535d7..19a2f8ba76 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" -"Last-Translator: kabum \n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) \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 access your Files via WebDAV" -msgstr "Nutzen Sie diese Adresse um auf ihre Dateien per WebDAV zuzugreifen" +msgstr "Verwenden Sie diese Adresse, um auf ihre Dateien per WebDAV zuzugreifen." #: 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 f544d2b1ce..30f8587f4f 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 81b71aa147..b38f6ed036 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/el/files.po index e78efe35a8..da5d11676d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/el/files_external.po index 2172f8772c..998ee63a19 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: KAT.RAT12 \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 6c8f71ecb0..222efb7d98 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 aa58c8c9f8..eb56681071 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 ad1f134349..e0b81349e7 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index dc6e512223..8f707ad037 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 c6c60eed76..824fba4f65 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 e0ed2c60a9..062c140efd 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 699082fa88..b146ece8cd 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 e955556d9b..2ce7f2bf90 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/eo/files.po index 3c1ba325ac..16958dfa77 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/eo/files_external.po index 7b60d83888..0bc731dddc 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 f7900c32e9..16b0cbadb4 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 c47acddb33..2bb018bb5b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 efe88cfc6a..d5e6c4b3db 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index d632df7342..35de0b4aa6 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 807f26f207..aaa9c8de38 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 d798541488..d8e3f09075 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/es/files.po index 74bc50ffe4..fff4273d71 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: qdneren \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_external.po b/l10n/es/files_external.po index f320ca6527..02fca2d712 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Korrosivo \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 af3b0d189b..f9e4a4856f 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Korrosivo \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 2d4190a467..048177b134 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Korrosivo \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 e5d045975d..6c4bff9765 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 557ac7d1b8..47d1ee6303 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: qdneren \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 92d730e378..c8536010e7 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: xhiena \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 bd53005ab4..196cf120e3 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: cjtess \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.po b/l10n/es_AR/files.po index 61e723fc3e..76f45def78 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: cjtess \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_external.po b/l10n/es_AR/files_external.po index 02baba0327..8704b5c831 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: cjtess \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 c2fe728b83..cd4b27ceb2 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: cjtess \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 f4bff7bb29..d9dd09148d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 dd149b8ecd..a6abbcdfcb 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/es_AR/settings.po index 340a87a496..8866ea485c 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: cjtess \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 acbaf859b1..30365ab088 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: cjtess \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 901f0fb182..dba52c6d9f 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/et_EE/files.po index 47204287e1..5e89a7254b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: pisike.sipelgas \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_external.po b/l10n/et_EE/files_external.po index f283c520f6..164b9d9700 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Rivo Zängov \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 2abbaa860f..404fab9390 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Rivo Zängov \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 c7cfb243ec..5368210f77 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Rivo Zängov \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 2d9d111052..6948cb3392 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/et_EE/settings.po index b4eccf2514..6f1a0a939c 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: pisike.sipelgas \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 cb96725d01..441cfc3224 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: pisike.sipelgas \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 8830a761f4..b09d1aa666 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/eu/files.po index da9dc4d444..965c000615 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/eu/files_external.po index 075af18a4e..e4f24d3a7b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Piarres Beobide \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 074d2f63c5..a731cf6e62 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 57b05f20ee..c4ac101956 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 aec2515505..fd225f4c5b 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index b91bb21922..e51f7e15c1 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 9ed1f96d01..3181fda1be 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 e1d0b18873..83dd85c696 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: miki_mika1362 \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.po b/l10n/fa/files.po index 3809ad7c0d..6765f3c6f8 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: miki_mika1362 \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_external.po b/l10n/fa/files_external.po index 0178f39111..20c88c118d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index e3a219cc5e..1c7bf64619 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: miki_mika1362 \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 daed061075..d266f1640c 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 fb235470e9..d3ce4e9f67 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 080dda2213..bca13ac210 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: miki_mika1362 \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 1f73346dc7..baa868f471 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index e0782e6278..66a7c23fc2 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/fi_FI/files.po index 553efe97ee..95ef52276a 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Jiri Grönroos \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_external.po b/l10n/fi_FI/files_external.po index 5f62a188ec..a0f1c5b4b7 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 4933c6f66a..1694966025 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 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: Jiri Grönroos \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 88202b57cb..2ab2be77f6 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 6452ece861..5cbea9c298 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/fi_FI/settings.po index 82441cb663..529efacd07 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Jiri Grönroos \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 1c93d7f508..2fb2d0df89 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 6c9cde267e..7cb38657ad 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/fr/files.po index ffda287fbd..f968690b62 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Adalberto Rodrigues \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_external.po b/l10n/fr/files_external.po index 555e6c7921..2fa2cd075e 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 0163477916..61d91d8dda 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: square \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 2bc2d62e1c..8c677128c1 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 1fd4942819..9da4b25f81 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index b6c0dde898..1b557f5e94 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Adalberto Rodrigues \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 084f4d49da..fbcdded1a4 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: plachance \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 05359f2764..f416ecd5c5 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: mbouzada \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.po b/l10n/gl/files.po index 31787f5506..fcd80350bd 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: mbouzada \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_external.po b/l10n/gl/files_external.po index 6d6843fcce..0c01abc1d8 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 1df61ba86b..fde05a591c 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: mbouzada \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 554cb9299d..d3bf7212dd 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 b15132d2f2..2ac52369ab 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 3081f01681..16af4da982 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: mbouzada \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 952fb0937f..6ca4641acf 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: mbouzada \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 549c07881e..16ea965584 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/he/files.po index e09c8840ef..dd4ead6bcb 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/he/files_external.po index 8a4ad50777..af6ec04e7b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 5766019c79..3bd4c172a5 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 bb0774633c..8432d4e2f1 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Yaron Shahrabani \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 a45d01f120..ef9a5241ed 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index b448c5c765..50999754ab 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 c6f155da5f..5ca2911ffe 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 585d638e5c..abd0f37f94 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index bc7aec79fd..871e859da4 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 72a7002e82..5ce13845b9 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 811b01669f..303b5c5dc2 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-16 06:02+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 06:32+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index d6517b6f97..bdabe42ee7 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 621c283050..f5ea5247e6 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 f15f6d0bd9..da7280beee 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/hr/files.po index 745a02f392..dfc63b239c 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hr/files_external.po index 239b5cf080..4f7f397cb2 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 2b2c8e9fa9..d93f65f7a1 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 32042e8545..7b70b3adf3 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 b80c5f06ae..1577e5bf9b 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 418552ae12..587d791ccd 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 536bdabd41..14bfc5d6ed 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 fc30fcb608..6361680818 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: Laszlo Tornoci \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.po b/l10n/hu_HU/files.po index f3efb05434..4e3974d65f 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -308,7 +308,7 @@ msgstr "Letöltés" #: templates/index.php:80 msgid "Size (MB)" -msgstr "" +msgstr "Méret (MB)" #: templates/index.php:87 templates/index.php:88 msgid "Unshare" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 6b6179e6dc..d461b3eb6a 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Laszlo Tornoci \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 723b2138da..8c19e15bb4 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Laszlo Tornoci \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 7503f89c15..76559191a6 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 0367f4f318..6dca6f5284 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/hu_HU/settings.po index de7fcd316d..c84beceb35 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Laszlo Tornoci \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 9ce1583e3b..a9549d9949 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Laszlo Tornoci \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 96c6b4a7fb..098df5562b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hy/files_external.po index aedc12bc24..1890321401 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-17 02:19-0400\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 341fe29d79..4bee7298cf 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 b5ade7baea..d1859da7b2 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-17 02:19-0400\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 a3f359e76d..52699c5f6a 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 291e3472e0..a937ba1f2e 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ia/files.po index 3ccd90b7fe..4b6bf3a773 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ia/files_external.po index 5c58fac771..3ea187206c 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 25dad43a34..2581a7dd87 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 8da3c80946..c273cd4d04 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 1481c06a51..af22bb09a3 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 682d7dde10..116e1eb6da 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 576be42966..2ccf06bbeb 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 0f474a7dbd..fb92947d5f 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/id/files.po index cb98864a28..7a0e07cff8 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/id/files_external.po index 54491ea6e8..b40e8c01b9 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 8ef86f5117..d85898974e 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 c7b657eb9f..805542c17e 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 b2ac1efcb8..58e500fb43 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 6aa3685c99..56f3523159 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 9c26018691..c47c6b6b67 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 7b90f47383..2c9fe4f552 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/is/files.po index 813e30b78f..a1227b0ad8 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/is/files_external.po index adbd2f9dff..9ae800ee62 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 aa3c93d591..cf5e910501 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 f1e909a148..1a6469d7ca 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 27bab1b43f..c8463fabf1 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 8700391e25..695efe70a5 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 ccad0cb2ea..4fb7644a95 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Magnus Magnusson \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 8e4c4d860c..b9cd0e79cd 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: Vincenzo Reale \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.po b/l10n/it/files.po index 5794120594..556864d77e 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Vincenzo Reale \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_external.po b/l10n/it/files_external.po index 7408154bc3..13f131f9ad 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Vincenzo Reale \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 98d538f460..3499825517 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Vincenzo Reale \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 b44df1c806..1912f079ec 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Vincenzo Reale \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 d9a0065d2f..d67414ce95 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 3eb3b27335..3e7d46cebf 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Vincenzo Reale \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 fe692028df..65f015cf1d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: Vincenzo Reale \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 a1e7f2deab..968d0c2c5a 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: Daisuke Deguchi \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.po b/l10n/ja_JP/files.po index 0a0ffe43bd..546458363d 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: pabook \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_external.po b/l10n/ja_JP/files_external.po index 8d5333ecbe..c93b515bfb 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 b35ce89a8f..4a4bae428d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: tt yn \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 b5be6ff3a7..12fc4726db 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 59328fb3f2..7e4acde005 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ja_JP/settings.po index 958d43d9a0..4c6da07364 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Daisuke Deguchi \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 174b0a64c3..6f986b3d74 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: Daisuke Deguchi \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 74cd7b19fa..fd75dd952c 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 9f6a3989f6..20fd7889fe 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 d29c769ee1..efec31710c 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ka_GE/files.po index ae96713f07..30ba900881 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ka_GE/files_external.po index d95f98a233..f23b508fb4 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: drlinux64 \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 36ff0ca22e..11873902bb 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 75ec682b5d..4986baa8c1 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: drlinux64 \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 d2d78a6855..041274223e 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ka_GE/settings.po index c355454557..c1ec86b1a1 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 5dc5aa92e6..4b8dad667b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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/ko/core.po b/l10n/ko/core.po index bdfa57a831..09b4b1a0a9 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ko/files.po index 3311c70335..c0be97468e 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ko/files_external.po index 3ae5824496..e37c82d4e9 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Shinjo Park \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 d9c91d1ddd..3b02373c19 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 01ecfa79de..78709c2fe9 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 6e7f8db303..4d0efb48b2 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 8963882247..7b8451f100 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 18ddb8ec95..cb7c93819d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 688bf0a4d6..f80d255d5b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ku_IQ/files.po index 9adc8ea103..ab175a3847 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_sharing.po b/l10n/ku_IQ/files_sharing.po index b6dc055885..afc94007ac 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 1e7fb10898..2546834889 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 78cd991e4d..6780ef4194 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-16 06:02+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 06:32+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ku_IQ/settings.po index ca8fff2a33..c4657aa25b 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 4c592ba7d5..9861e7e114 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 9874ee4f79..2c31f3e452 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/lb/files.po index f0da095f33..1facf9d9e4 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lb/files_external.po index 7f5f1110b9..ce6e2dcb9d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 2d3aa871ec..4de0753459 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: llaera \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 b0c667f174..2153783837 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 cf95d92f45..88245025b7 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index c94056e94c..b270ae29ba 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 beca103ecd..3b2ee12236 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 4079565e2b..ca47542aa6 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/lt_LT/files.po index 224db714e7..3558b00c65 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lt_LT/files_external.po index 6e2ed19487..28d9944579 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Min2liz \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 e77a732adb..7964ea771f 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 bab098187f..22d7187418 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: fizikiukas \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 3c99d90acf..ba8209ab02 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/lt_LT/settings.po index 87789fa85a..a586744f18 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: fizikiukas \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/user_ldap.po b/l10n/lt_LT/user_ldap.po index b257319a42..e0913778c6 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 66e18c24d9..596063a8c9 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/lv/files.po index 5a316b75dc..9a4f023d01 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lv/files_external.po index cb771f70aa..37010aca0b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 51e14cf668..84e84ebb6f 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 997a4b3fd9..79221726cb 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 6044beaba6..0542340ccc 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index a060577967..de3646dcb1 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 30bd72afc7..36a3cf4d28 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 bf38be9375..f269af81f3 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/mk/files.po index aefc904b4f..110fcf9b2a 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/mk/files_external.po index f7ae77d942..89c9c7003b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 b9a64540c0..79f8fb86ba 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 7843be64c1..8089e6bada 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 d327bb9be1..d6eeddede1 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index a5a52e2580..57f5ee078d 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 f9ed93c5c1..77138bf079 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 84b97b8365..2e8defd041 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ms_MY/files.po index 42e37f108e..8c5874f665 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ms_MY/files_external.po index e770e88ca1..ca899e9a54 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 5252b40240..0d06f66a98 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 a71ed0cb72..38152cfc78 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 00d2ad1a42..46919ef9e2 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ms_MY/settings.po index 5cdaa3c84c..a2b3bfed7d 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 e1902a86ed..bae8baec54 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 fdc5abda07..c3b11c007d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/my_MM/files.po index 677a0e3e08..e735e16c20 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/files_sharing.po b/l10n/my_MM/files_sharing.po index 00e3a1124b..9281093e69 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 8a4a39daf8..fa9116e505 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/nb_NO/core.po b/l10n/nb_NO/core.po index 1d15e8b1c7..64b9a7feb8 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/nb_NO/files.po index 88e99ce2be..2becc73958 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Stein-Aksel Basma \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_external.po b/l10n/nb_NO/files_external.po index dd1309cae2..dd46b97e29 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 7be544650e..323be352c7 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Stein-Aksel Basma \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_trashbin.po b/l10n/nb_NO/files_trashbin.po index 61610e1b69..2b6b965236 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 49359dd54c..603594ebf5 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/nb_NO/settings.po index e07bd991fd..dc807c6be9 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Stein-Aksel Basma \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/user_ldap.po b/l10n/nb_NO/user_ldap.po index be36462550..868afb47e6 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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/nl/core.po b/l10n/nl/core.po index 46351da7a4..2a79ca3b8f 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/nl/files.po index 99d32b9630..def66643a8 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nl/files_external.po index 7c559a1b01..8235d4de51 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: André Koot \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 9c6e71f811..2bb1cd23eb 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/nl/files_trashbin.po index 233e63b47f..92cef654a5 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 a5f5054555..dd8de2386a 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index a433bef403..c40572309f 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 07795340d6..e928be33bc 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: André Koot \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 acb70a63f9..c2cf1e60e6 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/nn_NO/files.po index d719a5bd7f..8fd60974c1 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nn_NO/files_external.po index 3471add2cd..a6d4331aa8 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 0a5422156b..ece03b998d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 256acba665..03be1f592c 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: unhammer \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 75bd3f8d3c..cd95c4d7d1 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/nn_NO/settings.po index 99d9c14073..e757b69010 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 8de011ddc6..63a41c217b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 8d99cd1759..9076a0b2d8 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/oc/files.po index d631723fec..3e04a95bce 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/oc/files_external.po index 3092ccb23a..c988745fe3 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 4e7cfb1f4b..65215e3845 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 d1a4d8700b..e3da0eb9ce 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 07236bf267..4408f700fd 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-16 06:02+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 06:32+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/oc/settings.po index 73a128d7fb..72d13196a2 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 11f7a91f89..80b585c88c 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 ed92a73689..21f5598e83 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/pl/files.po index 11fb080586..4cd39a2863 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/pl/files_external.po index 7e4fe365b8..2a8a390ada 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Cyryl Sochacki \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 06cd70c042..d544495f6f 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 3a4f3c3f2d..ff3f248965 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 325fe51284..d76d6db56a 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 4e275e0f5c..43f8859c53 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 6f1694e4d8..30b5511570 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: orcio6 \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 bf429e33e4..752b8a1c37 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/pt_BR/files.po index cb96efb64a..27fb5fb854 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: Flávio Veras \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_external.po b/l10n/pt_BR/files_external.po index ba4b1deea1..0df8ed3d84 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Flávio Veras \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 154dc2b04f..ab060dbf1e 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Flávio Veras \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 9914284011..30a17408cc 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 eee42dedd6..d783fa2119 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/pt_BR/settings.po index 51fd18a894..6b68d93704 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: bjamalaro \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 fddab3d10e..07c2c73f82 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Flávio Veras \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 032128f4e4..e780a4d4f3 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: Helder Meneses \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.po b/l10n/pt_PT/files.po index 434bb213cd..2c90f91ff6 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: FernandoMASilva\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index ad563a800d..98ac280259 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Mouxy \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 0f835b3d61..bb6a7144c8 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/pt_PT/files_trashbin.po index 9b6468b0bb..021a20f9a3 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 6e4aa5fd61..1a49cfb1aa 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/pt_PT/settings.po index 368813fee2..d46dcc9b59 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Helder Meneses \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/user_ldap.po b/l10n/pt_PT/user_ldap.po index ac061a994b..a96580b13e 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Bruno Martins \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 103248d1ea..aa1a719569 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ro/files.po index 50bebf9d07..b51283856d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ro/files_external.po index 5af30fa7f3..a109acf711 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 9f185dd28f..9b50acebbd 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: sergiu_sechel \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 f8343d0c8b..630472fefd 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 39ebd8a985..867b3021b1 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index da06741307..06231a5799 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 689e62678a..28e302eb06 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 8e00c64345..3cd5bac92a 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: Victor Bravo <>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 72933985df..c873c82c44 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: hackproof \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_external.po b/l10n/ru/files_external.po index 01d2dac194..74d5e95f92 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 a5a2fca56c..ada29069ac 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Victor Bravo <>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 05bd3f11bb..d7c65c9ef4 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 2e40b5ee0d..5e7332dd81 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index b559856f80..c2371c70e8 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: hackproof \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 0689c0a87e..1d16ef9873 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: alfsoft \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 9ab7db9deb..b78f6deeb9 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/si_LK/files.po index af12eeedd3..cc21c2a9b9 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/si_LK/files_external.po index c5a4b17f20..aadfbcb205 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 6798cf2fca..928f76cfbe 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 df981e0833..a99cd97d80 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 5822b061e8..b83dbf33f0 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/si_LK/settings.po index adccd8fe3f..966dc0dbb7 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 73930576ac..1725dc7437 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_SK/core.po b/l10n/sk_SK/core.po index 1bf84e3f50..fa3adbf5ae 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: mhh \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.po b/l10n/sk_SK/files.po index fc4b4d66c5..f6225d9b8e 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sk_SK/files_external.po index a0a8c3e5dd..db07e95c10 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: mhh \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 5d9f542def..118c23d6b6 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 feeb9b2bb3..8531047a41 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 57c323b789..1415eeea6a 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/sk_SK/settings.po index 3dabc097d4..ce6728388c 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: mhh \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 6f68454ac3..65eb2f6e01 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: mhh \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 886355d0e8..a1e4d26f20 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sl/files.po index 037cdeb2d1..cea4af0949 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sl/files_external.po index b8b8016e8a..37df1b206d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index bfd4a57fca..c7616d768d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 ddb6e44fb5..053def2f26 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 0066eb12ce..7de932530c 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index bb78c0921b..f43b120693 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 1c2d51f7e6..781fbb1a20 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: barbarak \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 fb94210cb4..dbcbea0d11 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sq/files.po index e926bfd348..8e4e44f3a6 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sq/files_external.po index f2f0b0d442..c509d6b750 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 5168286b20..65c36d4f2b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 91d0f4555f..fa7443e984 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 d0fefdc15b..e941be08ad 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index c3f7f1a2ab..160b780b3f 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 6af69ba47b..9c536410a5 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 ec89a32268..2ac39e4678 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr/files.po index 0925b075df..f689b0029c 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sr/files_external.po index 2a0105b932..c258c75d66 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 cc9350827d..d4999202b4 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 fdae5c6a3e..34f196886e 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 b983fa2d14..017afe64d0 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index fff55d8711..6c2ac2a4ee 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 59733647ab..27959e936a 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 e5dcd6f9c5..ff78efd33b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr@latin/files.po index 2284f7b137..c667e64673 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sr@latin/files_external.po index b81595c84a..60aa350987 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 81c190aa49..eafced9ca9 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 49ef6a996a..34d53e4132 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 cf73d85f33..cd8a30edd9 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/sr@latin/settings.po index ba2943c744..5a0b07dd43 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 8f5474fedb..0e2df8d04a 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -375,7 +375,7 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Uppdateringen misslyckades. Rapportera detta problem till ownCloud-gemenskapen." +msgstr "Uppdateringen misslyckades. Rapportera detta problem till ownCloud Community." #: 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 dd2b0c25d8..e4af1fac05 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -4,15 +4,16 @@ # # Translators: # Gunnar Norin , 2013 +# medialabs, 2013 # Magnus Höglund , 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -310,7 +311,7 @@ msgstr "Ladda ner" #: templates/index.php:80 msgid "Size (MB)" -msgstr "" +msgstr "Storlek (MB)" #: templates/index.php:87 templates/index.php:88 msgid "Unshare" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index aaa49ef79e..0435b10826 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index cada804a8b..08a2f2e310 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/sv/files_trashbin.po index cb6571604a..f53c5cef0b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 efdd6feb68..fad5520371 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 493c563f39..9b00510661 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -460,7 +461,7 @@ msgstr "WebDAV" msgid "" "Use this address to access your Files via WebDAV" -msgstr "" +msgstr "Använd denna adress för att komma åt dina filer via WebDAV" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index eabab72a1f..ac065f21e7 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 276b044c6a..2212c68cda 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ta_LK/files.po index d5facc4351..37ccc1d169 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ta_LK/files_external.po index d383bd4894..5b927fc227 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 0d0dd9d463..d08e091cad 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 bf23a92cd7..db4efda280 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 1304184dcb..9b8547b022 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ta_LK/settings.po index 5ce40d851d..0edbd76f53 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 0e74b7be40..3ff1305ffd 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 d966389de7..aaa277b655 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/te/files.po index 71733cc6a3..ed3cf2a2a3 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/te/files_external.po index 81da799ca8..43c3519fc9 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 11cdd5ea0a..07cf09abf0 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 387c72f66e..39b45b8f9b 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-16 06:02+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 06:32+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 589f3f07ff..613892b9cb 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 8536964c89..d716575962 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 25243d7fcb..a9f63c174d 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-17 02:19-0400\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ea879ad519..e9dd34cfe3 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-17 02:19-0400\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 32d1b2ba66..8e48bead1f 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-17 02:19-0400\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 49d1e4dd0b..8faebc508a 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-17 02:19-0400\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index e5ec53d581..626b90c100 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-17 02:19-0400\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index b972541ec2..710a03e6b0 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-17 02:19-0400\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 2c266024fa..55eeb3aac4 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-17 02:19-0400\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index df82b4a2cb..9b444fa7ca 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-17 02:20-0400\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 9f1f5b9796..14bf5d1c48 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-17 02:20-0400\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index e1e8c3fcf9..63fcdf30fc 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-17 02:19-0400\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 5505462559..2941e805e6 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-17 02:19-0400\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 325e217edf..61ce81a946 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/th_TH/files.po index 2941fe54d3..7d47bb60a9 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/th_TH/files_external.po index 545d185507..407b2d8dd4 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 eaed61ec2b..a8b01bc888 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 613773959b..46ef8437b5 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 bb2d98e83b..be7337a02f 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/th_TH/settings.po index f2c7ca1be9..ab0ec15d59 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 98e2eacf42..c2a66e127f 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 e0d0b1e1e9..c3b3886b6d 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/tr/files.po index 14ec0f4237..fc714dd73c 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/tr/files_external.po index 8827927e20..255f235d7e 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 e6bf14f636..0360568a51 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 a65d3f862f..bd9439245b 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 40fb4cfd73..00a3d8f494 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index b18e7201d0..903997a292 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 35b1f15cd4..69e290a4a1 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: ismail yenigül \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 d2ea8cf7ce..fb3032ad22 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 97edf15311..fd3b50d240 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index f8a2383b85..c88c158c82 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index f35b23a055..db441ab1a2 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 8e9fce5c93..7623e8187d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 54b8583804..327ba28f5f 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 7e82b2ace9..78482c344f 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 53636a3d8c..85a3311d73 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index d06b697184..f0f813ab71 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/uk/files.po index 8511430f69..1f489ef683 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/uk/files_external.po index fdef102189..d687284d76 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 b551e86e5b..4f94816dc5 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 28bdd23170..30f5e26c20 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 14d05ff543..aa02d73043 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 289832daf8..5bad8f3bf2 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 1eac58267c..8cce1983f8 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: I Robot \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 7baa7513be..9b9cec50f0 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/ur_PK/files.po index a7ab9c0ff8..58c9ef3979 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 36d9fff81f..31ec5f32c6 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 a66b2a4cc9..71243de70c 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-16 06:02+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-17 06:32+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ur_PK/settings.po index 445c51fd77..79a466c956 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 90bea6ba8e..1bf8b006ee 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 1776dfed37..1b0d637b55 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/vi/files.po index a9c7a22774..5090d6b147 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/vi/files_external.po index 7503ea3165..98eb96cb4f 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: xtdv \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 a7c993e0b1..3c746275f4 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 d505f0a9b1..c83f00f96d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 33796a890d..6a305525b1 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index e5e2f97d21..1884fcaff7 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 a300437e41..3c9f0208e1 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 9e024679ac..42bd591bd4 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN.GB2312/files.po index 1355ae3f42..d5c74fe1a1 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: hlx98007 \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_external.po b/l10n/zh_CN.GB2312/files_external.po index 6691cb985f..c59411c8d0 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: hyy0591 \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 807f512ae8..7839e27f35 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 bb1e096e9d..0d3953e7d1 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 687cb04894..49d2c576d9 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_CN.GB2312/settings.po index e14f28c32a..7294150f2a 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: hlx98007 \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 3086ada92a..8b41ce08b1 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 4366f45b44..79d2870d3c 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN/files.po index 10c790b0e3..95318098fc 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/zh_CN/files_external.po index df1dde2e02..a9005362f1 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 a06182282e..897b7cb420 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 9bb57ed443..b44006f850 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 10017f5d0e..4789dd87b3 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_CN/settings.po index cd2128875c..513d91296b 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 64d8fba259..d5bba31ca9 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: modokwang \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 97492a31db..0cf41e252d 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_HK/files.po index 97cecef3f9..c80aa5e169 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/zh_HK/files_external.po index eda1a7619c..c9300be89c 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 08c7725e5c..5ec31334f0 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 9ab8ba20e8..3746a148e4 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 958918ae5e..f5130f387a 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_HK/settings.po index cbd9b33b42..c57502b8ed 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 971f6d8edf..bde4fe41d6 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 39547ae9cb..ef8de5c5d2 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:24+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:14+0000\n" "Last-Translator: pellaeon \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.po b/l10n/zh_TW/files.po index 0d5deaac09..cfb730d8f3 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: pellaeon \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_external.po b/l10n/zh_TW/files_external.po index 9662a43770..584f7621bb 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: pellaeon \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 605d8dd0be..151c9801c1 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 2996152eb9..3b20571053 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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 38bc29a66b..03de954ba8 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_TW/settings.po index 000615b039..43a423edd0 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-17 02:20-0400\n" -"PO-Revision-Date: 2013-07-17 05:25+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:15+0000\n" "Last-Translator: pellaeon \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_ldap.po b/l10n/zh_TW/user_ldap.po index d73e26a63f..80294f58c9 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-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 05:26+0000\n" +"POT-Creation-Date: 2013-07-18 01:54-0400\n" +"PO-Revision-Date: 2013-07-18 05:16+0000\n" "Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index bb4ea79319..ff71cbdd0f 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 access your Files via WebDAV" => "Nutzen Sie diese Adresse um auf ihre Dateien per WebDAV zuzugreifen", +"Use this address to access your Files via WebDAV" => "Verwenden Sie diese Adresse, um auf ihre Dateien per WebDAV zuzugreifen.", "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/fi_FI.php b/settings/l10n/fi_FI.php index f81f786370..282e619009 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 %s of the available %s" => "Käytössäsi on %s/%s", "Password" => "Salasana", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 567c219990..7a9f341e4d 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 access your Files via WebDAV" => "Använd denna adress för att komma åt dina filer via WebDAV", "Login Name" => "Inloggningsnamn", "Create" => "Skapa", "Admin Recovery Password" => "Admin återställningslösenord", From e2b6781cf9a97e4ad10e4824e38ccdaf3c2dc676 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 18 Jul 2013 20:28:57 +0200 Subject: [PATCH 086/108] Tweaks to the MDB2SchemaReader --- 3rdparty | 2 +- db_structure.xml | 2 +- lib/db/mdb2schemareader.php | 7 ++++++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/3rdparty b/3rdparty index c8623cc80d..25e8568d41 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit c8623cc80d47022cb25874b69849cd2f57fd4874 +Subproject commit 25e8568d41a9b9a6d1662ccf33058822a890e7f5 diff --git a/db_structure.xml b/db_structure.xml index 4c192ba028..ef5de65303 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -383,7 +383,7 @@ user text - false + true 64 diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index 4dc1fd4616..0ead9528c9 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -148,6 +148,8 @@ class OC_DB_MDB2SchemaReader { if (empty($options['notnull']) || !$options['notnull']) { unset($options['default']); $options['notnull'] = false; + } else { + $options['default'] = ''; } if ($type == 'integer') { $options['default'] = 0; @@ -165,9 +167,12 @@ class OC_DB_MDB2SchemaReader { $type = 'bigint'; } } - $table->addColumn($name, $type, $options); 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)); } } From 48948ccf5f6f1d7de2765fb955f956063d9bedc8 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 18 Jul 2013 22:15:26 +0200 Subject: [PATCH 087/108] finally remove the file size obfuscation as it had more disadvantages. I was wrong, sorry. --- apps/files/js/filelist.js | 3 +-- apps/files/js/files.js | 4 +--- apps/files/templates/index.php | 2 +- apps/files/templates/part.list.php | 6 ++---- core/js/js.js | 10 ---------- lib/public/template.php | 10 ---------- lib/template.php | 18 ------------------ 7 files changed, 5 insertions(+), 48 deletions(-) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index c847e2eff8..04a9fb9164 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 = $('').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 51b3f31fb9..98fc53b71a 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -756,9 +756,7 @@ function procesSelection(){ for(var i=0;i0){ if(selectedFolders.length==1){ diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 7d679bc4bf..fa4cda6f6b 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -77,7 +77,7 @@ - t('Size (MB)')); ?> + t('Size')); ?> t( 'Modified' )); ?> diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index 97a9026860..0c7d693669 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; ?> - + } ?> - + diff --git a/core/js/js.js b/core/js/js.js index 5158b66d73..cf4e72324d 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/lib/public/template.php b/lib/public/template.php index ccf19cf052..d81a169579 100644 --- a/lib/public/template.php +++ b/lib/public/template.php @@ -76,16 +76,6 @@ function relative_modified_date($timestamp) { } -/** - * @brief Return a human readable outout for a file size. - * @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)); -} - - /** * @brief Generate html code for an options block. * @param $options the options diff --git a/lib/template.php b/lib/template.php index ae9ea18744..08df168afc 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; From 100eb2b611872255d83d38620f01adede789c9a1 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 18 Jul 2013 23:00:04 +0200 Subject: [PATCH 088/108] replace external storage status images with CSS, also use form to distinguish, fix #3910 --- apps/files_external/css/settings.css | 24 +++++++++++++++++++----- apps/files_external/img/error.png | Bin 533 -> 0 bytes apps/files_external/img/success.png | Bin 545 -> 0 bytes apps/files_external/img/waiting.png | Bin 512 -> 0 bytes 4 files changed, 19 insertions(+), 5 deletions(-) delete mode 100644 apps/files_external/img/error.png delete mode 100644 apps/files_external/img/success.png delete mode 100644 apps/files_external/img/waiting.png diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index 94b453793b..f2f40247b2 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 GIT binary patch literal 0 HcmV?d00001 literal 533 zcmV+w0_y#VP)WFU8GbZ8()Nlj2>E@cM*00DVPL_t(I%XO2zP9s4O zguh~X5z9j$Ik*!Eu?ZcT0EtI%c=tr!kViP_BtS$CaeUzg7B7Jj7!|?H{uwjLtV-3> zRn@&>@BFDwr{D!*hBZL|-hfuX?akZEddSzfxLzWDb$|;+?nzd2^ZxSt%L9Lp>wCjo z7RIR5cLWLBC<71IZ`&(?BY?Z(dKqS3StOYXNP-X~AP`{_Kr)0izpLscfF7%Q3VJGf z4;&5s?4Qd>umES9`pRhSHdlY8_f9u^WUw@(B~!+tc1@Q1y$m+`aROHyyL9&FY2k_$#&k$!-Ejh_DEk1(FGggfnJm+z@tivD>aYVgKXg9y8ycq@@yO zj~gC-e!TXp4De(3dX=EbtDDs%pekKkJfLZd55>!KI++RWFU8GbZ8()Nlj2>E@cM*00D(bL_t(I%Vm>6irYXC zMc-GKURaaHl z|G!$?Jl#{fHSB>Muqo~f_yios$A9NKUbS)e)E>a!C1KY)u0x0M@$JXE0^QH{#imD# zvraQ0=N0ifetUZWXaKtB_CTUnfRbLN5O!H_ zxDv+Zb11Z5S`|z+EUcWIojJx*Nfy99NbGK@Dk&8MTF7!`i(L@f$gV<+BxKKMTz+KN z)e&rhw6v)i-3sYyZ~hvL2|^d((}aJKQFFVugR?-@rBQHVk|~O?&00o6S-!}&lBT^= zqokuk5JCwQLXiU$MfU_W!b!#FDfZZ0zm8`TLq0X1L@C6Skc?VT^3p+Qxc1|D2KeFE z-HV`Ksa3|eqNk9m*X#Ybj55IWetaNlAj;^*GPWFU8GbZ8()Nlj2>E@cM*00Cr4L_t(I%Wab}PQySD zMc?=OBI&q6DAPm=ir@@s5Vr7fKnVhgoB>b>3PnmdMUL_*c5Saswz6mc{Mq^QM~u$q z;bDqdA!fiNg-^f{*j7#Ro8vV~UISGZ@E8$cRnye}2%a7vKLrb?s4R>JnFbU?`@81; zsv~&WJgqHP@(A2L!5F2lNMd<&Th+B*U!JF!p9pZ4GAu2?%6f`Smt_&k754co1hHC2 zuMB9jDnk)wWR>%D+MbovuzKZUU{;0@CXsniG{cPKwy`=fCuI=|IP>yea?!V#E~J)= zGK6pfE(Vp{&LD!-GCR&Cjv*SX3?UqCE+jg^`j@EZ8+js~V_Af-1*-nuS-+{aoJ)`o zY%73|xA!%;iYRscJGE;IrT^U0*EctHH@V$z7p?5^AamEdz1c69%d3CO^!2r0+f*dm z Date: Fri, 19 Jul 2013 02:03:14 -0400 Subject: [PATCH 089/108] [tx-robot] updated from transifex --- apps/files/l10n/es_AR.php | 22 +++++++-------- apps/files/l10n/eu.php | 7 +++++ apps/files_encryption/l10n/es_AR.php | 16 +++++------ apps/files_sharing/l10n/pt_PT.php | 1 + core/l10n/eu.php | 10 +++++++ core/l10n/pt_PT.php | 1 + l10n/af_ZA/core.po | 4 +-- l10n/af_ZA/lib.po | 4 +-- l10n/ar/core.po | 4 +-- l10n/ar/files.po | 4 +-- l10n/ar/files_external.po | 4 +-- l10n/ar/files_sharing.po | 4 +-- l10n/ar/files_trashbin.po | 4 +-- l10n/ar/lib.po | 4 +-- l10n/ar/settings.po | 4 +-- l10n/ar/user_ldap.po | 4 +-- l10n/bg_BG/core.po | 4 +-- l10n/bg_BG/files.po | 4 +-- l10n/bg_BG/files_external.po | 4 +-- l10n/bg_BG/files_sharing.po | 4 +-- l10n/bg_BG/files_trashbin.po | 4 +-- l10n/bg_BG/lib.po | 4 +-- l10n/bg_BG/settings.po | 4 +-- l10n/bg_BG/user_ldap.po | 4 +-- l10n/bn_BD/core.po | 4 +-- l10n/bn_BD/files.po | 4 +-- l10n/bn_BD/files_external.po | 4 +-- l10n/bn_BD/files_sharing.po | 4 +-- l10n/bn_BD/files_trashbin.po | 4 +-- l10n/bn_BD/lib.po | 4 +-- l10n/bn_BD/settings.po | 4 +-- l10n/bn_BD/user_ldap.po | 4 +-- l10n/bs/core.po | 4 +-- l10n/bs/files.po | 4 +-- l10n/bs/files_trashbin.po | 4 +-- l10n/ca/core.po | 4 +-- l10n/ca/files.po | 4 +-- l10n/ca/files_external.po | 4 +-- l10n/ca/files_sharing.po | 4 +-- l10n/ca/files_trashbin.po | 4 +-- l10n/ca/lib.po | 4 +-- l10n/ca/settings.po | 4 +-- l10n/ca/user_ldap.po | 4 +-- l10n/cs_CZ/core.po | 4 +-- l10n/cs_CZ/files.po | 4 +-- l10n/cs_CZ/files_external.po | 4 +-- l10n/cs_CZ/files_sharing.po | 4 +-- l10n/cs_CZ/files_trashbin.po | 4 +-- l10n/cs_CZ/lib.po | 4 +-- l10n/cs_CZ/settings.po | 4 +-- l10n/cs_CZ/user_ldap.po | 4 +-- l10n/cy_GB/core.po | 4 +-- l10n/cy_GB/files.po | 4 +-- l10n/cy_GB/files_external.po | 4 +-- l10n/cy_GB/files_sharing.po | 4 +-- l10n/cy_GB/files_trashbin.po | 4 +-- l10n/cy_GB/lib.po | 4 +-- l10n/cy_GB/settings.po | 4 +-- l10n/cy_GB/user_ldap.po | 4 +-- l10n/da/core.po | 4 +-- l10n/da/files.po | 4 +-- l10n/da/files_external.po | 4 +-- l10n/da/files_sharing.po | 4 +-- l10n/da/files_trashbin.po | 4 +-- l10n/da/lib.po | 4 +-- l10n/da/settings.po | 4 +-- l10n/da/user_ldap.po | 4 +-- l10n/de/core.po | 4 +-- l10n/de/files.po | 4 +-- l10n/de/files_external.po | 4 +-- l10n/de/files_sharing.po | 4 +-- l10n/de/files_trashbin.po | 4 +-- l10n/de/lib.po | 4 +-- l10n/de/settings.po | 4 +-- l10n/de/user_ldap.po | 4 +-- l10n/de_DE/core.po | 4 +-- l10n/de_DE/files.po | 4 +-- l10n/de_DE/files_external.po | 4 +-- l10n/de_DE/files_sharing.po | 4 +-- l10n/de_DE/files_trashbin.po | 4 +-- l10n/de_DE/lib.po | 4 +-- l10n/de_DE/settings.po | 4 +-- l10n/de_DE/user_ldap.po | 4 +-- l10n/el/core.po | 4 +-- l10n/el/files.po | 4 +-- l10n/el/files_external.po | 4 +-- l10n/el/files_sharing.po | 4 +-- l10n/el/files_trashbin.po | 4 +-- l10n/el/lib.po | 4 +-- l10n/el/settings.po | 4 +-- l10n/el/user_ldap.po | 4 +-- l10n/en@pirate/files.po | 4 +-- l10n/en@pirate/files_sharing.po | 4 +-- l10n/eo/core.po | 4 +-- l10n/eo/files.po | 4 +-- l10n/eo/files_external.po | 4 +-- l10n/eo/files_sharing.po | 4 +-- l10n/eo/files_trashbin.po | 4 +-- l10n/eo/lib.po | 4 +-- l10n/eo/settings.po | 4 +-- l10n/eo/user_ldap.po | 4 +-- l10n/es/core.po | 4 +-- l10n/es/files.po | 4 +-- l10n/es/files_external.po | 4 +-- l10n/es/files_sharing.po | 4 +-- l10n/es/files_trashbin.po | 4 +-- l10n/es/lib.po | 4 +-- l10n/es/settings.po | 4 +-- l10n/es/user_ldap.po | 4 +-- l10n/es_AR/core.po | 4 +-- l10n/es_AR/files.po | 26 +++++++++--------- l10n/es_AR/files_encryption.po | 20 +++++++------- l10n/es_AR/files_external.po | 4 +-- l10n/es_AR/files_sharing.po | 4 +-- l10n/es_AR/files_trashbin.po | 4 +-- l10n/es_AR/lib.po | 40 ++++++++++++++-------------- l10n/es_AR/settings.po | 4 +-- l10n/es_AR/user_ldap.po | 4 +-- l10n/et_EE/core.po | 4 +-- l10n/et_EE/files.po | 4 +-- l10n/et_EE/files_external.po | 4 +-- l10n/et_EE/files_sharing.po | 4 +-- l10n/et_EE/files_trashbin.po | 4 +-- l10n/et_EE/lib.po | 4 +-- l10n/et_EE/settings.po | 4 +-- l10n/et_EE/user_ldap.po | 4 +-- l10n/eu/core.po | 27 ++++++++++--------- l10n/eu/files.po | 21 ++++++++------- l10n/eu/files_external.po | 4 +-- l10n/eu/files_sharing.po | 4 +-- l10n/eu/files_trashbin.po | 4 +-- l10n/eu/lib.po | 9 ++++--- l10n/eu/settings.po | 8 +++--- l10n/eu/user_ldap.po | 4 +-- l10n/fa/core.po | 4 +-- l10n/fa/files.po | 4 +-- l10n/fa/files_external.po | 4 +-- l10n/fa/files_sharing.po | 4 +-- l10n/fa/files_trashbin.po | 4 +-- l10n/fa/lib.po | 4 +-- l10n/fa/settings.po | 4 +-- l10n/fa/user_ldap.po | 4 +-- l10n/fi_FI/core.po | 4 +-- l10n/fi_FI/files.po | 4 +-- l10n/fi_FI/files_external.po | 4 +-- l10n/fi_FI/files_sharing.po | 4 +-- l10n/fi_FI/files_trashbin.po | 4 +-- l10n/fi_FI/lib.po | 4 +-- l10n/fi_FI/settings.po | 4 +-- l10n/fi_FI/user_ldap.po | 4 +-- l10n/fr/core.po | 4 +-- l10n/fr/files.po | 4 +-- l10n/fr/files_external.po | 4 +-- l10n/fr/files_sharing.po | 4 +-- l10n/fr/files_trashbin.po | 4 +-- l10n/fr/lib.po | 4 +-- l10n/fr/settings.po | 4 +-- l10n/fr/user_ldap.po | 4 +-- l10n/gl/core.po | 4 +-- l10n/gl/files.po | 4 +-- l10n/gl/files_external.po | 4 +-- l10n/gl/files_sharing.po | 4 +-- l10n/gl/files_trashbin.po | 4 +-- l10n/gl/lib.po | 4 +-- l10n/gl/settings.po | 4 +-- l10n/gl/user_ldap.po | 4 +-- l10n/he/core.po | 4 +-- l10n/he/files.po | 4 +-- l10n/he/files_external.po | 4 +-- l10n/he/files_sharing.po | 4 +-- l10n/he/files_trashbin.po | 4 +-- l10n/he/lib.po | 4 +-- l10n/he/settings.po | 4 +-- l10n/he/user_ldap.po | 4 +-- l10n/hi/core.po | 4 +-- l10n/hi/files.po | 4 +-- l10n/hi/files_trashbin.po | 4 +-- l10n/hi/lib.po | 4 +-- l10n/hi/settings.po | 4 +-- l10n/hi/user_ldap.po | 4 +-- l10n/hr/core.po | 4 +-- l10n/hr/files.po | 4 +-- l10n/hr/files_external.po | 4 +-- l10n/hr/files_sharing.po | 4 +-- l10n/hr/files_trashbin.po | 4 +-- l10n/hr/lib.po | 4 +-- l10n/hr/settings.po | 4 +-- l10n/hr/user_ldap.po | 4 +-- l10n/hu_HU/core.po | 4 +-- l10n/hu_HU/files.po | 4 +-- l10n/hu_HU/files_external.po | 4 +-- l10n/hu_HU/files_sharing.po | 4 +-- l10n/hu_HU/files_trashbin.po | 4 +-- l10n/hu_HU/lib.po | 4 +-- l10n/hu_HU/settings.po | 4 +-- l10n/hu_HU/user_ldap.po | 4 +-- l10n/hy/files.po | 4 +-- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 +-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 +-- l10n/ia/core.po | 4 +-- l10n/ia/files.po | 4 +-- l10n/ia/files_external.po | 4 +-- l10n/ia/files_sharing.po | 4 +-- l10n/ia/files_trashbin.po | 4 +-- l10n/ia/lib.po | 4 +-- l10n/ia/settings.po | 4 +-- l10n/ia/user_ldap.po | 4 +-- l10n/id/core.po | 4 +-- l10n/id/files.po | 4 +-- l10n/id/files_external.po | 4 +-- l10n/id/files_sharing.po | 4 +-- l10n/id/files_trashbin.po | 4 +-- l10n/id/lib.po | 4 +-- l10n/id/settings.po | 4 +-- l10n/id/user_ldap.po | 4 +-- l10n/is/core.po | 4 +-- l10n/is/files.po | 4 +-- l10n/is/files_external.po | 4 +-- l10n/is/files_sharing.po | 4 +-- l10n/is/files_trashbin.po | 4 +-- l10n/is/lib.po | 4 +-- l10n/is/settings.po | 4 +-- l10n/is/user_ldap.po | 4 +-- l10n/it/core.po | 4 +-- l10n/it/files.po | 4 +-- l10n/it/files_external.po | 4 +-- l10n/it/files_sharing.po | 4 +-- l10n/it/files_trashbin.po | 4 +-- l10n/it/lib.po | 4 +-- l10n/it/settings.po | 4 +-- l10n/it/user_ldap.po | 4 +-- l10n/ja_JP/core.po | 4 +-- l10n/ja_JP/files.po | 4 +-- l10n/ja_JP/files_external.po | 4 +-- l10n/ja_JP/files_sharing.po | 4 +-- l10n/ja_JP/files_trashbin.po | 4 +-- l10n/ja_JP/lib.po | 4 +-- l10n/ja_JP/settings.po | 4 +-- l10n/ja_JP/user_ldap.po | 4 +-- l10n/ka/files.po | 4 +-- l10n/ka/files_sharing.po | 4 +-- l10n/ka_GE/core.po | 4 +-- l10n/ka_GE/files.po | 4 +-- l10n/ka_GE/files_external.po | 4 +-- l10n/ka_GE/files_sharing.po | 4 +-- l10n/ka_GE/files_trashbin.po | 4 +-- l10n/ka_GE/lib.po | 4 +-- l10n/ka_GE/settings.po | 4 +-- l10n/ka_GE/user_ldap.po | 4 +-- l10n/ko/core.po | 4 +-- l10n/ko/files.po | 4 +-- l10n/ko/files_external.po | 4 +-- l10n/ko/files_sharing.po | 4 +-- l10n/ko/files_trashbin.po | 4 +-- l10n/ko/lib.po | 4 +-- l10n/ko/settings.po | 4 +-- l10n/ko/user_ldap.po | 4 +-- l10n/ku_IQ/core.po | 4 +-- l10n/ku_IQ/files.po | 4 +-- l10n/ku_IQ/files_sharing.po | 4 +-- l10n/ku_IQ/files_trashbin.po | 4 +-- l10n/ku_IQ/lib.po | 4 +-- l10n/ku_IQ/settings.po | 4 +-- l10n/ku_IQ/user_ldap.po | 4 +-- l10n/lb/core.po | 4 +-- l10n/lb/files.po | 4 +-- l10n/lb/files_external.po | 4 +-- l10n/lb/files_sharing.po | 4 +-- l10n/lb/files_trashbin.po | 4 +-- l10n/lb/lib.po | 4 +-- l10n/lb/settings.po | 4 +-- l10n/lb/user_ldap.po | 4 +-- l10n/lt_LT/core.po | 4 +-- l10n/lt_LT/files.po | 4 +-- l10n/lt_LT/files_external.po | 4 +-- l10n/lt_LT/files_sharing.po | 4 +-- l10n/lt_LT/files_trashbin.po | 4 +-- l10n/lt_LT/lib.po | 4 +-- l10n/lt_LT/settings.po | 4 +-- l10n/lt_LT/user_ldap.po | 4 +-- l10n/lv/core.po | 4 +-- l10n/lv/files.po | 4 +-- l10n/lv/files_external.po | 4 +-- l10n/lv/files_sharing.po | 4 +-- l10n/lv/files_trashbin.po | 4 +-- l10n/lv/lib.po | 4 +-- l10n/lv/settings.po | 4 +-- l10n/lv/user_ldap.po | 4 +-- l10n/mk/core.po | 4 +-- l10n/mk/files.po | 4 +-- l10n/mk/files_external.po | 4 +-- l10n/mk/files_sharing.po | 4 +-- l10n/mk/files_trashbin.po | 4 +-- l10n/mk/lib.po | 4 +-- l10n/mk/settings.po | 4 +-- l10n/mk/user_ldap.po | 4 +-- l10n/ms_MY/core.po | 4 +-- l10n/ms_MY/files.po | 4 +-- l10n/ms_MY/files_external.po | 4 +-- l10n/ms_MY/files_sharing.po | 4 +-- l10n/ms_MY/files_trashbin.po | 4 +-- l10n/ms_MY/lib.po | 4 +-- l10n/ms_MY/settings.po | 4 +-- l10n/ms_MY/user_ldap.po | 4 +-- l10n/my_MM/core.po | 4 +-- l10n/my_MM/files.po | 4 +-- l10n/my_MM/files_sharing.po | 4 +-- l10n/my_MM/lib.po | 4 +-- l10n/nb_NO/core.po | 4 +-- l10n/nb_NO/files.po | 4 +-- l10n/nb_NO/files_external.po | 4 +-- l10n/nb_NO/files_sharing.po | 4 +-- l10n/nb_NO/files_trashbin.po | 4 +-- l10n/nb_NO/lib.po | 4 +-- l10n/nb_NO/settings.po | 4 +-- l10n/nb_NO/user_ldap.po | 4 +-- l10n/nl/core.po | 4 +-- l10n/nl/files.po | 4 +-- l10n/nl/files_external.po | 4 +-- l10n/nl/files_sharing.po | 4 +-- l10n/nl/files_trashbin.po | 4 +-- l10n/nl/lib.po | 4 +-- l10n/nl/settings.po | 4 +-- l10n/nl/user_ldap.po | 4 +-- l10n/nn_NO/core.po | 4 +-- l10n/nn_NO/files.po | 4 +-- l10n/nn_NO/files_external.po | 4 +-- l10n/nn_NO/files_sharing.po | 4 +-- l10n/nn_NO/files_trashbin.po | 4 +-- l10n/nn_NO/lib.po | 4 +-- l10n/nn_NO/settings.po | 4 +-- l10n/nn_NO/user_ldap.po | 4 +-- l10n/oc/core.po | 4 +-- l10n/oc/files.po | 4 +-- l10n/oc/files_external.po | 4 +-- l10n/oc/files_sharing.po | 4 +-- l10n/oc/files_trashbin.po | 4 +-- l10n/oc/lib.po | 4 +-- l10n/oc/settings.po | 4 +-- l10n/oc/user_ldap.po | 4 +-- l10n/pl/core.po | 4 +-- l10n/pl/files.po | 4 +-- l10n/pl/files_external.po | 4 +-- l10n/pl/files_sharing.po | 4 +-- l10n/pl/files_trashbin.po | 4 +-- l10n/pl/lib.po | 4 +-- l10n/pl/settings.po | 4 +-- l10n/pl/user_ldap.po | 4 +-- l10n/pt_BR/core.po | 4 +-- l10n/pt_BR/files.po | 4 +-- l10n/pt_BR/files_external.po | 4 +-- l10n/pt_BR/files_sharing.po | 4 +-- l10n/pt_BR/files_trashbin.po | 4 +-- l10n/pt_BR/lib.po | 4 +-- l10n/pt_BR/settings.po | 4 +-- l10n/pt_BR/user_ldap.po | 4 +-- l10n/pt_PT/core.po | 6 ++--- l10n/pt_PT/files.po | 4 +-- l10n/pt_PT/files_external.po | 4 +-- l10n/pt_PT/files_sharing.po | 9 ++++--- l10n/pt_PT/files_trashbin.po | 4 +-- l10n/pt_PT/lib.po | 4 +-- l10n/pt_PT/settings.po | 4 +-- l10n/pt_PT/user_ldap.po | 4 +-- l10n/ro/core.po | 4 +-- l10n/ro/files.po | 4 +-- l10n/ro/files_external.po | 4 +-- l10n/ro/files_sharing.po | 4 +-- l10n/ro/files_trashbin.po | 4 +-- l10n/ro/lib.po | 4 +-- l10n/ro/settings.po | 4 +-- l10n/ro/user_ldap.po | 4 +-- l10n/ru/core.po | 4 +-- l10n/ru/files.po | 4 +-- l10n/ru/files_external.po | 4 +-- l10n/ru/files_sharing.po | 4 +-- l10n/ru/files_trashbin.po | 4 +-- l10n/ru/lib.po | 4 +-- l10n/ru/settings.po | 4 +-- l10n/ru/user_ldap.po | 4 +-- l10n/si_LK/core.po | 4 +-- l10n/si_LK/files.po | 4 +-- l10n/si_LK/files_external.po | 4 +-- l10n/si_LK/files_sharing.po | 4 +-- l10n/si_LK/files_trashbin.po | 4 +-- l10n/si_LK/lib.po | 4 +-- l10n/si_LK/settings.po | 4 +-- l10n/si_LK/user_ldap.po | 4 +-- l10n/sk_SK/core.po | 4 +-- l10n/sk_SK/files.po | 4 +-- l10n/sk_SK/files_external.po | 4 +-- l10n/sk_SK/files_sharing.po | 4 +-- l10n/sk_SK/files_trashbin.po | 4 +-- l10n/sk_SK/lib.po | 4 +-- l10n/sk_SK/settings.po | 4 +-- l10n/sk_SK/user_ldap.po | 4 +-- l10n/sl/core.po | 4 +-- l10n/sl/files.po | 4 +-- l10n/sl/files_external.po | 4 +-- l10n/sl/files_sharing.po | 4 +-- l10n/sl/files_trashbin.po | 4 +-- l10n/sl/lib.po | 4 +-- l10n/sl/settings.po | 4 +-- l10n/sl/user_ldap.po | 4 +-- l10n/sq/core.po | 4 +-- l10n/sq/files.po | 4 +-- l10n/sq/files_external.po | 4 +-- l10n/sq/files_sharing.po | 4 +-- l10n/sq/files_trashbin.po | 4 +-- l10n/sq/lib.po | 4 +-- l10n/sq/settings.po | 4 +-- l10n/sq/user_ldap.po | 4 +-- l10n/sr/core.po | 4 +-- l10n/sr/files.po | 4 +-- l10n/sr/files_external.po | 4 +-- l10n/sr/files_sharing.po | 4 +-- l10n/sr/files_trashbin.po | 4 +-- l10n/sr/lib.po | 4 +-- l10n/sr/settings.po | 4 +-- l10n/sr/user_ldap.po | 4 +-- l10n/sr@latin/core.po | 4 +-- l10n/sr@latin/files.po | 4 +-- l10n/sr@latin/files_external.po | 4 +-- l10n/sr@latin/files_sharing.po | 4 +-- l10n/sr@latin/files_trashbin.po | 4 +-- l10n/sr@latin/lib.po | 4 +-- l10n/sr@latin/settings.po | 4 +-- l10n/sv/core.po | 4 +-- l10n/sv/files.po | 4 +-- l10n/sv/files_external.po | 4 +-- l10n/sv/files_sharing.po | 4 +-- l10n/sv/files_trashbin.po | 4 +-- l10n/sv/lib.po | 4 +-- l10n/sv/settings.po | 4 +-- l10n/sv/user_ldap.po | 4 +-- l10n/ta_LK/core.po | 4 +-- l10n/ta_LK/files.po | 4 +-- l10n/ta_LK/files_external.po | 4 +-- l10n/ta_LK/files_sharing.po | 4 +-- l10n/ta_LK/files_trashbin.po | 4 +-- l10n/ta_LK/lib.po | 4 +-- l10n/ta_LK/settings.po | 4 +-- l10n/ta_LK/user_ldap.po | 4 +-- l10n/te/core.po | 4 +-- l10n/te/files.po | 4 +-- l10n/te/files_external.po | 4 +-- l10n/te/files_trashbin.po | 4 +-- l10n/te/lib.po | 4 +-- l10n/te/settings.po | 4 +-- l10n/te/user_ldap.po | 4 +-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +-- l10n/th_TH/files.po | 4 +-- l10n/th_TH/files_external.po | 4 +-- l10n/th_TH/files_sharing.po | 4 +-- l10n/th_TH/files_trashbin.po | 4 +-- l10n/th_TH/lib.po | 4 +-- l10n/th_TH/settings.po | 4 +-- l10n/th_TH/user_ldap.po | 4 +-- l10n/tr/core.po | 4 +-- l10n/tr/files.po | 4 +-- l10n/tr/files_external.po | 4 +-- l10n/tr/files_sharing.po | 4 +-- l10n/tr/files_trashbin.po | 4 +-- l10n/tr/lib.po | 4 +-- l10n/tr/settings.po | 4 +-- l10n/tr/user_ldap.po | 4 +-- l10n/ug/core.po | 4 +-- l10n/ug/files.po | 4 +-- l10n/ug/files_external.po | 4 +-- l10n/ug/files_sharing.po | 4 +-- l10n/ug/files_trashbin.po | 4 +-- l10n/ug/lib.po | 4 +-- l10n/ug/settings.po | 4 +-- l10n/ug/user_ldap.po | 4 +-- l10n/uk/core.po | 4 +-- l10n/uk/files.po | 4 +-- l10n/uk/files_external.po | 4 +-- l10n/uk/files_sharing.po | 4 +-- l10n/uk/files_trashbin.po | 4 +-- l10n/uk/lib.po | 4 +-- l10n/uk/settings.po | 4 +-- l10n/uk/user_ldap.po | 4 +-- l10n/ur_PK/core.po | 4 +-- l10n/ur_PK/files.po | 4 +-- l10n/ur_PK/files_trashbin.po | 4 +-- l10n/ur_PK/lib.po | 4 +-- l10n/ur_PK/settings.po | 4 +-- l10n/ur_PK/user_ldap.po | 4 +-- l10n/vi/core.po | 4 +-- l10n/vi/files.po | 4 +-- l10n/vi/files_external.po | 4 +-- l10n/vi/files_sharing.po | 4 +-- l10n/vi/files_trashbin.po | 4 +-- l10n/vi/lib.po | 4 +-- l10n/vi/settings.po | 4 +-- l10n/vi/user_ldap.po | 4 +-- l10n/zh_CN.GB2312/core.po | 4 +-- l10n/zh_CN.GB2312/files.po | 4 +-- l10n/zh_CN.GB2312/files_external.po | 4 +-- l10n/zh_CN.GB2312/files_sharing.po | 4 +-- l10n/zh_CN.GB2312/files_trashbin.po | 4 +-- l10n/zh_CN.GB2312/lib.po | 4 +-- l10n/zh_CN.GB2312/settings.po | 4 +-- l10n/zh_CN.GB2312/user_ldap.po | 4 +-- l10n/zh_CN/core.po | 4 +-- l10n/zh_CN/files.po | 4 +-- l10n/zh_CN/files_external.po | 4 +-- l10n/zh_CN/files_sharing.po | 4 +-- l10n/zh_CN/files_trashbin.po | 4 +-- l10n/zh_CN/lib.po | 4 +-- l10n/zh_CN/settings.po | 4 +-- l10n/zh_CN/user_ldap.po | 4 +-- l10n/zh_HK/core.po | 4 +-- l10n/zh_HK/files.po | 4 +-- l10n/zh_HK/files_external.po | 4 +-- l10n/zh_HK/files_sharing.po | 4 +-- l10n/zh_HK/files_trashbin.po | 4 +-- l10n/zh_HK/lib.po | 4 +-- l10n/zh_HK/settings.po | 4 +-- l10n/zh_HK/user_ldap.po | 4 +-- l10n/zh_TW/core.po | 4 +-- l10n/zh_TW/files.po | 4 +-- l10n/zh_TW/files_external.po | 4 +-- l10n/zh_TW/files_sharing.po | 4 +-- l10n/zh_TW/files_trashbin.po | 4 +-- l10n/zh_TW/lib.po | 4 +-- l10n/zh_TW/settings.po | 4 +-- l10n/zh_TW/user_ldap.po | 4 +-- lib/l10n/es_AR.php | 34 +++++++++++------------ lib/l10n/eu.php | 1 + settings/l10n/eu.php | 1 + 544 files changed, 1181 insertions(+), 1156 deletions(-) diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 10bde4c385..6585d074bb 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,7 +63,7 @@ "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!", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index c87e20b1ff..3ef27d5cad 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -1,6 +1,8 @@ "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", @@ -64,11 +68,14 @@ "You don’t have write permissions here." => "Ez duzu hemen idazteko baimenik.", "Nothing in here. Upload something!" => "Ez dago ezer. Igo zerbait!", "Download" => "Deskargatu", +"Size (MB)" => "Tamaina (MB)", "Unshare" => "Ez elkarbanatu", "Upload too large" => "Igoera handiegia da", "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_encryption/l10n/es_AR.php b/apps/files_encryption/l10n/es_AR.php index 63c7fb7aa4..f53bbd437c 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_sharing/l10n/pt_PT.php b/apps/files_sharing/l10n/pt_PT.php index 2f41abca1f..8b02e73606 100644 --- a/apps/files_sharing/l10n/pt_PT.php +++ b/apps/files_sharing/l10n/pt_PT.php @@ -1,4 +1,5 @@ "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/core/l10n/eu.php b/core/l10n/eu.php index 4242d975f3..d17c9f2c4a 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -1,4 +1,5 @@ "%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.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Zure pasahitza berrezartzeko lotura zure postara bidalia izan da.
Ez baduzu arrazoizko denbora \nepe batean jasotzen begiratu zure zabor-posta karpetan.
Hor ere ez badago kudeatzailearekin harremanetan ipini.", +"Request failed!
Did you make sure your email/username was right?" => "Eskaerak huts egin du!
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,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" => "Kaixo

%s-ek %s zurekin partekatu duela jakin dezazun.
\nIkusi ezazu

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 fd88b70ed4..2020823310 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -91,6 +91,7 @@ "Request failed!
Did you make sure your email/username was right?" => "O pedido falhou!
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", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index eb7b5e0e1c..72ff3cd28f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-17 06:32+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-18 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index cc67bceb2f..a3062eb750 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-17 06:32+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-18 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 6a3f4fe16f..5ca63bcbd2 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ar/files.po index 6a87cf17df..39c09f40d8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ar/files_external.po index 011040b2cc..6f2b2cb333 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 1e305943ec..9ba0009623 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 30acd52ba8..4edce69695 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 983b08ffaa..5146e4e4ed 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 07f7ac7847..22a29f9935 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 2bcce9e20a..29fe735a62 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index c11a79a2c7..973df800a2 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/bg_BG/files.po index daf19a64ec..f70eb170e7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bg_BG/files_external.po index 04f5a523e0..7a6dfad3fb 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 e3709fd0c4..6f8815722b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 6ebd911d2d..4aea683e64 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Димитър Кръстев \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 53e2e229e8..2d8de193fc 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/bg_BG/settings.po index cc3e23e241..fec2dbfab8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 c42c4ecd76..54cc61ba5b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 ffc886c897..ac78710ab6 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/bn_BD/files.po index c4cc711dc8..b30218fecd 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bn_BD/files_external.po index f0cc0cb5ad..51171252bd 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 18a49ee640..22cf2da7da 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 57c8f8c150..4b187088f8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 9da5e29288..a77b401abe 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/bn_BD/settings.po index c2414ce778..0ab9614c60 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 c7038ee951..52b3b9aae6 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 2dc3bf4285..122ebad70e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index f31436d479..212a8ba241 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 1703ef2a99..15717c5782 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 6077d73ff7..7cb833ac36 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ca/files.po index 486a1e0922..bda706a793 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+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_external.po b/l10n/ca/files_external.po index 903f22f6d6..685b09f5a7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 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 da659bea6b..08bafebbc8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+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 54d220cfac..2dd5bd263c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 616ce4d4de..07e62a550c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 8957bebad3..a2df12eb8e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+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 b154555797..ce80608cef 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 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/cs_CZ/core.po b/l10n/cs_CZ/core.po index 6089505b77..8db4669442 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/cs_CZ/files.po index b58b60a7a6..e4f06e54dd 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/cs_CZ/files_external.po index 9dcdf33539..683165b1b2 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 ac0cda9e29..9e9fb84eff 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 0db57763e1..182ef4b3bd 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 679e2f98cf..0ea7cf60d3 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/cs_CZ/settings.po index c5218c7632..c85a454012 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Honza K. \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 758ab2ce84..bb552c10a4 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Tomáš Chvátal \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 d25a3dc653..1dac3d81ca 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/cy_GB/files.po index 10ddd11ed4..811cd2a0f8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/cy_GB/files_external.po index f4b7d91df0..5ae916d9da 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 fb99f82296..cc5ae4f950 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 1c01c7586b..3b6bc6d10f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: ubuntucymraeg \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 f9bea70a48..514fd6dcd7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/cy_GB/settings.po index bcbd833de9..77aee9414c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 f189c759fc..b1da9c4932 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 a15063de00..d565508111 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/da/files.po index 5715348abd..6899cd1403 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/da/files_external.po index a8e26e7806..959179b44b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 d78aa560dd..e10e7e2fa3 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 c142518b52..18d1400f2e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 fee71596e6..b2d65b79fd 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index a5a878610a..718cbf77cf 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Morten Juhl-Johansen Zölde-Fejér \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 8d20b0d624..9084b3b05f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 48de31d051..1e7bc0736c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index f9aed195dc..b3ebc2d8b4 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: kabum \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index db034af130..a5a07233b6 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 8d881be209..4e3d00d9d2 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 091b6a36bd..28b713fefa 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 19e7d35f39..50bc0c5a44 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 826b6bd5ad..6612b90d63 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index d4dfbb4d47..06da4e9241 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index b065af4241..89cb13ea52 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 9f756d6186..d550eb1c33 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 642dd77045..94472a02ef 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 0e204f015a..7e743926e9 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: JamFX \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 2300c9f4ba..ff07f01830 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 885e50c2b1..3b86805f3b 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 19a2f8ba76..5ac3d16911 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 30f8587f4f..704eef5b1b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index b38f6ed036..f7a837e5c3 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/el/files.po index da5d11676d..cec3fae73e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/el/files_external.po index 998ee63a19..50ec34e272 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: KAT.RAT12 \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 222efb7d98..37db8c8c4b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 eb56681071..20aa15bdee 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 e0b81349e7..56e0f0df6f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 8f707ad037..f761e53d70 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 824fba4f65..94203bbd49 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 062c140efd..ad398edaf2 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index b146ece8cd..4294d39198 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 2ce7f2bf90..1e3453f942 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/eo/files.po index 16958dfa77..119ccd0df3 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/eo/files_external.po index 0bc731dddc..255bbf8af5 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 16b0cbadb4..76058dbaa1 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 2bb018bb5b..6fec6d1338 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 d5e6c4b3db..0f50e2e721 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 35de0b4aa6..a837cd7a54 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 aaa9c8de38..220651619a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 d8e3f09075..c04ac271d7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/es/files.po index fff4273d71..fdb3ba67bf 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: qdneren \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_external.po b/l10n/es/files_external.po index 02fca2d712..56953b95d9 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Korrosivo \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 f9e4a4856f..8c9deebde0 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: Korrosivo \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 048177b134..c4e2b6a95f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Korrosivo \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 6c4bff9765..d82cf0201f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 47d1ee6303..2d1ce9506b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: qdneren \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 c8536010e7..192c1c4931 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: xhiena \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 196cf120e3..8f15d888a8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: cjtess \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.po b/l10n/es_AR/files.po index 76f45def78..83808602fb 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\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" @@ -152,7 +152,7 @@ msgstr "cancelar" #: js/filelist.js:351 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 msgid "undo" @@ -160,7 +160,7 @@ msgstr "deshacer" #: js/filelist.js:376 msgid "perform delete operation" -msgstr "Eliminar" +msgstr "Llevar a cabo borrado" #: js/filelist.js:458 msgid "1 file uploading" @@ -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" @@ -233,7 +233,7 @@ 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" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index 81b8600563..68fee9017f 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 \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 8704b5c831..d803431d02 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: cjtess \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 cd4b27ceb2..6a4106f9f0 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: cjtess \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 d9dd09148d..d65ec923d6 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 a6abbcdfcb..f6c0210c34 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"Last-Translator: cjtess \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 "" @@ -205,12 +205,12 @@ msgstr "hace %d minutos" #: template.php:116 msgid "1 hour ago" -msgstr "1 hora atrás" +msgstr "hace 1 hora" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "%d horas atrás" +msgstr "hace %d horas" #: template.php:118 msgid "today" @@ -232,7 +232,7 @@ msgstr "el mes pasado" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "%d meses atrás" +msgstr "hace %d meses" #: template.php:123 msgid "last year" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 8866ea485c..d61809a805 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: cjtess \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 30365ab088..6e9026aae6 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: cjtess \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 dba52c6d9f..32e074ab8a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/et_EE/files.po index 5e89a7254b..5c4ca44520 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: pisike.sipelgas \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_external.po b/l10n/et_EE/files_external.po index 164b9d9700..63ae848ee5 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Rivo Zängov \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 404fab9390..21bdd1d7d0 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: Rivo Zängov \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 5368210f77..bd6b4a14d7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Rivo Zängov \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 6948cb3392..8cc2edfdf0 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/et_EE/settings.po index 6f1a0a939c..586dd9d931 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: pisike.sipelgas \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 441cfc3224..da9b2443f8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: pisike.sipelgas \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 b09d1aa666..cac46120ee 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 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"Last-Translator: Piarres Beobide \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." @@ -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.
If you do " "not receive it within a reasonable amount of time, check your spam/junk " "folders.
If it is not there ask your local administrator ." -msgstr "" +msgstr "Zure pasahitza berrezartzeko lotura zure postara bidalia izan da.
Ez baduzu arrazoizko denbora \nepe batean jasotzen begiratu zure zabor-posta karpetan.
Hor ere ez badago kudeatzailearekin harremanetan ipini." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Eskaerak huts egin du!
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,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" -msgstr "" +msgstr "Kaixo

%s-ek %s zurekin partekatu duela jakin dezazun.
\nIkusi ezazu

Ongi jarraitu!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 965c000615..5d4d309ab7 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Piarres Beobide , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"Last-Translator: Piarres Beobide \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" @@ -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 @@ -231,7 +232,7 @@ 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" @@ -307,7 +308,7 @@ msgstr "Deskargatu" #: templates/index.php:80 msgid "Size (MB)" -msgstr "" +msgstr "Tamaina (MB)" #: templates/index.php:87 templates/index.php:88 msgid "Unshare" @@ -333,11 +334,11 @@ msgstr "Orain eskaneatzen ari da" #: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "direktorioa" #: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "direktorioak" #: templates/part.list.php:87 msgid "file" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index e4f24d3a7b..88b0343d8a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Piarres Beobide \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 a731cf6e62..57615b89a9 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 c4ac101956..0b6bc3ca45 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 fd225f4c5b..21198c56e4 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 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"Last-Translator: Piarres Beobide \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" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index e51f7e15c1..c3cbb69695 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"Last-Translator: Piarres Beobide \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 access your Files via WebDAV" -msgstr "" +msgstr "helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 3181fda1be..900b62d74c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 83dd85c696..175656c130 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: miki_mika1362 \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.po b/l10n/fa/files.po index 6765f3c6f8..47e7459cec 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: miki_mika1362 \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_external.po b/l10n/fa/files_external.po index 20c88c118d..fda3cc7ceb 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 1c7bf64619..80c8d92e82 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: miki_mika1362 \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 d266f1640c..ad439a3be7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 d3ce4e9f67..2c57e07eb8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index bca13ac210..46957a759e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: miki_mika1362 \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 baa868f471..6079002641 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 66a7c23fc2..347be8b3f5 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/fi_FI/files.po index 95ef52276a..cd5ee5511f 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: Jiri Grönroos \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_external.po b/l10n/fi_FI/files_external.po index a0f1c5b4b7..767c36e15d 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 1694966025..cfa927f503 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: Jiri Grönroos \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_trashbin.po b/l10n/fi_FI/files_trashbin.po index 2ab2be77f6..a85348a23e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 5cbea9c298..bbe1b6da41 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/fi_FI/settings.po index 529efacd07..5bcc28c105 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Jiri Grönroos \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/user_ldap.po b/l10n/fi_FI/user_ldap.po index 2fb2d0df89..b4c08b2946 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 7cb38657ad..56c92bb087 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/fr/files.po index f968690b62..deb38d2908 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: Adalberto Rodrigues \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_external.po b/l10n/fr/files_external.po index 2fa2cd075e..76622b1f46 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 61d91d8dda..c1854ec86e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: square \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 8c677128c1..04dda47a89 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 9da4b25f81..469520aad5 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 1b557f5e94..5611a526e7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Adalberto Rodrigues \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 fbcdded1a4..c997db8154 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: plachance \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 f416ecd5c5..8f640a7b62 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: mbouzada \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.po b/l10n/gl/files.po index fcd80350bd..09768537c4 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: mbouzada \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_external.po b/l10n/gl/files_external.po index 0c01abc1d8..4c80bae4a1 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 fde05a591c..a5cdf479d1 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: mbouzada \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 d3bf7212dd..40676719ac 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 2ac52369ab..fcc13f077f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 16af4da982..811bb00385 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: mbouzada \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 6ca4641acf..f3eb52df5d 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: mbouzada \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 16ea965584..773390eafb 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/he/files.po index dd4ead6bcb..fc87041eb4 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/he/files_external.po index af6ec04e7b..284a3aeb3f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 3bd4c172a5..6dbfdb0436 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 8432d4e2f1..270cb2b53f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Yaron Shahrabani \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 ef9a5241ed..debbb0c8d5 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 50999754ab..ebe3799cd6 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 5ca2911ffe..54d4be77b0 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 abd0f37f94..bb97e5198a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 871e859da4..e639301602 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 5ce13845b9..8aa9417334 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 303b5c5dc2..a266be5d02 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-17 06:32+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-18 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index bdabe42ee7..22b4cd9d1f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 f5ea5247e6..8614dd9fb9 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 da7280beee..3e7d08b181 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/hr/files.po index dfc63b239c..b45f5030cb 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hr/files_external.po index 4f7f397cb2..3403080755 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 d93f65f7a1..244808c3ba 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 7b70b3adf3..c985fd102a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 1577e5bf9b..f8987c9e02 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 587d791ccd..905492a245 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 14bfc5d6ed..f13e58aec1 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 6361680818..64e12ef516 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Laszlo Tornoci \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.po b/l10n/hu_HU/files.po index 4e3974d65f..49139aacc7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: Laszlo Tornoci \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_external.po b/l10n/hu_HU/files_external.po index d461b3eb6a..2f0cf94109 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Laszlo Tornoci \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 8c19e15bb4..d0e152c90b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: Laszlo Tornoci \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 76559191a6..638459e013 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 6dca6f5284..96594eb4fc 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/hu_HU/settings.po index c84beceb35..f945826938 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Laszlo Tornoci \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 a9549d9949..ed300f52df 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Laszlo Tornoci \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 098df5562b..d912359a80 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hy/files_external.po index 1890321401..a4c32de222 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-18 01:54-0400\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 4bee7298cf..76f876fb9e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 d1859da7b2..7393ac6563 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-18 01:54-0400\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 52699c5f6a..b3ef47822a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 a937ba1f2e..3edc6923ed 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ia/files.po index 4b6bf3a773..c2f3399a81 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ia/files_external.po index 3ea187206c..0f5f6a0c39 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 2581a7dd87..a8b8325a0f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 c273cd4d04..9f5ef06ed6 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 af22bb09a3..32268b455b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 116e1eb6da..600769c4c0 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 2ccf06bbeb..11c39baaad 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 fb92947d5f..83ab136b25 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/id/files.po index 7a0e07cff8..0c004f7366 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/id/files_external.po index b40e8c01b9..fcdddfc798 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 d85898974e..35910e424b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 805542c17e..99a3b8bf0c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 58e500fb43..0876f8212c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 56f3523159..ff2765ba82 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 c47c6b6b67..4de17cde59 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 2c9fe4f552..7ebfaaaa36 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/is/files.po index a1227b0ad8..fdc0e25b4d 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/is/files_external.po index 9ae800ee62..2d2b6241a9 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 cf5e910501..027f6ce6ac 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 1a6469d7ca..770e652293 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 c8463fabf1..64c2e4860d 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 695efe70a5..72c34d0ee3 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 4fb7644a95..bff7f989f7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Magnus Magnusson \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 b9cd0e79cd..054fb280ab 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Vincenzo Reale \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.po b/l10n/it/files.po index 556864d77e..2408889615 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: Vincenzo Reale \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_external.po b/l10n/it/files_external.po index 13f131f9ad..5fd3f3b3e7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Vincenzo Reale \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 3499825517..0dfd047714 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: Vincenzo Reale \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 1912f079ec..4cbfe3d4e4 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Vincenzo Reale \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 d67414ce95..16ad01c56c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 3e7d46cebf..b2c6ae33da 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Vincenzo Reale \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 65f015cf1d..d02a15534f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Vincenzo Reale \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 968d0c2c5a..0c177f48c8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Daisuke Deguchi \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.po b/l10n/ja_JP/files.po index 546458363d..501fb1423b 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: pabook \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_external.po b/l10n/ja_JP/files_external.po index c93b515bfb..3040868ed7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 4a4bae428d..d92aec6bd7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: tt yn \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 12fc4726db..52087970ab 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 7e4acde005..45a27b7fcb 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ja_JP/settings.po index 4c6da07364..4f5aff9055 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Daisuke Deguchi \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 6f986b3d74..d77be516c5 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Daisuke Deguchi \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 fd75dd952c..7981fb8e21 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 20fd7889fe..14851b48c5 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 efec31710c..b51e7ea282 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ka_GE/files.po index 30ba900881..91206aa89e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ka_GE/files_external.po index f23b508fb4..f79775aa63 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: drlinux64 \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 11873902bb..fb94ff9a83 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 4986baa8c1..fa81830dd3 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: drlinux64 \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 041274223e..8ae2e7108a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ka_GE/settings.po index c1ec86b1a1..5ace82ac31 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 4b8dad667b..417885617e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/ko/core.po b/l10n/ko/core.po index 09b4b1a0a9..f196f9484e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ko/files.po index c0be97468e..8778b4df41 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ko/files_external.po index e37c82d4e9..6726d4bec2 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Shinjo Park \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 3b02373c19..71bffaedcf 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 78709c2fe9..02a5e3fd31 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 4d0efb48b2..8bd4cc6d3e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 7b8451f100..909c65f6e3 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 cb7c93819d..ab480654fc 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 f80d255d5b..8f644c79dc 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ku_IQ/files.po index ab175a3847..754948d25b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_sharing.po b/l10n/ku_IQ/files_sharing.po index afc94007ac..392b4bb0c7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 2546834889..eb78f56664 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 6780ef4194..050b4be809 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-17 06:32+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-18 06:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ku_IQ/settings.po index c4657aa25b..ec0320306f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 9861e7e114..b80e61d34f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 2c31f3e452..e029ee5c52 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/lb/files.po index 1facf9d9e4..0ef509663e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lb/files_external.po index ce6e2dcb9d..850d04a247 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 4de0753459..387a2d1dc8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: llaera \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 2153783837..99fed57a49 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 88245025b7..9ede91bbb2 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index b270ae29ba..4b39c5921d 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 3b2ee12236..0f0b1d1c05 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 ca47542aa6..d83f776c27 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/lt_LT/files.po index 3558b00c65..7af918aaaa 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lt_LT/files_external.po index 28d9944579..355733ac9b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Min2liz \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 7964ea771f..4a4d45505f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 22d7187418..a84fa8fb01 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: fizikiukas \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 ba8209ab02..588c652c2b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/lt_LT/settings.po index a586744f18..da0b7ac79a 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: fizikiukas \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/user_ldap.po b/l10n/lt_LT/user_ldap.po index e0913778c6..2f3f999282 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 596063a8c9..0d825b4879 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/lv/files.po index 9a4f023d01..69f6355d18 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lv/files_external.po index 37010aca0b..eaaf7dcf1c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 84e84ebb6f..3686497b40 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 79221726cb..dec41308bb 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 0542340ccc..e6919f5ae2 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index de3646dcb1..0e1aa6eaf0 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 36a3cf4d28..adc02d300c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 f269af81f3..6202e7a3cb 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/mk/files.po index 110fcf9b2a..4ec20f8388 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/mk/files_external.po index 89c9c7003b..f9c5aefe50 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 79f8fb86ba..6cae987aea 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 8089e6bada..c0c7d92ea4 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 d6eeddede1..2221036471 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 57f5ee078d..1c205c3e8f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 77138bf079..37a9b4cd8b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 2e8defd041..116dce2951 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ms_MY/files.po index 8c5874f665..966bed94f7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ms_MY/files_external.po index ca899e9a54..46589e4067 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 0d06f66a98..5261118924 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 38152cfc78..69bd1f524f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 46919ef9e2..159b2a719a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ms_MY/settings.po index a2b3bfed7d..15d1b88ba2 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 bae8baec54..5e8b6d16b3 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 c3b11c007d..b5c58c4258 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/my_MM/files.po index e735e16c20..461ab507fc 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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/files_sharing.po b/l10n/my_MM/files_sharing.po index 9281093e69..a68345c20a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 fa9116e505..46bb573269 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/nb_NO/core.po b/l10n/nb_NO/core.po index 64b9a7feb8..8bb1cc96ae 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/nb_NO/files.po index 2becc73958..f88b823908 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: Stein-Aksel Basma \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_external.po b/l10n/nb_NO/files_external.po index dd46b97e29..d6157d8b40 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 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 323be352c7..03af661d88 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: Stein-Aksel Basma \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_trashbin.po b/l10n/nb_NO/files_trashbin.po index 2b6b965236..31c838e9f4 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 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 603594ebf5..bb2791a3c5 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/nb_NO/settings.po index dc807c6be9..d12c39addd 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Stein-Aksel Basma \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/user_ldap.po b/l10n/nb_NO/user_ldap.po index 868afb47e6..3bab2162de 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/nl/core.po b/l10n/nl/core.po index 2a79ca3b8f..3552a505cf 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/nl/files.po index def66643a8..08fd35bc5e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nl/files_external.po index 8235d4de51..8148be3faf 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: André Koot \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 2bb1cd23eb..66b04ef6c4 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/nl/files_trashbin.po index 92cef654a5..86a0bd2a3d 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 dd8de2386a..1bb4aeceea 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index c40572309f..bf26b5f9a5 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index e928be33bc..ccf0c60666 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: André Koot \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 c2cf1e60e6..4dfcdb6aff 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/nn_NO/files.po index 8fd60974c1..2007aecb39 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nn_NO/files_external.po index a6d4331aa8..3fb1db67c5 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 ece03b998d..cfe3834ac1 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 03be1f592c..7c44e98a00 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: unhammer \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 cd95c4d7d1..253d2472bf 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/nn_NO/settings.po index e757b69010..d14e632a95 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 63a41c217b..99eb7c7e21 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 9076a0b2d8..96a7c9bceb 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/oc/files.po index 3e04a95bce..a82095ca0e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/oc/files_external.po index c988745fe3..499102565c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 65215e3845..4bf90bab21 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 e3da0eb9ce..c92ed11371 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 4408f700fd..6f22f0555d 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-17 06:32+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-18 06:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/oc/settings.po index 72d13196a2..a58cc5bbe3 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 80b585c88c..72ebeac970 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 21f5598e83..af1ae2333a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/pl/files.po index 4cd39a2863..a25e16e2c7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/pl/files_external.po index 2a8a390ada..f711177cf0 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index d544495f6f..77db4b91f8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 ff3f248965..6f6c478ae1 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 d76d6db56a..1fc82825b6 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 43f8859c53..851cc65aeb 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 30b5511570..60f4974d10 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: orcio6 \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 752b8a1c37..005ef922be 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/pt_BR/files.po index 27fb5fb854..12cff99dbd 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: Flávio Veras \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_external.po b/l10n/pt_BR/files_external.po index 0df8ed3d84..eb70940b39 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Flávio Veras \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 ab060dbf1e..9e7598c594 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: Flávio Veras \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 30a17408cc..6d9e7d14df 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 d783fa2119..7abb079bd0 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/pt_BR/settings.po index 6b68d93704..e4820c9975 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: bjamalaro \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 07c2c73f82..74295345e7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Flávio Veras \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 e780a4d4f3..45019f9d21 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -415,7 +415,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "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" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 2c90f91ff6..97ff924f39 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: FernandoMASilva\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 98ac280259..615035dc3b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Mouxy \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 bb6a7144c8..8880a809d3 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 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"Last-Translator: moliveira \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 021a20f9a3..484791c466 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 1a49cfb1aa..8f5085dd26 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/pt_PT/settings.po index d46dcc9b59..cbcee56774 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: Helder Meneses \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/user_ldap.po b/l10n/pt_PT/user_ldap.po index a96580b13e..f5caa763b7 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Bruno Martins \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index aa1a719569..79f2b7a294 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ro/files.po index b51283856d..21502e4fde 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ro/files_external.po index a109acf711..8ee00063fc 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 9b50acebbd..7abc5e2aa4 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: sergiu_sechel \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 630472fefd..91d8c37826 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 867b3021b1..57de4ff1a1 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 06231a5799..17dc6694b2 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 28e302eb06..e967ef7dd5 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 3cd5bac92a..01f36a74d8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 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" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index c873c82c44..e0a48f44f4 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: hackproof \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_external.po b/l10n/ru/files_external.po index 74d5e95f92..e9d4982a6b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 ada29069ac..03e420c5aa 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+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 d7c65c9ef4..d7b1e7bd6a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 5e7332dd81..6a37540f61 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index c2371c70e8..d46285295b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: hackproof \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 1d16ef9873..c7885c00c2 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: alfsoft \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 b78f6deeb9..0ce0387932 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/si_LK/files.po index cc21c2a9b9..02890343dc 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/si_LK/files_external.po index aadfbcb205..3de7d428b9 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 928f76cfbe..10bf4aafa5 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 a99cd97d80..3c482f798c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 b83dbf33f0..31634b329c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/si_LK/settings.po index 966dc0dbb7..f5ec3ac358 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 1725dc7437..f77986639b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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_SK/core.po b/l10n/sk_SK/core.po index fa3adbf5ae..e84e9fea1d 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: mhh \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.po b/l10n/sk_SK/files.po index f6225d9b8e..5810589234 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sk_SK/files_external.po index db07e95c10..09b41283b6 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: mhh \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 118c23d6b6..c864566fb3 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 8531047a41..77a8f14daf 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 1415eeea6a..a2c5baee8c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/sk_SK/settings.po index ce6728388c..724b72bac7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: mhh \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 65eb2f6e01..a35af1f451 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: mhh \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 a1e4d26f20..9880f11c17 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/sl/files.po index cea4af0949..51f94a1eb0 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sl/files_external.po index 37df1b206d..99866c8bf6 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 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 c7616d768d..a3cd9032e1 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 053def2f26..1619742d97 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 7de932530c..fcb213e1fc 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index f43b120693..0924e23452 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 781fbb1a20..824f737e09 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: barbarak \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 dbcbea0d11..a43fed4e5d 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/sq/files.po index 8e4e44f3a6..84ea7161eb 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sq/files_external.po index c509d6b750..878a86541c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:11+0000\n" "Last-Translator: I Robot \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 65c36d4f2b..7b8f9706d9 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 fa7443e984..454851b70e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 e941be08ad..9c77dd01d5 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 160b780b3f..1be7c4609a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 9c536410a5..1ed0fa89eb 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 2ac39e4678..964fdeaea8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr/files.po index f689b0029c..09acda02f4 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sr/files_external.po index c258c75d66..a8afa66258 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 d4999202b4..ad0183bff9 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 34f196886e..7a7977f800 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 017afe64d0..d60d1cac5f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 6c2ac2a4ee..8197beaeac 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 27959e936a..2d32a93316 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 ff78efd33b..a90a99d46e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr@latin/files.po index c667e64673..de2172af62 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sr@latin/files_external.po index 60aa350987..f4e3974abd 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 eafced9ca9..5a41739b6a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 34d53e4132..403873f11f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 cd8a30edd9..8fb900b69f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/sr@latin/settings.po index 5a0b07dd43..f73581fc42 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 0e2df8d04a..2cc578e04e 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 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" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index e4af1fac05..7527f36c16 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+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_external.po b/l10n/sv/files_external.po index 0435b10826..3fd5fea56a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 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 08a2f2e310..25f6389d83 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/sv/files_trashbin.po index f53c5cef0b..4ddb3f8f5a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 fad5520371..c65eced61d 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 9b00510661..de768d1c77 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 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" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index ac065f21e7..7ff9152923 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 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/ta_LK/core.po b/l10n/ta_LK/core.po index 2212c68cda..32eb3a7886 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ta_LK/files.po index 37ccc1d169..7d414e484e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ta_LK/files_external.po index 5b927fc227..b06aa5ce31 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 d08e091cad..25ee1aa735 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 db4efda280..d82aa9fc49 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 9b8547b022..9153edc165 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ta_LK/settings.po index 0edbd76f53..a70315df71 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 3ff1305ffd..c3e128ac29 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 aaa277b655..a05f7295de 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/te/files.po index ed3cf2a2a3..72c4a2445b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/te/files_external.po index 43c3519fc9..3cd2b3812c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:11+0000\n" "Last-Translator: I Robot \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 07cf09abf0..b5b8e855aa 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 39b45b8f9b..e9b4f72390 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-17 06:32+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-18 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 613892b9cb..b6a476774e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 d716575962..a64614b2dd 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 a9f63c174d..a2ee80d62a 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-18 01:54-0400\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index e9dd34cfe3..8ad4a6aff3 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-18 01:54-0400\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 8e48bead1f..4f36dde431 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-18 01:54-0400\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 8faebc508a..63a357c0ac 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-18 01:54-0400\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 626b90c100..71874df5cd 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-18 01:54-0400\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 710a03e6b0..8692bf4502 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-18 01:54-0400\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 55eeb3aac4..31ef6005cb 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-18 01:54-0400\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 9b444fa7ca..a80511496e 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-18 01:54-0400\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 14bf5d1c48..021015e57d 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-18 01:54-0400\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 63fcdf30fc..bf73e6008f 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-18 01:54-0400\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 2941e805e6..a4a500fc16 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-18 01:54-0400\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 61ce81a946..d9d2ca87c1 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/th_TH/files.po index 7d47bb60a9..8d6de4ef9b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/th_TH/files_external.po index 407b2d8dd4..5f6b0e911f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 a8b01bc888..3710fa0a3f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 46ef8437b5..b465f3e9ea 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 be7337a02f..9d8adbc6c1 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/th_TH/settings.po index ab0ec15d59..f820197fe1 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 c2a66e127f..4bbce3ef24 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 c3b3886b6d..e21f0808eb 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/tr/files.po index fc714dd73c..8d3aecdc52 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/tr/files_external.po index 255f235d7e..dad2d74618 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 0360568a51..7aa8c21a58 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 bd9439245b..ff1ad7afad 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 00a3d8f494..843c4eb01c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 903997a292..89cde08001 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 69e290a4a1..3ff9c71972 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: ismail yenigül \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 fb3032ad22..dccbc79836 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index fd3b50d240..6b50370801 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index c88c158c82..beced96063 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index db441ab1a2..d757c51e3f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 7623e8187d..96f4e22f91 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 327ba28f5f..f4fb9c4ec6 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 78482c344f..9872e4efac 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 85a3311d73..5341980e6a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index f0f813ab71..4e814717bd 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/uk/files.po index 1f489ef683..356c57a82a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/uk/files_external.po index d687284d76..f3c58d4803 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 4f94816dc5..9b5f7e0fd8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 30f5e26c20..fbdfc8682d 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 aa02d73043..ffd0f570cd 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 5bad8f3bf2..ffd7c747d5 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 8cce1983f8..5017cbd85a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 9b9cec50f0..ebd975497c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/ur_PK/files.po index 58c9ef3979..938dce7698 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 31ec5f32c6..dca829bd42 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 71243de70c..83d6ce32c0 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-17 06:32+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-18 06:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ur_PK/settings.po index 79a466c956..c4a1ccc496 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 1bf8b006ee..be9edfef71 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 1b0d637b55..595f4bc1f0 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/vi/files.po index 5090d6b147..f45b029280 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/vi/files_external.po index 98eb96cb4f..e53c628419 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: xtdv \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 3c746275f4..bae468b253 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 c83f00f96d..5921d00bac 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 6a305525b1..03785a1b5d 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 1884fcaff7..97074bd913 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 3c9f0208e1..274ab9a7a1 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 42bd591bd4..d63975391e 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN.GB2312/files.po index d5c74fe1a1..f1b6d9312d 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: hlx98007 \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_external.po b/l10n/zh_CN.GB2312/files_external.po index c59411c8d0..65f400c11a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: hyy0591 \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 7839e27f35..c865709a83 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 0d3953e7d1..b2871fbb45 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 49d2c576d9..cbdf210e7f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_CN.GB2312/settings.po index 7294150f2a..863b0a6050 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: hlx98007 \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 8b41ce08b1..1b40ce072c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 79d2870d3c..b54111f01a 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN/files.po index 95318098fc..14ce013aa8 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/zh_CN/files_external.po index a9005362f1..08181b79bc 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 897b7cb420..4806441dda 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 b44006f850..c8de7318f3 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 4789dd87b3..91a9b62b1c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_CN/settings.po index 513d91296b..a2fd5613c2 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 d5bba31ca9..20fe068d29 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: modokwang \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 0cf41e252d..d89d1d5fe7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_HK/files.po index c80aa5e169..36acc6f689 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/zh_HK/files_external.po index c9300be89c..763b08f95f 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 5ec31334f0..5ccfb5fcd0 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 3746a148e4..eb9d0c86a7 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 f5130f387a..26f857a1d4 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_HK/settings.po index c57502b8ed..4ecfbd1f55 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: I Robot \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 bde4fe41d6..db5ebe82cb 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 ef8de5c5d2..a39da23626 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:14+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: pellaeon \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.po b/l10n/zh_TW/files.po index cfb730d8f3..e5e24b852c 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: pellaeon \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_external.po b/l10n/zh_TW/files_external.po index 584f7621bb..e0d900e603 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: pellaeon \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 151c9801c1..0107a2e95b 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:31+0000\n" "Last-Translator: I Robot \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 3b20571053..9f1bc9f49c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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 03de954ba8..21dd00da14 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_TW/settings.po index 43a423edd0..a4e6fedc63 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:15+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:24+0000\n" "Last-Translator: pellaeon \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_ldap.po b/l10n/zh_TW/user_ldap.po index 80294f58c9..daf0d5073c 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-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-18 05:16+0000\n" +"POT-Creation-Date: 2013-07-19 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 05:25+0000\n" "Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index e66771f7e7..cd1a0fbb53 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 installation guides." => "Por favor, comprobá nuevamente la guía de instalación.", "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 028ad0a631..131ac6d7da 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/settings/l10n/eu.php b/settings/l10n/eu.php index 4cf22c06a9..94751d916b 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 access your Files via WebDAV" => "helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko", "Login Name" => "Sarrera Izena", "Create" => "Sortu", "Admin Recovery Password" => "Kudeatzaile pasahitz berreskuratzea", From 9379cbf602362443f1084303c50234470acd15b7 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 19 Jul 2013 11:23:47 +0200 Subject: [PATCH 090/108] Add OC_Image to public api --- lib/installer.php | 1 + lib/public/image.php | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 lib/public/image.php diff --git a/lib/installer.php b/lib/installer.php index 2229559208..97f4e2b5fb 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -449,6 +449,7 @@ class OC_Installer{ 'OC_Files::', 'OC_Helper::', 'OC_Hook::', + 'OC_Image::', 'OC_JSON::', 'OC_Log::', 'OC_Mail::', diff --git a/lib/public/image.php b/lib/public/image.php new file mode 100644 index 0000000000..dcecc077e2 --- /dev/null +++ b/lib/public/image.php @@ -0,0 +1,29 @@ + +* +* 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 . +* +*/ + +namespace OCP; + +/** + * This class provides functions to handle images + */ +class Image extends OC_Image { +} From a22940d3cd461a4d8f48b9bbd6eecbb380837d21 Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 19 Jul 2013 11:40:11 +0200 Subject: [PATCH 091/108] Add OC_L10N to public api --- lib/installer.php | 1 + lib/public/util.php | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/lib/installer.php b/lib/installer.php index 97f4e2b5fb..dcd29f9e1a 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -451,6 +451,7 @@ class OC_Installer{ 'OC_Hook::', 'OC_Image::', 'OC_JSON::', + 'OC_L10N::', 'OC_Log::', 'OC_Mail::', 'OC_Preferences::', diff --git a/lib/public/util.php b/lib/public/util.php index 6744c2d37b..cad1c5fd64 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 From 2656ac9eeb499010139a922f9db70d1e952a8d21 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Mon, 15 Jul 2013 18:07:43 +0200 Subject: [PATCH 092/108] non-ajax Upgrade script utility, usable via CLI or wget. Requires PR 4047. --- upgrade.php | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 upgrade.php diff --git a/upgrade.php b/upgrade.php new file mode 100644 index 0000000000..abdff1c9fb --- /dev/null +++ b/upgrade.php @@ -0,0 +1,76 @@ +. +* +*/ + +$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 : '
'; + +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; + }); + $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; + } +} From a8dfee04b88132f0be8807c53562ef4f0ad5a7fc Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 17 Jul 2013 17:32:43 +0200 Subject: [PATCH 093/108] Add message about completed update --- upgrade.php | 1 + 1 file changed, 1 insertion(+) diff --git a/upgrade.php b/upgrade.php index abdff1c9fb..518b514cd8 100644 --- a/upgrade.php +++ b/upgrade.php @@ -40,6 +40,7 @@ if(OC::checkUpgrade(false)) { }); $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; From 35fc149ef09531f5dcd623fae8ddf000adafb77c Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Fri, 19 Jul 2013 15:17:28 +0200 Subject: [PATCH 094/108] deactivate show password toggle for IE --- core/css/styles.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/core/css/styles.css b/core/css/styles.css index ca2d082eb3..7d927da151 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; +} From 02cdd52fb0f4e6544f6f0df2a9d4da3c944e3109 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 19 Jul 2013 16:32:43 +0200 Subject: [PATCH 095/108] Make Cache\Scanner an emitter --- lib/files/cache/scanner.php | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index 9b94a24f48..bcd6032fca 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(); From b397df202290fa29f506e3394a80164725e2e8e1 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 19 Jul 2013 16:33:00 +0200 Subject: [PATCH 096/108] add option to get the mountmanager from the filesystem --- lib/files/filesystem.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index 1bf7270c7f..d6ebe7d629 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -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 From 2b89b7c88046f8eb8d2676d0a455ca0d0ba50eeb Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Fri, 19 Jul 2013 16:44:47 +0200 Subject: [PATCH 097/108] Split scanning logic from ajax file --- apps/files/ajax/scan.php | 82 ++++++++++++++-------------------- lib/eventsource.php | 2 +- lib/files/utils/scanner.php | 89 +++++++++++++++++++++++++++++++++++++ 3 files changed, 123 insertions(+), 50 deletions(-) create mode 100644 lib/files/utils/scanner.php diff --git a/apps/files/ajax/scan.php b/apps/files/ajax/scan.php index 0706d4e782..5b32b6db9b 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; - - /** - * @var \OC\Files\View $view - */ - static public $view; - - /** - * @var array $mountPoints map storage ids to mountpoints - */ - static public $mountPoints = array(); + private $fileCount = 0; + private $lastCount = 0; /** * @var \OC_EventSource event source to pass events to */ - static public $eventSource; + private $eventSource; - static function folder($params) { - $internalPath = $params['path']; - $mountPoint = self::$mountPoints[$params['storage']]; - $path = self::$view->getRelativePath($mountPoint . $internalPath); - self::$eventSource->send('folder', $path); + /** + * @param \OC_EventSource $eventSource + */ + public function __construct($eventSource) { + $this->eventSource = $eventSource; } - 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); + /** + * @param string $path + */ + public function folder($path) { + $this->eventSource->send('folder', $path); + } + + 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/lib/eventsource.php b/lib/eventsource.php index 31d6edc187..a83084d925 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/utils/scanner.php b/lib/files/utils/scanner.php new file mode 100644 index 0000000000..800bb64993 --- /dev/null +++ b/lib/files/utils/scanner.php @@ -0,0 +1,89 @@ + + * 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); + } + } +} + From cbe1c22b5f027d010c1b6bb5d27d79526261f76a Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 19 Jul 2013 17:32:31 +0200 Subject: [PATCH 098/108] Correct casing of OC_User and pass through the params to getUsers --- lib/public/user.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/public/user.php b/lib/public/user.php index 9edebe0e7c..23ff991642 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 ); } /** From 11f28d78805674ea06ef9227cf922140bff4a4ae Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 19 Jul 2013 17:37:42 +0200 Subject: [PATCH 099/108] Result of && if not the part --- lib/template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/template.php b/lib/template.php index 9ad1a330d4..9b16ed9466 100644 --- a/lib/template.php +++ b/lib/template.php @@ -181,7 +181,7 @@ class OC_Template{ $this->renderas = $renderas; $this->application = $app; $this->vars = array(); - $this->vars['requesttoken'] = OC::$session && 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]); From f6d133955e2adde02d3ee1a1065232b6315fafac Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Tue, 18 Jun 2013 20:03:59 +0200 Subject: [PATCH 100/108] LDAP: fix background job, resolves #3528 --- apps/user_ldap/lib/jobs.php | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/apps/user_ldap/lib/jobs.php b/apps/user_ldap/lib/jobs.php index 60ecc0da33..d626afed6c 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; } From 48267b6e6ce5bb772c86a6210ddfeac2d1dff3c6 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sat, 20 Jul 2013 01:15:12 +0200 Subject: [PATCH 101/108] add back public API function, but mark as deprecated --- lib/public/template.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/public/template.php b/lib/public/template.php index d81a169579..1c13867197 100644 --- a/lib/public/template.php +++ b/lib/public/template.php @@ -76,6 +76,16 @@ function relative_modified_date($timestamp) { } +/** + * @brief DEPRECATED Return a human readable outout for a file size. + * @param $byte size of a file in byte + * @returns human readable interpretation of a file size + */ +function simple_file_size($bytes) { + return(\human_file_size($bytes)); +} + + /** * @brief Generate html code for an options block. * @param $options the options From fb6283537fb21b4c5c3863038392a98edc11fb6d Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 20 Jul 2013 02:02:50 -0400 Subject: [PATCH 102/108] [tx-robot] updated from transifex --- l10n/af_ZA/core.po | 4 ++-- l10n/af_ZA/lib.po | 4 ++-- l10n/ar/core.po | 4 ++-- l10n/ar/files.po | 4 ++-- l10n/ar/files_external.po | 4 ++-- l10n/ar/files_sharing.po | 4 ++-- l10n/ar/files_trashbin.po | 4 ++-- l10n/ar/lib.po | 4 ++-- l10n/ar/settings.po | 4 ++-- l10n/ar/user_ldap.po | 4 ++-- l10n/bg_BG/core.po | 4 ++-- l10n/bg_BG/files.po | 4 ++-- l10n/bg_BG/files_external.po | 4 ++-- l10n/bg_BG/files_sharing.po | 4 ++-- l10n/bg_BG/files_trashbin.po | 4 ++-- l10n/bg_BG/lib.po | 4 ++-- l10n/bg_BG/settings.po | 4 ++-- l10n/bg_BG/user_ldap.po | 4 ++-- l10n/bn_BD/core.po | 4 ++-- l10n/bn_BD/files.po | 4 ++-- l10n/bn_BD/files_external.po | 4 ++-- l10n/bn_BD/files_sharing.po | 4 ++-- l10n/bn_BD/files_trashbin.po | 4 ++-- l10n/bn_BD/lib.po | 4 ++-- l10n/bn_BD/settings.po | 4 ++-- l10n/bn_BD/user_ldap.po | 4 ++-- l10n/bs/core.po | 4 ++-- l10n/bs/files.po | 4 ++-- l10n/bs/files_trashbin.po | 4 ++-- l10n/ca/core.po | 4 ++-- l10n/ca/files.po | 4 ++-- l10n/ca/files_external.po | 4 ++-- l10n/ca/files_sharing.po | 4 ++-- l10n/ca/files_trashbin.po | 4 ++-- l10n/ca/lib.po | 4 ++-- l10n/ca/settings.po | 4 ++-- l10n/ca/user_ldap.po | 4 ++-- l10n/cs_CZ/core.po | 4 ++-- l10n/cs_CZ/files.po | 4 ++-- l10n/cs_CZ/files_external.po | 4 ++-- l10n/cs_CZ/files_sharing.po | 4 ++-- l10n/cs_CZ/files_trashbin.po | 4 ++-- l10n/cs_CZ/lib.po | 4 ++-- l10n/cs_CZ/settings.po | 4 ++-- l10n/cs_CZ/user_ldap.po | 4 ++-- l10n/cy_GB/core.po | 4 ++-- l10n/cy_GB/files.po | 4 ++-- l10n/cy_GB/files_external.po | 4 ++-- l10n/cy_GB/files_sharing.po | 4 ++-- l10n/cy_GB/files_trashbin.po | 4 ++-- l10n/cy_GB/lib.po | 4 ++-- l10n/cy_GB/settings.po | 4 ++-- l10n/cy_GB/user_ldap.po | 4 ++-- l10n/da/core.po | 4 ++-- l10n/da/files.po | 4 ++-- l10n/da/files_external.po | 4 ++-- l10n/da/files_sharing.po | 4 ++-- l10n/da/files_trashbin.po | 4 ++-- l10n/da/lib.po | 4 ++-- l10n/da/settings.po | 4 ++-- l10n/da/user_ldap.po | 4 ++-- l10n/de/core.po | 4 ++-- l10n/de/files.po | 4 ++-- l10n/de/files_external.po | 4 ++-- l10n/de/files_sharing.po | 4 ++-- l10n/de/files_trashbin.po | 4 ++-- l10n/de/lib.po | 4 ++-- l10n/de/settings.po | 4 ++-- l10n/de/user_ldap.po | 4 ++-- l10n/de_DE/core.po | 4 ++-- l10n/de_DE/files.po | 4 ++-- l10n/de_DE/files_external.po | 4 ++-- l10n/de_DE/files_sharing.po | 4 ++-- l10n/de_DE/files_trashbin.po | 4 ++-- l10n/de_DE/lib.po | 4 ++-- l10n/de_DE/settings.po | 4 ++-- l10n/de_DE/user_ldap.po | 4 ++-- l10n/el/core.po | 4 ++-- l10n/el/files.po | 4 ++-- l10n/el/files_external.po | 4 ++-- l10n/el/files_sharing.po | 4 ++-- l10n/el/files_trashbin.po | 4 ++-- l10n/el/lib.po | 4 ++-- l10n/el/settings.po | 4 ++-- l10n/el/user_ldap.po | 4 ++-- l10n/en@pirate/files.po | 4 ++-- l10n/en@pirate/files_sharing.po | 4 ++-- l10n/eo/core.po | 4 ++-- l10n/eo/files.po | 4 ++-- l10n/eo/files_external.po | 4 ++-- l10n/eo/files_sharing.po | 4 ++-- l10n/eo/files_trashbin.po | 4 ++-- l10n/eo/lib.po | 4 ++-- l10n/eo/settings.po | 4 ++-- l10n/eo/user_ldap.po | 4 ++-- l10n/es/core.po | 4 ++-- l10n/es/files.po | 4 ++-- l10n/es/files_external.po | 4 ++-- l10n/es/files_sharing.po | 4 ++-- l10n/es/files_trashbin.po | 4 ++-- l10n/es/lib.po | 4 ++-- l10n/es/settings.po | 4 ++-- l10n/es/user_ldap.po | 4 ++-- l10n/es_AR/core.po | 4 ++-- l10n/es_AR/files.po | 4 ++-- l10n/es_AR/files_external.po | 4 ++-- l10n/es_AR/files_sharing.po | 4 ++-- l10n/es_AR/files_trashbin.po | 4 ++-- l10n/es_AR/lib.po | 4 ++-- l10n/es_AR/settings.po | 4 ++-- l10n/es_AR/user_ldap.po | 4 ++-- l10n/et_EE/core.po | 4 ++-- l10n/et_EE/files.po | 4 ++-- l10n/et_EE/files_external.po | 4 ++-- l10n/et_EE/files_sharing.po | 4 ++-- l10n/et_EE/files_trashbin.po | 4 ++-- l10n/et_EE/lib.po | 4 ++-- l10n/et_EE/settings.po | 4 ++-- l10n/et_EE/user_ldap.po | 4 ++-- l10n/eu/core.po | 4 ++-- l10n/eu/files.po | 4 ++-- l10n/eu/files_external.po | 4 ++-- l10n/eu/files_sharing.po | 4 ++-- l10n/eu/files_trashbin.po | 4 ++-- l10n/eu/lib.po | 4 ++-- l10n/eu/settings.po | 4 ++-- l10n/eu/user_ldap.po | 4 ++-- l10n/fa/core.po | 4 ++-- l10n/fa/files.po | 4 ++-- l10n/fa/files_external.po | 4 ++-- l10n/fa/files_sharing.po | 4 ++-- l10n/fa/files_trashbin.po | 4 ++-- l10n/fa/lib.po | 4 ++-- l10n/fa/settings.po | 4 ++-- l10n/fa/user_ldap.po | 4 ++-- l10n/fi_FI/core.po | 4 ++-- l10n/fi_FI/files.po | 4 ++-- l10n/fi_FI/files_external.po | 4 ++-- l10n/fi_FI/files_sharing.po | 4 ++-- l10n/fi_FI/files_trashbin.po | 4 ++-- l10n/fi_FI/lib.po | 4 ++-- l10n/fi_FI/settings.po | 4 ++-- l10n/fi_FI/user_ldap.po | 4 ++-- l10n/fr/core.po | 4 ++-- l10n/fr/files.po | 4 ++-- l10n/fr/files_external.po | 4 ++-- l10n/fr/files_sharing.po | 4 ++-- l10n/fr/files_trashbin.po | 4 ++-- l10n/fr/lib.po | 4 ++-- l10n/fr/settings.po | 4 ++-- l10n/fr/user_ldap.po | 4 ++-- l10n/gl/core.po | 4 ++-- l10n/gl/files.po | 4 ++-- l10n/gl/files_external.po | 4 ++-- l10n/gl/files_sharing.po | 4 ++-- l10n/gl/files_trashbin.po | 4 ++-- l10n/gl/lib.po | 4 ++-- l10n/gl/settings.po | 4 ++-- l10n/gl/user_ldap.po | 4 ++-- l10n/he/core.po | 4 ++-- l10n/he/files.po | 4 ++-- l10n/he/files_external.po | 4 ++-- l10n/he/files_sharing.po | 4 ++-- l10n/he/files_trashbin.po | 4 ++-- l10n/he/lib.po | 4 ++-- l10n/he/settings.po | 4 ++-- l10n/he/user_ldap.po | 4 ++-- l10n/hi/core.po | 4 ++-- l10n/hi/files.po | 4 ++-- l10n/hi/files_trashbin.po | 4 ++-- l10n/hi/lib.po | 4 ++-- l10n/hi/settings.po | 4 ++-- l10n/hi/user_ldap.po | 4 ++-- l10n/hr/core.po | 4 ++-- l10n/hr/files.po | 4 ++-- l10n/hr/files_external.po | 4 ++-- l10n/hr/files_sharing.po | 4 ++-- l10n/hr/files_trashbin.po | 4 ++-- l10n/hr/lib.po | 4 ++-- l10n/hr/settings.po | 4 ++-- l10n/hr/user_ldap.po | 4 ++-- l10n/hu_HU/core.po | 4 ++-- l10n/hu_HU/files.po | 4 ++-- l10n/hu_HU/files_external.po | 4 ++-- l10n/hu_HU/files_sharing.po | 4 ++-- l10n/hu_HU/files_trashbin.po | 4 ++-- l10n/hu_HU/lib.po | 4 ++-- l10n/hu_HU/settings.po | 4 ++-- l10n/hu_HU/user_ldap.po | 4 ++-- l10n/hy/files.po | 4 ++-- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 ++-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 ++-- l10n/ia/core.po | 4 ++-- l10n/ia/files.po | 4 ++-- l10n/ia/files_external.po | 4 ++-- l10n/ia/files_sharing.po | 4 ++-- l10n/ia/files_trashbin.po | 4 ++-- l10n/ia/lib.po | 4 ++-- l10n/ia/settings.po | 4 ++-- l10n/ia/user_ldap.po | 4 ++-- l10n/id/core.po | 4 ++-- l10n/id/files.po | 4 ++-- l10n/id/files_external.po | 4 ++-- l10n/id/files_sharing.po | 4 ++-- l10n/id/files_trashbin.po | 4 ++-- l10n/id/lib.po | 4 ++-- l10n/id/settings.po | 4 ++-- l10n/id/user_ldap.po | 4 ++-- l10n/is/core.po | 4 ++-- l10n/is/files.po | 4 ++-- l10n/is/files_external.po | 4 ++-- l10n/is/files_sharing.po | 4 ++-- l10n/is/files_trashbin.po | 4 ++-- l10n/is/lib.po | 4 ++-- l10n/is/settings.po | 4 ++-- l10n/is/user_ldap.po | 4 ++-- l10n/it/core.po | 4 ++-- l10n/it/files.po | 4 ++-- l10n/it/files_external.po | 4 ++-- l10n/it/files_sharing.po | 4 ++-- l10n/it/files_trashbin.po | 4 ++-- l10n/it/lib.po | 4 ++-- l10n/it/settings.po | 4 ++-- l10n/it/user_ldap.po | 4 ++-- l10n/ja_JP/core.po | 4 ++-- l10n/ja_JP/files.po | 4 ++-- l10n/ja_JP/files_external.po | 4 ++-- l10n/ja_JP/files_sharing.po | 4 ++-- l10n/ja_JP/files_trashbin.po | 4 ++-- l10n/ja_JP/lib.po | 4 ++-- l10n/ja_JP/settings.po | 4 ++-- l10n/ja_JP/user_ldap.po | 4 ++-- l10n/ka/files.po | 4 ++-- l10n/ka/files_sharing.po | 4 ++-- l10n/ka_GE/core.po | 4 ++-- l10n/ka_GE/files.po | 4 ++-- l10n/ka_GE/files_external.po | 4 ++-- l10n/ka_GE/files_sharing.po | 4 ++-- l10n/ka_GE/files_trashbin.po | 4 ++-- l10n/ka_GE/lib.po | 4 ++-- l10n/ka_GE/settings.po | 4 ++-- l10n/ka_GE/user_ldap.po | 4 ++-- l10n/ko/core.po | 4 ++-- l10n/ko/files.po | 4 ++-- l10n/ko/files_external.po | 4 ++-- l10n/ko/files_sharing.po | 4 ++-- l10n/ko/files_trashbin.po | 4 ++-- l10n/ko/lib.po | 4 ++-- l10n/ko/settings.po | 4 ++-- l10n/ko/user_ldap.po | 4 ++-- l10n/ku_IQ/core.po | 4 ++-- l10n/ku_IQ/files.po | 4 ++-- l10n/ku_IQ/files_sharing.po | 4 ++-- l10n/ku_IQ/files_trashbin.po | 4 ++-- l10n/ku_IQ/lib.po | 4 ++-- l10n/ku_IQ/settings.po | 4 ++-- l10n/ku_IQ/user_ldap.po | 4 ++-- l10n/lb/core.po | 4 ++-- l10n/lb/files.po | 4 ++-- l10n/lb/files_external.po | 4 ++-- l10n/lb/files_sharing.po | 4 ++-- l10n/lb/files_trashbin.po | 4 ++-- l10n/lb/lib.po | 4 ++-- l10n/lb/settings.po | 4 ++-- l10n/lb/user_ldap.po | 4 ++-- l10n/lt_LT/core.po | 4 ++-- l10n/lt_LT/files.po | 4 ++-- l10n/lt_LT/files_external.po | 4 ++-- l10n/lt_LT/files_sharing.po | 4 ++-- l10n/lt_LT/files_trashbin.po | 4 ++-- l10n/lt_LT/lib.po | 4 ++-- l10n/lt_LT/settings.po | 4 ++-- l10n/lt_LT/user_ldap.po | 4 ++-- l10n/lv/core.po | 4 ++-- l10n/lv/files.po | 4 ++-- l10n/lv/files_external.po | 4 ++-- l10n/lv/files_sharing.po | 4 ++-- l10n/lv/files_trashbin.po | 4 ++-- l10n/lv/lib.po | 4 ++-- l10n/lv/settings.po | 4 ++-- l10n/lv/user_ldap.po | 4 ++-- l10n/mk/core.po | 4 ++-- l10n/mk/files.po | 4 ++-- l10n/mk/files_external.po | 4 ++-- l10n/mk/files_sharing.po | 4 ++-- l10n/mk/files_trashbin.po | 4 ++-- l10n/mk/lib.po | 4 ++-- l10n/mk/settings.po | 4 ++-- l10n/mk/user_ldap.po | 4 ++-- l10n/ms_MY/core.po | 4 ++-- l10n/ms_MY/files.po | 4 ++-- l10n/ms_MY/files_external.po | 4 ++-- l10n/ms_MY/files_sharing.po | 4 ++-- l10n/ms_MY/files_trashbin.po | 4 ++-- l10n/ms_MY/lib.po | 4 ++-- l10n/ms_MY/settings.po | 4 ++-- l10n/ms_MY/user_ldap.po | 4 ++-- l10n/my_MM/core.po | 4 ++-- l10n/my_MM/files.po | 4 ++-- l10n/my_MM/files_sharing.po | 4 ++-- l10n/my_MM/lib.po | 4 ++-- l10n/nb_NO/core.po | 4 ++-- l10n/nb_NO/files.po | 4 ++-- l10n/nb_NO/files_external.po | 4 ++-- l10n/nb_NO/files_sharing.po | 4 ++-- l10n/nb_NO/files_trashbin.po | 4 ++-- l10n/nb_NO/lib.po | 4 ++-- l10n/nb_NO/settings.po | 4 ++-- l10n/nb_NO/user_ldap.po | 4 ++-- l10n/nl/core.po | 4 ++-- l10n/nl/files.po | 4 ++-- l10n/nl/files_external.po | 4 ++-- l10n/nl/files_sharing.po | 4 ++-- l10n/nl/files_trashbin.po | 4 ++-- l10n/nl/lib.po | 4 ++-- l10n/nl/settings.po | 4 ++-- l10n/nl/user_ldap.po | 4 ++-- l10n/nn_NO/core.po | 4 ++-- l10n/nn_NO/files.po | 4 ++-- l10n/nn_NO/files_external.po | 4 ++-- l10n/nn_NO/files_sharing.po | 4 ++-- l10n/nn_NO/files_trashbin.po | 4 ++-- l10n/nn_NO/lib.po | 4 ++-- l10n/nn_NO/settings.po | 4 ++-- l10n/nn_NO/user_ldap.po | 4 ++-- l10n/oc/core.po | 4 ++-- l10n/oc/files.po | 4 ++-- l10n/oc/files_external.po | 4 ++-- l10n/oc/files_sharing.po | 4 ++-- l10n/oc/files_trashbin.po | 4 ++-- l10n/oc/lib.po | 4 ++-- l10n/oc/settings.po | 4 ++-- l10n/oc/user_ldap.po | 4 ++-- l10n/pl/core.po | 4 ++-- l10n/pl/files.po | 4 ++-- l10n/pl/files_external.po | 4 ++-- l10n/pl/files_sharing.po | 4 ++-- l10n/pl/files_trashbin.po | 4 ++-- l10n/pl/lib.po | 4 ++-- l10n/pl/settings.po | 4 ++-- l10n/pl/user_ldap.po | 4 ++-- l10n/pt_BR/core.po | 4 ++-- l10n/pt_BR/files.po | 4 ++-- l10n/pt_BR/files_external.po | 4 ++-- l10n/pt_BR/files_sharing.po | 4 ++-- l10n/pt_BR/files_trashbin.po | 4 ++-- l10n/pt_BR/lib.po | 4 ++-- l10n/pt_BR/settings.po | 4 ++-- l10n/pt_BR/user_ldap.po | 4 ++-- l10n/pt_PT/core.po | 4 ++-- l10n/pt_PT/files.po | 4 ++-- l10n/pt_PT/files_external.po | 4 ++-- l10n/pt_PT/files_sharing.po | 4 ++-- l10n/pt_PT/files_trashbin.po | 4 ++-- l10n/pt_PT/lib.po | 4 ++-- l10n/pt_PT/settings.po | 4 ++-- l10n/pt_PT/user_ldap.po | 4 ++-- l10n/ro/core.po | 4 ++-- l10n/ro/files.po | 4 ++-- l10n/ro/files_external.po | 4 ++-- l10n/ro/files_sharing.po | 4 ++-- l10n/ro/files_trashbin.po | 4 ++-- l10n/ro/lib.po | 4 ++-- l10n/ro/settings.po | 4 ++-- l10n/ro/user_ldap.po | 4 ++-- l10n/ru/core.po | 4 ++-- l10n/ru/files.po | 4 ++-- l10n/ru/files_external.po | 4 ++-- l10n/ru/files_sharing.po | 4 ++-- l10n/ru/files_trashbin.po | 4 ++-- l10n/ru/lib.po | 4 ++-- l10n/ru/settings.po | 4 ++-- l10n/ru/user_ldap.po | 4 ++-- l10n/si_LK/core.po | 4 ++-- l10n/si_LK/files.po | 4 ++-- l10n/si_LK/files_external.po | 4 ++-- l10n/si_LK/files_sharing.po | 4 ++-- l10n/si_LK/files_trashbin.po | 4 ++-- l10n/si_LK/lib.po | 4 ++-- l10n/si_LK/settings.po | 4 ++-- l10n/si_LK/user_ldap.po | 4 ++-- l10n/sk_SK/core.po | 4 ++-- l10n/sk_SK/files.po | 4 ++-- l10n/sk_SK/files_external.po | 4 ++-- l10n/sk_SK/files_sharing.po | 4 ++-- l10n/sk_SK/files_trashbin.po | 4 ++-- l10n/sk_SK/lib.po | 4 ++-- l10n/sk_SK/settings.po | 4 ++-- l10n/sk_SK/user_ldap.po | 4 ++-- l10n/sl/core.po | 4 ++-- l10n/sl/files.po | 4 ++-- l10n/sl/files_external.po | 4 ++-- l10n/sl/files_sharing.po | 4 ++-- l10n/sl/files_trashbin.po | 4 ++-- l10n/sl/lib.po | 4 ++-- l10n/sl/settings.po | 4 ++-- l10n/sl/user_ldap.po | 4 ++-- l10n/sq/core.po | 4 ++-- l10n/sq/files.po | 4 ++-- l10n/sq/files_external.po | 4 ++-- l10n/sq/files_sharing.po | 4 ++-- l10n/sq/files_trashbin.po | 4 ++-- l10n/sq/lib.po | 4 ++-- l10n/sq/settings.po | 4 ++-- l10n/sq/user_ldap.po | 4 ++-- l10n/sr/core.po | 4 ++-- l10n/sr/files.po | 4 ++-- l10n/sr/files_external.po | 4 ++-- l10n/sr/files_sharing.po | 4 ++-- l10n/sr/files_trashbin.po | 4 ++-- l10n/sr/lib.po | 4 ++-- l10n/sr/settings.po | 4 ++-- l10n/sr/user_ldap.po | 4 ++-- l10n/sr@latin/core.po | 4 ++-- l10n/sr@latin/files.po | 4 ++-- l10n/sr@latin/files_external.po | 4 ++-- l10n/sr@latin/files_sharing.po | 4 ++-- l10n/sr@latin/files_trashbin.po | 4 ++-- l10n/sr@latin/lib.po | 4 ++-- l10n/sr@latin/settings.po | 4 ++-- l10n/sv/core.po | 4 ++-- l10n/sv/files.po | 4 ++-- l10n/sv/files_external.po | 4 ++-- l10n/sv/files_sharing.po | 4 ++-- l10n/sv/files_trashbin.po | 4 ++-- l10n/sv/lib.po | 4 ++-- l10n/sv/settings.po | 4 ++-- l10n/sv/user_ldap.po | 4 ++-- l10n/ta_LK/core.po | 4 ++-- l10n/ta_LK/files.po | 4 ++-- l10n/ta_LK/files_external.po | 4 ++-- l10n/ta_LK/files_sharing.po | 4 ++-- l10n/ta_LK/files_trashbin.po | 4 ++-- l10n/ta_LK/lib.po | 4 ++-- l10n/ta_LK/settings.po | 4 ++-- l10n/ta_LK/user_ldap.po | 4 ++-- l10n/te/core.po | 4 ++-- l10n/te/files.po | 4 ++-- l10n/te/files_external.po | 4 ++-- l10n/te/files_trashbin.po | 4 ++-- l10n/te/lib.po | 4 ++-- l10n/te/settings.po | 4 ++-- l10n/te/user_ldap.po | 4 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 ++-- l10n/th_TH/files.po | 4 ++-- l10n/th_TH/files_external.po | 4 ++-- l10n/th_TH/files_sharing.po | 4 ++-- l10n/th_TH/files_trashbin.po | 4 ++-- l10n/th_TH/lib.po | 4 ++-- l10n/th_TH/settings.po | 4 ++-- l10n/th_TH/user_ldap.po | 4 ++-- l10n/tr/core.po | 4 ++-- l10n/tr/files.po | 4 ++-- l10n/tr/files_external.po | 4 ++-- l10n/tr/files_sharing.po | 4 ++-- l10n/tr/files_trashbin.po | 4 ++-- l10n/tr/lib.po | 4 ++-- l10n/tr/settings.po | 4 ++-- l10n/tr/user_ldap.po | 4 ++-- l10n/ug/core.po | 4 ++-- l10n/ug/files.po | 4 ++-- l10n/ug/files_external.po | 4 ++-- l10n/ug/files_sharing.po | 4 ++-- l10n/ug/files_trashbin.po | 4 ++-- l10n/ug/lib.po | 4 ++-- l10n/ug/settings.po | 4 ++-- l10n/ug/user_ldap.po | 4 ++-- l10n/uk/core.po | 4 ++-- l10n/uk/files.po | 4 ++-- l10n/uk/files_external.po | 4 ++-- l10n/uk/files_sharing.po | 4 ++-- l10n/uk/files_trashbin.po | 4 ++-- l10n/uk/lib.po | 4 ++-- l10n/uk/settings.po | 4 ++-- l10n/uk/user_ldap.po | 4 ++-- l10n/ur_PK/core.po | 4 ++-- l10n/ur_PK/files.po | 4 ++-- l10n/ur_PK/files_trashbin.po | 4 ++-- l10n/ur_PK/lib.po | 4 ++-- l10n/ur_PK/settings.po | 4 ++-- l10n/ur_PK/user_ldap.po | 4 ++-- l10n/vi/core.po | 4 ++-- l10n/vi/files.po | 4 ++-- l10n/vi/files_external.po | 4 ++-- l10n/vi/files_sharing.po | 4 ++-- l10n/vi/files_trashbin.po | 4 ++-- l10n/vi/lib.po | 4 ++-- l10n/vi/settings.po | 4 ++-- l10n/vi/user_ldap.po | 4 ++-- l10n/zh_CN.GB2312/core.po | 4 ++-- l10n/zh_CN.GB2312/files.po | 4 ++-- l10n/zh_CN.GB2312/files_external.po | 4 ++-- l10n/zh_CN.GB2312/files_sharing.po | 4 ++-- l10n/zh_CN.GB2312/files_trashbin.po | 4 ++-- l10n/zh_CN.GB2312/lib.po | 4 ++-- l10n/zh_CN.GB2312/settings.po | 4 ++-- l10n/zh_CN.GB2312/user_ldap.po | 4 ++-- l10n/zh_CN/core.po | 4 ++-- l10n/zh_CN/files.po | 4 ++-- l10n/zh_CN/files_external.po | 4 ++-- l10n/zh_CN/files_sharing.po | 4 ++-- l10n/zh_CN/files_trashbin.po | 4 ++-- l10n/zh_CN/lib.po | 4 ++-- l10n/zh_CN/settings.po | 4 ++-- l10n/zh_CN/user_ldap.po | 4 ++-- l10n/zh_HK/core.po | 4 ++-- l10n/zh_HK/files.po | 4 ++-- l10n/zh_HK/files_external.po | 4 ++-- l10n/zh_HK/files_sharing.po | 4 ++-- l10n/zh_HK/files_trashbin.po | 4 ++-- l10n/zh_HK/lib.po | 4 ++-- l10n/zh_HK/settings.po | 4 ++-- l10n/zh_HK/user_ldap.po | 4 ++-- l10n/zh_TW/core.po | 4 ++-- l10n/zh_TW/files.po | 4 ++-- l10n/zh_TW/files_external.po | 4 ++-- l10n/zh_TW/files_sharing.po | 4 ++-- l10n/zh_TW/files_trashbin.po | 4 ++-- l10n/zh_TW/lib.po | 4 ++-- l10n/zh_TW/settings.po | 4 ++-- l10n/zh_TW/user_ldap.po | 4 ++-- 534 files changed, 1055 insertions(+), 1055 deletions(-) diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 72ff3cd28f..247283f729 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-18 06:02+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index a3062eb750..19c0feb317 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-18 06:02+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 5ca63bcbd2..6d3c9fa7b4 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ar/files.po index 39c09f40d8..8cd6cecd02 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ar/files_external.po index 6f2b2cb333..5bed86f1a1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 9ba0009623..e03ef792aa 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 4edce69695..241b7c6c72 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 5146e4e4ed..ba4a0a2221 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 22a29f9935..da1a98d43c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 29fe735a62..2cc2742b8f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 973df800a2..4e6257b9ab 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/bg_BG/files.po index f70eb170e7..d2c5d7ca6d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bg_BG/files_external.po index 7a6dfad3fb..a83766c4f7 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 6f8815722b..7612616580 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 4aea683e64..d4310d70c4 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Димитър Кръстев \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 2d8de193fc..8960d82ee5 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/bg_BG/settings.po index fec2dbfab8..4458df335c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 54cc61ba5b..c2b3697827 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 ac78710ab6..3b434f752c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/bn_BD/files.po index b30218fecd..9857e992d8 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bn_BD/files_external.po index 51171252bd..bd6d972357 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 22cf2da7da..dc80c0b484 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 4b187088f8..0b6317b2ab 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 a77b401abe..a1f9b4a5b5 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/bn_BD/settings.po index 0ab9614c60..d381131e97 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 52b3b9aae6..baa0e5aa5d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 122ebad70e..da0e88a6ac 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 212a8ba241..a2ade79098 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 15717c5782..a4fb8e94f1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 7cb833ac36..f07d742898 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ca/files.po index bda706a793..6a96023128 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+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_external.po b/l10n/ca/files_external.po index 685b09f5a7..df136c4a2f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 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 08bafebbc8..b158000c93 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 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 2dd5bd263c..9743d04e43 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 07e62a550c..5d11e048c2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index a2df12eb8e..f6659657fa 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 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 ce80608cef..62e4f4e6b1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 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/cs_CZ/core.po b/l10n/cs_CZ/core.po index 8db4669442..410e1b5b7d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/cs_CZ/files.po index e4f06e54dd..9201d076a0 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/cs_CZ/files_external.po index 683165b1b2..f146db4fb5 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 9e9fb84eff..c5d991be85 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 182ef4b3bd..5c6b197539 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 0ea7cf60d3..778306e0dd 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/cs_CZ/settings.po index c85a454012..9e499ee9a7 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Honza K. \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 bb552c10a4..6d17ce849b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Tomáš Chvátal \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 1dac3d81ca..3122a2899d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/cy_GB/files.po index 811cd2a0f8..04fb3694ba 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/cy_GB/files_external.po index 5ae916d9da..7a79089499 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 cc5ae4f950..361ef7b405 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 3b6bc6d10f..dc10b3b1c1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: ubuntucymraeg \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 514fd6dcd7..bdd079bad3 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/cy_GB/settings.po index 77aee9414c..a7f4151dc9 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 b1da9c4932..b6853734c8 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 d565508111..493a9f64e9 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/da/files.po index 6899cd1403..78e7324d0d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/da/files_external.po index 959179b44b..95611a7b21 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 e10e7e2fa3..fff250d6c5 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 18d1400f2e..549052a7ec 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 b2d65b79fd..abf04f8ef1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 718cbf77cf..e90aaf2525 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Morten Juhl-Johansen Zölde-Fejér \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 9084b3b05f..bafdeccfad 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 1e7bc0736c..ab26c9b98a 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index b3ebc2d8b4..f84e468a7f 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: kabum \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index a5a07233b6..3e088b4ed1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 4e3d00d9d2..5841a3ef57 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 28b713fefa..8edc2f93b3 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 50bc0c5a44..ea5d9e6c3c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 6612b90d63..52016edcac 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 06da4e9241..95ff273d42 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 89cb13ea52..ee9dd584fe 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index d550eb1c33..9418a84859 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 94472a02ef..a3dbf6d6ba 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 7e743926e9..5392e97cc5 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: JamFX \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index ff07f01830..8a3fcb1a2f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 3b86805f3b..71f8613d91 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 5ac3d16911..0b83de46c7 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 704eef5b1b..a06d9c8fc9 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index f7a837e5c3..0a3fb65f11 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/el/files.po index cec3fae73e..dedc37b360 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/el/files_external.po index 50ec34e272..a26495fe59 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: KAT.RAT12 \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 37db8c8c4b..0f34d77543 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 20aa15bdee..c5f7936f83 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 56e0f0df6f..6ff3bfa05d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index f761e53d70..72c05d3408 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 94203bbd49..5c6d847090 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 ad398edaf2..1f87cab32e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 4294d39198..898386222f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 1e3453f942..96b3f9c6be 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/eo/files.po index 119ccd0df3..4626d5b383 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/eo/files_external.po index 255bbf8af5..a2ba37866f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 76058dbaa1..875b59a6ab 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 6fec6d1338..c216f5aad2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 0f50e2e721..d3d0ac83c2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index a837cd7a54..4c257a5578 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 220651619a..0c8957a499 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 c04ac271d7..4ab55660eb 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/es/files.po index fdb3ba67bf..d762873c1f 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: qdneren \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_external.po b/l10n/es/files_external.po index 56953b95d9..f7b03b2dbc 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Korrosivo \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 8c9deebde0..1f80f68de2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Korrosivo \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 c4e2b6a95f..fcd421ea8b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Korrosivo \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 d82cf0201f..3cbfaadc83 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 2d1ce9506b..1cc3689a7f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: qdneren \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 192c1c4931..9f63511193 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: xhiena \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 8f15d888a8..2a1024aa25 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: cjtess \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.po b/l10n/es_AR/files.po index 83808602fb..ddf342712a 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: cjtess \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_external.po b/l10n/es_AR/files_external.po index d803431d02..700b9a6ead 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: cjtess \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 6a4106f9f0..2c3005a7fd 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: cjtess \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 d65ec923d6..3d1bec85ce 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 f6c0210c34..6521a09c87 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: cjtess \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/settings.po b/l10n/es_AR/settings.po index d61809a805..d7ed2bffa0 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: cjtess \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 6e9026aae6..3f26ec0a93 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: cjtess \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 32e074ab8a..5fcfa90008 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/et_EE/files.po index 5c4ca44520..7395d583aa 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: pisike.sipelgas \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_external.po b/l10n/et_EE/files_external.po index 63ae848ee5..2dff37eb05 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Rivo Zängov \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 21bdd1d7d0..dd2a5144f0 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Rivo Zängov \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 bd6b4a14d7..f3db48c559 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Rivo Zängov \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 8cc2edfdf0..da279d0c83 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/et_EE/settings.po index 586dd9d931..fc15a2ede0 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: pisike.sipelgas \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 da9b2443f8..be38a926c2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: pisike.sipelgas \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 cac46120ee..319a23ea98 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: Piarres Beobide \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.po b/l10n/eu/files.po index 5d4d309ab7..01e83a26e5 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Piarres Beobide \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_external.po b/l10n/eu/files_external.po index 88b0343d8a..82512fad9b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Piarres Beobide \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 57615b89a9..1b0f61ed0b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 0b6bc3ca45..52c19f772a 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 21198c56e4..f0ccfeabe4 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index c3cbb69695..5b42403953 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 900b62d74c..370dc65775 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 175656c130..35aa6001f9 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: miki_mika1362 \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.po b/l10n/fa/files.po index 47e7459cec..1d994bdeb7 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: miki_mika1362 \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_external.po b/l10n/fa/files_external.po index fda3cc7ceb..6343069c70 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 80c8d92e82..4b88b8dd53 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: miki_mika1362 \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 ad439a3be7..cd1859e120 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 2c57e07eb8..eaf7844844 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 46957a759e..7173e4be52 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: miki_mika1362 \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 6079002641..76d91182b4 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 347be8b3f5..051be1ba38 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/fi_FI/files.po index cd5ee5511f..b00f083c70 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: Jiri Grönroos \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_external.po b/l10n/fi_FI/files_external.po index 767c36e15d..a1ea7b6f56 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 cfa927f503..428fb7e6a9 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Jiri Grönroos \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_trashbin.po b/l10n/fi_FI/files_trashbin.po index a85348a23e..cc2926e2a7 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 bbe1b6da41..eecd94cf71 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/fi_FI/settings.po index 5bcc28c105..0fc75a7a7b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Jiri Grönroos \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/user_ldap.po b/l10n/fi_FI/user_ldap.po index b4c08b2946..ab514c969d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 56c92bb087..09f2491877 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/fr/files.po index deb38d2908..180d4b2a04 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Adalberto Rodrigues \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_external.po b/l10n/fr/files_external.po index 76622b1f46..413d3ea410 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 c1854ec86e..a80ac96d00 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: square \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 04dda47a89..9e02f3849c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 469520aad5..29dc19e0fa 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 5611a526e7..8c90c870b3 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Adalberto Rodrigues \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 c997db8154..4c5b7538b6 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: plachance \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 8f640a7b62..b821957264 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: mbouzada \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.po b/l10n/gl/files.po index 09768537c4..798508c61d 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: mbouzada \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_external.po b/l10n/gl/files_external.po index 4c80bae4a1..829dfffebe 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 a5cdf479d1..603746f6cb 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: mbouzada \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 40676719ac..e6102d8c0b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 fcc13f077f..28659c847e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 811bb00385..b6271c71cc 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: mbouzada \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 f3eb52df5d..57e5ea3d15 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: mbouzada \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 773390eafb..f0b9473289 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/he/files.po index fc87041eb4..24b332a06d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/he/files_external.po index 284a3aeb3f..4c94d7d370 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 6dbfdb0436..49956d609f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 270cb2b53f..31fe509820 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Yaron Shahrabani \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 debbb0c8d5..d46dfc5497 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index ebe3799cd6..53f2d130bc 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 54d4be77b0..0abc4cb424 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 bb97e5198a..93b91212fe 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index e639301602..b00d97103c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index 8aa9417334..d1901a0e62 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 a266be5d02..c0448362f2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-18 06:02+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 22b4cd9d1f..9c9361e51b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 8614dd9fb9..77d470cef4 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 3e7d08b181..e768f45aa3 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/hr/files.po index b45f5030cb..f320ad1823 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hr/files_external.po index 3403080755..01cb930780 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 244808c3ba..587fb99514 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 c985fd102a..94099a0a61 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 f8987c9e02..6eab6391bc 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 905492a245..cf9b66823b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 f13e58aec1..6735a4ab3f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 64e12ef516..462664adda 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: Laszlo Tornoci \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.po b/l10n/hu_HU/files.po index 49139aacc7..9e612ed9b8 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: Laszlo Tornoci \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_external.po b/l10n/hu_HU/files_external.po index 2f0cf94109..553bafd3bd 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Laszlo Tornoci \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 d0e152c90b..86b4e15495 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Laszlo Tornoci \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 638459e013..7ddefc5503 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 96594eb4fc..6f042b01b8 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/hu_HU/settings.po index f945826938..a68c841a25 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Laszlo Tornoci \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 ed300f52df..89b1052f84 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Laszlo Tornoci \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 d912359a80..aab5278935 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hy/files_external.po index a4c32de222..d8d6a9550f 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-19 01:55-0400\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 76f876fb9e..0a3ec1710b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 7393ac6563..f4acec6421 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-19 01:55-0400\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 b3ef47822a..d0115c2f75 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 3edc6923ed..2f383783ef 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ia/files.po index c2f3399a81..4c384166a4 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ia/files_external.po index 0f5f6a0c39..7dff5d6b52 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 a8b8325a0f..019f614ba6 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 9f5ef06ed6..b3b01e41bf 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 32268b455b..810a2404ec 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 600769c4c0..8a82e9f550 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 11c39baaad..45e15e4599 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 83ab136b25..ba73488ab9 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/id/files.po index 0c004f7366..a4763d47b9 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/id/files_external.po index fcdddfc798..0a9ff42315 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 35910e424b..20ee7be1e2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 99a3b8bf0c..ca82067c51 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 0876f8212c..42bbae6e06 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index ff2765ba82..83a4e30f57 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 4de17cde59..3a09e18add 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 7ebfaaaa36..a722515ab2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/is/files.po index fdc0e25b4d..16276564a4 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/is/files_external.po index 2d2b6241a9..fef723390f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 027f6ce6ac..5d736c7e3d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 770e652293..1f891e62bf 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 64c2e4860d..efcc8813f4 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 72c34d0ee3..7b37f89ca7 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 bff7f989f7..5594595a52 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Magnus Magnusson \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 054fb280ab..f1ad611fff 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: Vincenzo Reale \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.po b/l10n/it/files.po index 2408889615..7127f2eb43 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: Vincenzo Reale \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_external.po b/l10n/it/files_external.po index 5fd3f3b3e7..682c7ae338 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Vincenzo Reale \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 0dfd047714..3c6bb73fcb 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Vincenzo Reale \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 4cbfe3d4e4..43cec7f996 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Vincenzo Reale \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 16ad01c56c..d839adc507 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index b2c6ae33da..165ccdb7ca 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Vincenzo Reale \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 d02a15534f..a3858ab9ab 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Vincenzo Reale \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 0c177f48c8..366b50415c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: Daisuke Deguchi \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.po b/l10n/ja_JP/files.po index 501fb1423b..dc6c7a9f4c 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: pabook \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_external.po b/l10n/ja_JP/files_external.po index 3040868ed7..905e0366f5 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 d92aec6bd7..bb5eb3dbeb 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: tt yn \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 52087970ab..5e153ab9ce 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 45a27b7fcb..b896d6f047 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ja_JP/settings.po index 4f5aff9055..8175bf8d91 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Daisuke Deguchi \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 d77be516c5..ba01415d89 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Daisuke Deguchi \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 7981fb8e21..a92ff8fd5f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index 14851b48c5..b0ee10ec61 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 b51e7ea282..669ff1f8f1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ka_GE/files.po index 91206aa89e..676eed8a5d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ka_GE/files_external.po index f79775aa63..d91117a531 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: drlinux64 \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 fb94ff9a83..4fdf43fc7a 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 fa81830dd3..ffa93e5bab 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: drlinux64 \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 8ae2e7108a..60b48aec02 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ka_GE/settings.po index 5ace82ac31..9665eb3128 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 417885617e..faebd46409 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/ko/core.po b/l10n/ko/core.po index f196f9484e..69301214d7 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ko/files.po index 8778b4df41..927de281df 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ko/files_external.po index 6726d4bec2..9bec6e000f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Shinjo Park \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 71bffaedcf..f033e248fe 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 02a5e3fd31..e0cbd25c00 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 8bd4cc6d3e..836915c159 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 909c65f6e3..74d004e412 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 ab480654fc..7df50d6b9d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 8f644c79dc..53ea552127 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ku_IQ/files.po index 754948d25b..4ffa1c446c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_sharing.po b/l10n/ku_IQ/files_sharing.po index 392b4bb0c7..b9332b4fe5 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 eb78f56664..c3b25f8a58 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 050b4be809..2457bd8d7f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-18 06:02+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 06:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ku_IQ/settings.po index ec0320306f..5e30580a31 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 b80e61d34f..933f81efe8 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 e029ee5c52..8738562cb2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/lb/files.po index 0ef509663e..f24d1bce4c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lb/files_external.po index 850d04a247..1636164405 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 387a2d1dc8..98155b008c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: llaera \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 99fed57a49..71e885460e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 9ede91bbb2..1cfdbbf9d2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 4b39c5921d..5a27be2261 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 0f0b1d1c05..be96efb97c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 d83f776c27..7becef67df 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/lt_LT/files.po index 7af918aaaa..f1906165fb 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lt_LT/files_external.po index 355733ac9b..2408c6b117 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Min2liz \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 4a4d45505f..f510c5ee0d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 a84fa8fb01..b417baa199 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: fizikiukas \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 588c652c2b..0cc1f80892 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/lt_LT/settings.po index da0b7ac79a..7bea0e1a23 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: fizikiukas \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/user_ldap.po b/l10n/lt_LT/user_ldap.po index 2f3f999282..8f746415b7 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 0d825b4879..abd07c50f5 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/lv/files.po index 69f6355d18..489eaeacc1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lv/files_external.po index eaaf7dcf1c..ecd13c8234 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 3686497b40..7b0183e362 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 dec41308bb..8ca4e0452d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 e6919f5ae2..977d407601 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 0e1aa6eaf0..435b719634 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 adc02d300c..e9853f2bc1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 6202e7a3cb..124f189dca 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/mk/files.po index 4ec20f8388..3bc606a273 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/mk/files_external.po index f9c5aefe50..b3bb6a2792 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 6cae987aea..5b6adf65d2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 c0c7d92ea4..9879a856c6 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 2221036471..a7ce8ca36c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 1c205c3e8f..9a71b8fdf1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 37a9b4cd8b..9d3edd0558 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 116dce2951..051bf6856b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ms_MY/files.po index 966bed94f7..20c1494b53 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ms_MY/files_external.po index 46589e4067..69caf7eaad 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 5261118924..a13d2020f4 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 69bd1f524f..361fc65aa4 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 159b2a719a..4fefcefb03 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ms_MY/settings.po index 15d1b88ba2..769d089c12 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 5e8b6d16b3..979102b80f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 b5c58c4258..dc6804187a 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/my_MM/files.po index 461ab507fc..45cc491814 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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/files_sharing.po b/l10n/my_MM/files_sharing.po index a68345c20a..e315755c4c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 46bb573269..c51a84e969 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/nb_NO/core.po b/l10n/nb_NO/core.po index 8bb1cc96ae..6fef3fb6fe 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/nb_NO/files.po index f88b823908..f41b6aa744 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: Stein-Aksel Basma \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_external.po b/l10n/nb_NO/files_external.po index d6157d8b40..13e6d764a2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 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 03af661d88..30e26d3ae1 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Stein-Aksel Basma \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_trashbin.po b/l10n/nb_NO/files_trashbin.po index 31c838e9f4..ea504ef996 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 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 bb2791a3c5..a020dba8ca 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/nb_NO/settings.po index d12c39addd..fe04a89f95 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Stein-Aksel Basma \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/user_ldap.po b/l10n/nb_NO/user_ldap.po index 3bab2162de..2d3eb8f807 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/nl/core.po b/l10n/nl/core.po index 3552a505cf..942bbd84ca 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/nl/files.po index 08fd35bc5e..85fcca5fcc 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nl/files_external.po index 8148be3faf..5f625bcac6 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: André Koot \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 66b04ef6c4..77f08a7afc 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/nl/files_trashbin.po index 86a0bd2a3d..cfe6594426 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 1bb4aeceea..0179927e06 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index bf26b5f9a5..f58775521e 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index ccf0c60666..4dfa962634 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: André Koot \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 4dfcdb6aff..5ec555587e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/nn_NO/files.po index 2007aecb39..2845b72e77 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nn_NO/files_external.po index 3fb1db67c5..6d03e1561f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 cfe3834ac1..015823ba87 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 7c44e98a00..52da13e071 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: unhammer \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 253d2472bf..40b8593bb2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/nn_NO/settings.po index d14e632a95..c8815b2529 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 99eb7c7e21..1d148275ae 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 96a7c9bceb..2bc84faae9 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/oc/files.po index a82095ca0e..336347ab54 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/oc/files_external.po index 499102565c..fcda666077 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 4bf90bab21..eca0ebda0e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 c92ed11371..80159f08e6 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 6f22f0555d..4e428363c9 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-18 06:02+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 06:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/oc/settings.po index a58cc5bbe3..99e1487e23 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 72ebeac970..ac1d329184 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 af1ae2333a..ce6b63105b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/pl/files.po index a25e16e2c7..ce4debfc98 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/pl/files_external.po index f711177cf0..ba802e3b2f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 77db4b91f8..10fc7aebe9 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 6f6c478ae1..1753babad0 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 1fc82825b6..549002306a 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 851cc65aeb..9939555052 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 60f4974d10..80a04924f8 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: orcio6 \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 005ef922be..1ec701039c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/pt_BR/files.po index 12cff99dbd..1f2517bee3 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: Flávio Veras \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_external.po b/l10n/pt_BR/files_external.po index eb70940b39..a4aaf72007 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Flávio Veras \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 9e7598c594..7500ac954f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Flávio Veras \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 6d9e7d14df..e6cc089268 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 7abb079bd0..88444a5769 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/pt_BR/settings.po index e4820c9975..a3241b2f1b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: bjamalaro \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 74295345e7..6a64ef934a 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Flávio Veras \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 45019f9d21..d0bf923335 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: Helder Meneses \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.po b/l10n/pt_PT/files.po index 97ff924f39..ba2314b514 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: FernandoMASilva\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 615035dc3b..ecd8670b2b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Mouxy \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 8880a809d3..7a61e45a24 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: moliveira \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_trashbin.po b/l10n/pt_PT/files_trashbin.po index 484791c466..ac89f798c1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 8f5085dd26..6f1f9b1914 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/pt_PT/settings.po index cbcee56774..47f48d8007 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Helder Meneses \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/user_ldap.po b/l10n/pt_PT/user_ldap.po index f5caa763b7..f7ce7c83c2 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Bruno Martins \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 79f2b7a294..127659962f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ro/files.po index 21502e4fde..6d8e6f6ce3 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ro/files_external.po index 8ee00063fc..afe1fd4d2b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 7abc5e2aa4..36e40b566e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: sergiu_sechel \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 91d8c37826..d973dbfe1e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 57de4ff1a1..dec1919144 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 17dc6694b2..6a87ffda22 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 e967ef7dd5..31a76d6b33 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 01f36a74d8..76abdf5490 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 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" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index e0a48f44f4..f56fa8511f 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: hackproof \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_external.po b/l10n/ru/files_external.po index e9d4982a6b..4cdcd45883 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 03e420c5aa..8e9e1c0155 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 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 d7b1e7bd6a..29f1d5d24c 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 6a37540f61..066d9198ef 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index d46285295b..5dcebd5566 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: hackproof \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 c7885c00c2..6253522e95 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: alfsoft \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 0ce0387932..421ffabdb3 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/si_LK/files.po index 02890343dc..e829cf81b8 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/si_LK/files_external.po index 3de7d428b9..c4f3cdf6a8 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 10bf4aafa5..50a83440ab 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 3c482f798c..2b5e77cf57 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 31634b329c..2858643ba1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/si_LK/settings.po index f5ec3ac358..dd21eab638 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 f77986639b..cc1ac30310 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_SK/core.po b/l10n/sk_SK/core.po index e84e9fea1d..77d23357d8 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: mhh \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.po b/l10n/sk_SK/files.po index 5810589234..6224f046a9 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sk_SK/files_external.po index 09b41283b6..55dec70740 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: mhh \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 c864566fb3..878bd0355f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 77a8f14daf..e1739d38da 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 a2c5baee8c..3a205d0e35 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/sk_SK/settings.po index 724b72bac7..ab7ed94ba1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: mhh \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 a35af1f451..f2fd39d31b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: mhh \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 9880f11c17..4a1db1abb9 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/sl/files.po index 51f94a1eb0..9383fa5c23 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sl/files_external.po index 99866c8bf6..5950cb5c24 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 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 a3cd9032e1..19a5eb31e6 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 1619742d97..8539458fa3 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 fcb213e1fc..26d3736448 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 0924e23452..5b74b8acba 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 824f737e09..23d243afba 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: barbarak \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 a43fed4e5d..7af6e5e4c5 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/sq/files.po index 84ea7161eb..4af4cb9cbf 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sq/files_external.po index 878a86541c..dcc405cf18 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:11+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 7b8f9706d9..918252fcca 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 454851b70e..f6e2d3e2dd 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 9c77dd01d5..a5db066947 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 1be7c4609a..7d3394ffd4 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 1ed0fa89eb..bf8983182f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 964fdeaea8..5cdff1c23f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr/files.po index 09acda02f4..b060bceb2e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sr/files_external.po index a8afa66258..3456fd2ab0 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 ad0183bff9..5d0af272c1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 7a7977f800..afdb432bd0 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 d60d1cac5f..8d75b57011 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 8197beaeac..c0b1725a4f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 2d32a93316..e54455bb7e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 a90a99d46e..31093aa123 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr@latin/files.po index de2172af62..b98e8a89c0 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sr@latin/files_external.po index f4e3974abd..202dfa7c32 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 5a41739b6a..2ba58fc96d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 403873f11f..f4eafbaa16 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 8fb900b69f..49b61bb0af 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/sr@latin/settings.po index f73581fc42..f519b8fa82 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 2cc578e04e..ea33223d09 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 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" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 7527f36c16..aa9c992d5a 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 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_external.po b/l10n/sv/files_external.po index 3fd5fea56a..5f2a888df6 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 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 25f6389d83..6571d89c31 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/sv/files_trashbin.po index 4ddb3f8f5a..5c37074e03 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 c65eced61d..a1ccebaea4 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index de768d1c77..f2a7e014d0 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 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/user_ldap.po b/l10n/sv/user_ldap.po index 7ff9152923..b4982b2bef 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 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/ta_LK/core.po b/l10n/ta_LK/core.po index 32eb3a7886..33871871f4 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/ta_LK/files.po index 7d414e484e..1fd9d72410 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ta_LK/files_external.po index b06aa5ce31..addbddb84b 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 25ee1aa735..48645eaced 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 d82aa9fc49..c1169f5aff 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 9153edc165..6b951826b1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ta_LK/settings.po index a70315df71..fa19e99238 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 c3e128ac29..9e3c2d3bdc 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 a05f7295de..7817b6abf0 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/te/files.po index 72c4a2445b..654f035937 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/te/files_external.po index 3cd2b3812c..5e2e4e2df2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:11+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 b5b8e855aa..f4fbcf767d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 e9b4f72390..50b213b6f1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-18 06:02+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index b6a476774e..923b5e49cd 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 a64614b2dd..2e74885b8a 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 a2ee80d62a..ea885a8fee 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-19 01:55-0400\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 8ad4a6aff3..006247b2fb 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-19 01:55-0400\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 4f36dde431..94a5b83b0f 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-19 01:55-0400\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 63a357c0ac..eb640f0da5 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-19 01:55-0400\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 71874df5cd..d23f24b558 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-19 01:55-0400\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 8692bf4502..7c302f0164 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-19 01:55-0400\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 31ef6005cb..817003175c 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-19 01:55-0400\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index a80511496e..870abddc4f 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-19 01:55-0400\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 021015e57d..5c880eb236 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-19 01:55-0400\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index bf73e6008f..166d915528 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-19 01:55-0400\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index a4a500fc16..c7315e44f7 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-19 01:55-0400\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index d9d2ca87c1..f8d34c89d1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/th_TH/files.po index 8d6de4ef9b..e7638e233a 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/th_TH/files_external.po index 5f6b0e911f..f3a9e08036 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 3710fa0a3f..21dee4f9e4 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 b465f3e9ea..e6cf9d457e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 9d8adbc6c1..af2a71646f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/th_TH/settings.po index f820197fe1..5d42ed5f18 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 4bbce3ef24..cb7171769e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 e21f0808eb..ebcb112ead 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/tr/files.po index 8d3aecdc52..7850df93f9 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/tr/files_external.po index dad2d74618..745a741924 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 7aa8c21a58..ff0faf4882 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 ff1ad7afad..0a8b4f8a75 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 843c4eb01c..788d9be840 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 89cde08001..c5a07a567d 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 3ff9c71972..3ef0658218 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: ismail yenigül \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 dccbc79836..2fab568a7d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 6b50370801..c6ae8f7c92 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index beced96063..cffe587602 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index d757c51e3f..e4bf16f33e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 96f4e22f91..1e05e2193e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index f4fb9c4ec6..f049dc97cb 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 9872e4efac..66faa5d30e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 5341980e6a..55484f5ff7 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 4e814717bd..d5ce4d81b7 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/uk/files.po index 356c57a82a..0d34397508 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/uk/files_external.po index f3c58d4803..f335dce0f3 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 9b5f7e0fd8..b3ecd16b77 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 fbdfc8682d..8b4d2eacd2 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 ffd0f570cd..b9c786bdc4 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index ffd7c747d5..2d5805f712 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 5017cbd85a..33915bc3ed 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 ebd975497c..67e9cbc6fc 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/ur_PK/files.po index 938dce7698..220ef7784f 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index dca829bd42..6fb7ee7be0 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 83d6ce32c0..5afbd96fcc 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-18 06:02+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-19 06:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ur_PK/settings.po index c4a1ccc496..8b998424ac 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 be9edfef71..334e11ff54 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 595f4bc1f0..ef798f15d7 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/vi/files.po index f45b029280..fd5b114b97 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/vi/files_external.po index e53c628419..b7b9f23dc5 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: xtdv \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 bae468b253..85079fe4d9 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 5921d00bac..adeef0df50 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 03785a1b5d..9edac42dfa 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 97074bd913..b3c51a691a 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 274ab9a7a1..c555fdd3bc 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 d63975391e..dbaeeb0720 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN.GB2312/files.po index f1b6d9312d..5e7f62d34a 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: hlx98007 \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_external.po b/l10n/zh_CN.GB2312/files_external.po index 65f400c11a..d3e5b01d99 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: hyy0591 \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 c865709a83..5b0e65f6d6 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 b2871fbb45..55a8d42756 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 cbdf210e7f..206c7eb89a 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_CN.GB2312/settings.po index 863b0a6050..951fc99370 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: hlx98007 \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 1b40ce072c..c8d49ca7a1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 b54111f01a..7ed0f33b3e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN/files.po index 14ce013aa8..b0afb08fd1 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/zh_CN/files_external.po index 08181b79bc..ac1f39e0dc 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 4806441dda..91985e875d 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 c8de7318f3..f26f810294 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 91a9b62b1c..e0461e7589 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_CN/settings.po index a2fd5613c2..1c85585e26 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 20fe068d29..59c7a1e9af 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: modokwang \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 d89d1d5fe7..6347dd9aa7 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_HK/files.po index 36acc6f689..320b6cd566 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/zh_HK/files_external.po index 763b08f95f..d5ed76e687 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 5ccfb5fcd0..f0f1e511f4 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 eb9d0c86a7..2073d2c229 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 26f857a1d4..637f065304 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_HK/settings.po index 4ecfbd1f55..71b37d2b5e 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 db5ebe82cb..d5d02ccf05 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 a39da23626..c23617a0e5 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:24+0000\n" "Last-Translator: pellaeon \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.po b/l10n/zh_TW/files.po index e5e24b852c..cc1af0ec46 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: pellaeon \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_external.po b/l10n/zh_TW/files_external.po index e0d900e603..9e6eb79d75 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: pellaeon \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 0107a2e95b..b3f13f0eef 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:31+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 9f1bc9f49c..6fcd57d0a7 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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 21dd00da14..049c6ba2bc 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_TW/settings.po index a4e6fedc63..ea10d97a23 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:24+0000\n" +"POT-Creation-Date: 2013-07-20 01:55-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: pellaeon \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_ldap.po b/l10n/zh_TW/user_ldap.po index daf0d5073c..b1d22a3441 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-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 05:25+0000\n" +"POT-Creation-Date: 2013-07-20 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 05:25+0000\n" "Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" From 9a13b687ccac4782650d3048992140f5324adb45 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 21 Jul 2013 02:02:41 -0400 Subject: [PATCH 103/108] [tx-robot] updated from transifex --- apps/files/l10n/tr.php | 6 ++++++ core/l10n/tr.php | 6 ++++++ l10n/af_ZA/core.po | 4 ++-- l10n/af_ZA/lib.po | 4 ++-- l10n/ar/core.po | 4 ++-- l10n/ar/files.po | 4 ++-- l10n/ar/files_external.po | 4 ++-- l10n/ar/files_sharing.po | 4 ++-- l10n/ar/files_trashbin.po | 4 ++-- l10n/ar/lib.po | 4 ++-- l10n/ar/settings.po | 4 ++-- l10n/ar/user_ldap.po | 4 ++-- l10n/bg_BG/core.po | 4 ++-- l10n/bg_BG/files.po | 4 ++-- l10n/bg_BG/files_external.po | 4 ++-- l10n/bg_BG/files_sharing.po | 4 ++-- l10n/bg_BG/files_trashbin.po | 4 ++-- l10n/bg_BG/lib.po | 4 ++-- l10n/bg_BG/settings.po | 4 ++-- l10n/bg_BG/user_ldap.po | 4 ++-- l10n/bn_BD/core.po | 4 ++-- l10n/bn_BD/files.po | 4 ++-- l10n/bn_BD/files_external.po | 4 ++-- l10n/bn_BD/files_sharing.po | 4 ++-- l10n/bn_BD/files_trashbin.po | 4 ++-- l10n/bn_BD/lib.po | 4 ++-- l10n/bn_BD/settings.po | 4 ++-- l10n/bn_BD/user_ldap.po | 4 ++-- l10n/bs/core.po | 4 ++-- l10n/bs/files.po | 4 ++-- l10n/bs/files_trashbin.po | 4 ++-- l10n/ca/core.po | 4 ++-- l10n/ca/files.po | 4 ++-- l10n/ca/files_external.po | 4 ++-- l10n/ca/files_sharing.po | 4 ++-- l10n/ca/files_trashbin.po | 4 ++-- l10n/ca/lib.po | 4 ++-- l10n/ca/settings.po | 4 ++-- l10n/ca/user_ldap.po | 4 ++-- l10n/cs_CZ/core.po | 4 ++-- l10n/cs_CZ/files.po | 4 ++-- l10n/cs_CZ/files_external.po | 4 ++-- l10n/cs_CZ/files_sharing.po | 4 ++-- l10n/cs_CZ/files_trashbin.po | 4 ++-- l10n/cs_CZ/lib.po | 4 ++-- l10n/cs_CZ/settings.po | 4 ++-- l10n/cs_CZ/user_ldap.po | 4 ++-- l10n/cy_GB/core.po | 4 ++-- l10n/cy_GB/files.po | 4 ++-- l10n/cy_GB/files_external.po | 4 ++-- l10n/cy_GB/files_sharing.po | 4 ++-- l10n/cy_GB/files_trashbin.po | 4 ++-- l10n/cy_GB/lib.po | 4 ++-- l10n/cy_GB/settings.po | 4 ++-- l10n/cy_GB/user_ldap.po | 4 ++-- l10n/da/core.po | 4 ++-- l10n/da/files.po | 4 ++-- l10n/da/files_external.po | 4 ++-- l10n/da/files_sharing.po | 4 ++-- l10n/da/files_trashbin.po | 4 ++-- l10n/da/lib.po | 4 ++-- l10n/da/settings.po | 4 ++-- l10n/da/user_ldap.po | 4 ++-- l10n/de/core.po | 4 ++-- l10n/de/files.po | 4 ++-- l10n/de/files_external.po | 4 ++-- l10n/de/files_sharing.po | 4 ++-- l10n/de/files_trashbin.po | 4 ++-- l10n/de/lib.po | 4 ++-- l10n/de/settings.po | 4 ++-- l10n/de/user_ldap.po | 4 ++-- l10n/de_DE/core.po | 4 ++-- l10n/de_DE/files.po | 4 ++-- l10n/de_DE/files_external.po | 4 ++-- l10n/de_DE/files_sharing.po | 4 ++-- l10n/de_DE/files_trashbin.po | 4 ++-- l10n/de_DE/lib.po | 4 ++-- l10n/de_DE/settings.po | 4 ++-- l10n/de_DE/user_ldap.po | 4 ++-- l10n/el/core.po | 4 ++-- l10n/el/files.po | 4 ++-- l10n/el/files_external.po | 4 ++-- l10n/el/files_sharing.po | 4 ++-- l10n/el/files_trashbin.po | 4 ++-- l10n/el/lib.po | 4 ++-- l10n/el/settings.po | 4 ++-- l10n/el/user_ldap.po | 4 ++-- l10n/en@pirate/files.po | 4 ++-- l10n/en@pirate/files_sharing.po | 4 ++-- l10n/eo/core.po | 4 ++-- l10n/eo/files.po | 4 ++-- l10n/eo/files_external.po | 4 ++-- l10n/eo/files_sharing.po | 4 ++-- l10n/eo/files_trashbin.po | 4 ++-- l10n/eo/lib.po | 4 ++-- l10n/eo/settings.po | 4 ++-- l10n/eo/user_ldap.po | 4 ++-- l10n/es/core.po | 4 ++-- l10n/es/files.po | 4 ++-- l10n/es/files_external.po | 4 ++-- l10n/es/files_sharing.po | 4 ++-- l10n/es/files_trashbin.po | 4 ++-- l10n/es/lib.po | 4 ++-- l10n/es/settings.po | 4 ++-- l10n/es/user_ldap.po | 4 ++-- l10n/es_AR/core.po | 4 ++-- l10n/es_AR/files.po | 4 ++-- l10n/es_AR/files_external.po | 4 ++-- l10n/es_AR/files_sharing.po | 4 ++-- l10n/es_AR/files_trashbin.po | 4 ++-- l10n/es_AR/lib.po | 4 ++-- l10n/es_AR/settings.po | 4 ++-- l10n/es_AR/user_ldap.po | 4 ++-- l10n/et_EE/core.po | 4 ++-- l10n/et_EE/files.po | 4 ++-- l10n/et_EE/files_external.po | 4 ++-- l10n/et_EE/files_sharing.po | 4 ++-- l10n/et_EE/files_trashbin.po | 4 ++-- l10n/et_EE/lib.po | 4 ++-- l10n/et_EE/settings.po | 4 ++-- l10n/et_EE/user_ldap.po | 4 ++-- l10n/eu/core.po | 4 ++-- l10n/eu/files.po | 4 ++-- l10n/eu/files_external.po | 4 ++-- l10n/eu/files_sharing.po | 4 ++-- l10n/eu/files_trashbin.po | 4 ++-- l10n/eu/lib.po | 4 ++-- l10n/eu/settings.po | 4 ++-- l10n/eu/user_ldap.po | 4 ++-- l10n/fa/core.po | 4 ++-- l10n/fa/files.po | 4 ++-- l10n/fa/files_external.po | 4 ++-- l10n/fa/files_sharing.po | 4 ++-- l10n/fa/files_trashbin.po | 4 ++-- l10n/fa/lib.po | 4 ++-- l10n/fa/settings.po | 4 ++-- l10n/fa/user_ldap.po | 4 ++-- l10n/fi_FI/core.po | 4 ++-- l10n/fi_FI/files.po | 4 ++-- l10n/fi_FI/files_external.po | 4 ++-- l10n/fi_FI/files_sharing.po | 4 ++-- l10n/fi_FI/files_trashbin.po | 4 ++-- l10n/fi_FI/lib.po | 4 ++-- l10n/fi_FI/settings.po | 4 ++-- l10n/fi_FI/user_ldap.po | 4 ++-- l10n/fr/core.po | 4 ++-- l10n/fr/files.po | 4 ++-- l10n/fr/files_external.po | 4 ++-- l10n/fr/files_sharing.po | 4 ++-- l10n/fr/files_trashbin.po | 4 ++-- l10n/fr/lib.po | 4 ++-- l10n/fr/settings.po | 4 ++-- l10n/fr/user_ldap.po | 4 ++-- l10n/gl/core.po | 4 ++-- l10n/gl/files.po | 4 ++-- l10n/gl/files_external.po | 4 ++-- l10n/gl/files_sharing.po | 4 ++-- l10n/gl/files_trashbin.po | 4 ++-- l10n/gl/lib.po | 4 ++-- l10n/gl/settings.po | 4 ++-- l10n/gl/user_ldap.po | 4 ++-- l10n/he/core.po | 4 ++-- l10n/he/files.po | 4 ++-- l10n/he/files_external.po | 4 ++-- l10n/he/files_sharing.po | 4 ++-- l10n/he/files_trashbin.po | 4 ++-- l10n/he/lib.po | 4 ++-- l10n/he/settings.po | 4 ++-- l10n/he/user_ldap.po | 4 ++-- l10n/hi/core.po | 4 ++-- l10n/hi/files.po | 4 ++-- l10n/hi/files_trashbin.po | 4 ++-- l10n/hi/lib.po | 4 ++-- l10n/hi/settings.po | 4 ++-- l10n/hi/user_ldap.po | 4 ++-- l10n/hr/core.po | 4 ++-- l10n/hr/files.po | 4 ++-- l10n/hr/files_external.po | 4 ++-- l10n/hr/files_sharing.po | 4 ++-- l10n/hr/files_trashbin.po | 4 ++-- l10n/hr/lib.po | 4 ++-- l10n/hr/settings.po | 4 ++-- l10n/hr/user_ldap.po | 4 ++-- l10n/hu_HU/core.po | 4 ++-- l10n/hu_HU/files.po | 4 ++-- l10n/hu_HU/files_external.po | 4 ++-- l10n/hu_HU/files_sharing.po | 4 ++-- l10n/hu_HU/files_trashbin.po | 4 ++-- l10n/hu_HU/lib.po | 4 ++-- l10n/hu_HU/settings.po | 4 ++-- l10n/hu_HU/user_ldap.po | 4 ++-- l10n/hy/files.po | 4 ++-- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 ++-- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 ++-- l10n/ia/core.po | 4 ++-- l10n/ia/files.po | 4 ++-- l10n/ia/files_external.po | 4 ++-- l10n/ia/files_sharing.po | 4 ++-- l10n/ia/files_trashbin.po | 4 ++-- l10n/ia/lib.po | 4 ++-- l10n/ia/settings.po | 4 ++-- l10n/ia/user_ldap.po | 4 ++-- l10n/id/core.po | 4 ++-- l10n/id/files.po | 4 ++-- l10n/id/files_external.po | 4 ++-- l10n/id/files_sharing.po | 4 ++-- l10n/id/files_trashbin.po | 4 ++-- l10n/id/lib.po | 4 ++-- l10n/id/settings.po | 4 ++-- l10n/id/user_ldap.po | 4 ++-- l10n/is/core.po | 4 ++-- l10n/is/files.po | 4 ++-- l10n/is/files_external.po | 4 ++-- l10n/is/files_sharing.po | 4 ++-- l10n/is/files_trashbin.po | 4 ++-- l10n/is/lib.po | 4 ++-- l10n/is/settings.po | 4 ++-- l10n/is/user_ldap.po | 4 ++-- l10n/it/core.po | 4 ++-- l10n/it/files.po | 4 ++-- l10n/it/files_external.po | 4 ++-- l10n/it/files_sharing.po | 4 ++-- l10n/it/files_trashbin.po | 4 ++-- l10n/it/lib.po | 4 ++-- l10n/it/settings.po | 4 ++-- l10n/it/user_ldap.po | 4 ++-- l10n/ja_JP/core.po | 4 ++-- l10n/ja_JP/files.po | 4 ++-- l10n/ja_JP/files_external.po | 4 ++-- l10n/ja_JP/files_sharing.po | 4 ++-- l10n/ja_JP/files_trashbin.po | 4 ++-- l10n/ja_JP/lib.po | 4 ++-- l10n/ja_JP/settings.po | 4 ++-- l10n/ja_JP/user_ldap.po | 4 ++-- l10n/ka/files.po | 4 ++-- l10n/ka/files_sharing.po | 4 ++-- l10n/ka_GE/core.po | 4 ++-- l10n/ka_GE/files.po | 4 ++-- l10n/ka_GE/files_external.po | 4 ++-- l10n/ka_GE/files_sharing.po | 4 ++-- l10n/ka_GE/files_trashbin.po | 4 ++-- l10n/ka_GE/lib.po | 4 ++-- l10n/ka_GE/settings.po | 4 ++-- l10n/ka_GE/user_ldap.po | 4 ++-- l10n/ko/core.po | 4 ++-- l10n/ko/files.po | 4 ++-- l10n/ko/files_external.po | 4 ++-- l10n/ko/files_sharing.po | 4 ++-- l10n/ko/files_trashbin.po | 4 ++-- l10n/ko/lib.po | 4 ++-- l10n/ko/settings.po | 4 ++-- l10n/ko/user_ldap.po | 4 ++-- l10n/ku_IQ/core.po | 4 ++-- l10n/ku_IQ/files.po | 4 ++-- l10n/ku_IQ/files_sharing.po | 4 ++-- l10n/ku_IQ/files_trashbin.po | 4 ++-- l10n/ku_IQ/lib.po | 4 ++-- l10n/ku_IQ/settings.po | 4 ++-- l10n/ku_IQ/user_ldap.po | 4 ++-- l10n/lb/core.po | 4 ++-- l10n/lb/files.po | 4 ++-- l10n/lb/files_external.po | 4 ++-- l10n/lb/files_sharing.po | 4 ++-- l10n/lb/files_trashbin.po | 4 ++-- l10n/lb/lib.po | 4 ++-- l10n/lb/settings.po | 4 ++-- l10n/lb/user_ldap.po | 4 ++-- l10n/lt_LT/core.po | 4 ++-- l10n/lt_LT/files.po | 4 ++-- l10n/lt_LT/files_external.po | 4 ++-- l10n/lt_LT/files_sharing.po | 4 ++-- l10n/lt_LT/files_trashbin.po | 4 ++-- l10n/lt_LT/lib.po | 4 ++-- l10n/lt_LT/settings.po | 4 ++-- l10n/lt_LT/user_ldap.po | 4 ++-- l10n/lv/core.po | 4 ++-- l10n/lv/files.po | 4 ++-- l10n/lv/files_external.po | 4 ++-- l10n/lv/files_sharing.po | 4 ++-- l10n/lv/files_trashbin.po | 4 ++-- l10n/lv/lib.po | 4 ++-- l10n/lv/settings.po | 4 ++-- l10n/lv/user_ldap.po | 4 ++-- l10n/mk/core.po | 4 ++-- l10n/mk/files.po | 4 ++-- l10n/mk/files_external.po | 4 ++-- l10n/mk/files_sharing.po | 4 ++-- l10n/mk/files_trashbin.po | 4 ++-- l10n/mk/lib.po | 4 ++-- l10n/mk/settings.po | 4 ++-- l10n/mk/user_ldap.po | 4 ++-- l10n/ms_MY/core.po | 4 ++-- l10n/ms_MY/files.po | 4 ++-- l10n/ms_MY/files_external.po | 4 ++-- l10n/ms_MY/files_sharing.po | 4 ++-- l10n/ms_MY/files_trashbin.po | 4 ++-- l10n/ms_MY/lib.po | 4 ++-- l10n/ms_MY/settings.po | 4 ++-- l10n/ms_MY/user_ldap.po | 4 ++-- l10n/my_MM/core.po | 4 ++-- l10n/my_MM/files.po | 4 ++-- l10n/my_MM/files_sharing.po | 4 ++-- l10n/my_MM/lib.po | 4 ++-- l10n/nb_NO/core.po | 4 ++-- l10n/nb_NO/files.po | 4 ++-- l10n/nb_NO/files_external.po | 4 ++-- l10n/nb_NO/files_sharing.po | 4 ++-- l10n/nb_NO/files_trashbin.po | 4 ++-- l10n/nb_NO/lib.po | 4 ++-- l10n/nb_NO/settings.po | 4 ++-- l10n/nb_NO/user_ldap.po | 4 ++-- l10n/nl/core.po | 4 ++-- l10n/nl/files.po | 4 ++-- l10n/nl/files_external.po | 4 ++-- l10n/nl/files_sharing.po | 4 ++-- l10n/nl/files_trashbin.po | 4 ++-- l10n/nl/lib.po | 4 ++-- l10n/nl/settings.po | 4 ++-- l10n/nl/user_ldap.po | 4 ++-- l10n/nn_NO/core.po | 4 ++-- l10n/nn_NO/files.po | 4 ++-- l10n/nn_NO/files_external.po | 4 ++-- l10n/nn_NO/files_sharing.po | 4 ++-- l10n/nn_NO/files_trashbin.po | 4 ++-- l10n/nn_NO/lib.po | 4 ++-- l10n/nn_NO/settings.po | 4 ++-- l10n/nn_NO/user_ldap.po | 4 ++-- l10n/oc/core.po | 4 ++-- l10n/oc/files.po | 4 ++-- l10n/oc/files_external.po | 4 ++-- l10n/oc/files_sharing.po | 4 ++-- l10n/oc/files_trashbin.po | 4 ++-- l10n/oc/lib.po | 4 ++-- l10n/oc/settings.po | 4 ++-- l10n/oc/user_ldap.po | 4 ++-- l10n/pl/core.po | 4 ++-- l10n/pl/files.po | 4 ++-- l10n/pl/files_external.po | 4 ++-- l10n/pl/files_sharing.po | 4 ++-- l10n/pl/files_trashbin.po | 4 ++-- l10n/pl/lib.po | 4 ++-- l10n/pl/settings.po | 4 ++-- l10n/pl/user_ldap.po | 4 ++-- l10n/pt_BR/core.po | 4 ++-- l10n/pt_BR/files.po | 4 ++-- l10n/pt_BR/files_external.po | 4 ++-- l10n/pt_BR/files_sharing.po | 4 ++-- l10n/pt_BR/files_trashbin.po | 4 ++-- l10n/pt_BR/lib.po | 4 ++-- l10n/pt_BR/settings.po | 4 ++-- l10n/pt_BR/user_ldap.po | 4 ++-- l10n/pt_PT/core.po | 4 ++-- l10n/pt_PT/files.po | 4 ++-- l10n/pt_PT/files_external.po | 4 ++-- l10n/pt_PT/files_sharing.po | 4 ++-- l10n/pt_PT/files_trashbin.po | 4 ++-- l10n/pt_PT/lib.po | 4 ++-- l10n/pt_PT/settings.po | 4 ++-- l10n/pt_PT/user_ldap.po | 4 ++-- l10n/ro/core.po | 4 ++-- l10n/ro/files.po | 4 ++-- l10n/ro/files_external.po | 4 ++-- l10n/ro/files_sharing.po | 4 ++-- l10n/ro/files_trashbin.po | 4 ++-- l10n/ro/lib.po | 4 ++-- l10n/ro/settings.po | 4 ++-- l10n/ro/user_ldap.po | 4 ++-- l10n/ru/core.po | 4 ++-- l10n/ru/files.po | 4 ++-- l10n/ru/files_external.po | 4 ++-- l10n/ru/files_sharing.po | 4 ++-- l10n/ru/files_trashbin.po | 4 ++-- l10n/ru/lib.po | 4 ++-- l10n/ru/settings.po | 4 ++-- l10n/ru/user_ldap.po | 4 ++-- l10n/si_LK/core.po | 4 ++-- l10n/si_LK/files.po | 4 ++-- l10n/si_LK/files_external.po | 4 ++-- l10n/si_LK/files_sharing.po | 4 ++-- l10n/si_LK/files_trashbin.po | 4 ++-- l10n/si_LK/lib.po | 4 ++-- l10n/si_LK/settings.po | 4 ++-- l10n/si_LK/user_ldap.po | 4 ++-- l10n/sk_SK/core.po | 4 ++-- l10n/sk_SK/files.po | 4 ++-- l10n/sk_SK/files_external.po | 4 ++-- l10n/sk_SK/files_sharing.po | 4 ++-- l10n/sk_SK/files_trashbin.po | 4 ++-- l10n/sk_SK/lib.po | 4 ++-- l10n/sk_SK/settings.po | 4 ++-- l10n/sk_SK/user_ldap.po | 4 ++-- l10n/sl/core.po | 4 ++-- l10n/sl/files.po | 4 ++-- l10n/sl/files_external.po | 4 ++-- l10n/sl/files_sharing.po | 4 ++-- l10n/sl/files_trashbin.po | 4 ++-- l10n/sl/lib.po | 4 ++-- l10n/sl/settings.po | 4 ++-- l10n/sl/user_ldap.po | 4 ++-- l10n/sq/core.po | 4 ++-- l10n/sq/files.po | 4 ++-- l10n/sq/files_external.po | 4 ++-- l10n/sq/files_sharing.po | 4 ++-- l10n/sq/files_trashbin.po | 4 ++-- l10n/sq/lib.po | 4 ++-- l10n/sq/settings.po | 4 ++-- l10n/sq/user_ldap.po | 4 ++-- l10n/sr/core.po | 4 ++-- l10n/sr/files.po | 4 ++-- l10n/sr/files_external.po | 4 ++-- l10n/sr/files_sharing.po | 4 ++-- l10n/sr/files_trashbin.po | 4 ++-- l10n/sr/lib.po | 4 ++-- l10n/sr/settings.po | 4 ++-- l10n/sr/user_ldap.po | 4 ++-- l10n/sr@latin/core.po | 4 ++-- l10n/sr@latin/files.po | 4 ++-- l10n/sr@latin/files_external.po | 4 ++-- l10n/sr@latin/files_sharing.po | 4 ++-- l10n/sr@latin/files_trashbin.po | 4 ++-- l10n/sr@latin/lib.po | 4 ++-- l10n/sr@latin/settings.po | 4 ++-- l10n/sv/core.po | 4 ++-- l10n/sv/files.po | 4 ++-- l10n/sv/files_external.po | 4 ++-- l10n/sv/files_sharing.po | 4 ++-- l10n/sv/files_trashbin.po | 4 ++-- l10n/sv/lib.po | 4 ++-- l10n/sv/settings.po | 4 ++-- l10n/sv/user_ldap.po | 4 ++-- l10n/ta_LK/core.po | 4 ++-- l10n/ta_LK/files.po | 4 ++-- l10n/ta_LK/files_external.po | 4 ++-- l10n/ta_LK/files_sharing.po | 4 ++-- l10n/ta_LK/files_trashbin.po | 4 ++-- l10n/ta_LK/lib.po | 4 ++-- l10n/ta_LK/settings.po | 4 ++-- l10n/ta_LK/user_ldap.po | 4 ++-- l10n/te/core.po | 4 ++-- l10n/te/files.po | 4 ++-- l10n/te/files_external.po | 4 ++-- l10n/te/files_trashbin.po | 4 ++-- l10n/te/lib.po | 4 ++-- l10n/te/settings.po | 4 ++-- l10n/te/user_ldap.po | 4 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 ++-- l10n/th_TH/files.po | 4 ++-- l10n/th_TH/files_external.po | 4 ++-- l10n/th_TH/files_sharing.po | 4 ++-- l10n/th_TH/files_trashbin.po | 4 ++-- l10n/th_TH/lib.po | 4 ++-- l10n/th_TH/settings.po | 4 ++-- l10n/th_TH/user_ldap.po | 4 ++-- l10n/tr/core.po | 18 +++++++++--------- l10n/tr/files.po | 18 +++++++++--------- l10n/tr/files_external.po | 4 ++-- l10n/tr/files_sharing.po | 4 ++-- l10n/tr/files_trashbin.po | 4 ++-- l10n/tr/lib.po | 4 ++-- l10n/tr/settings.po | 10 +++++----- l10n/tr/user_ldap.po | 4 ++-- l10n/ug/core.po | 4 ++-- l10n/ug/files.po | 4 ++-- l10n/ug/files_external.po | 4 ++-- l10n/ug/files_sharing.po | 4 ++-- l10n/ug/files_trashbin.po | 4 ++-- l10n/ug/lib.po | 4 ++-- l10n/ug/settings.po | 4 ++-- l10n/ug/user_ldap.po | 4 ++-- l10n/uk/core.po | 4 ++-- l10n/uk/files.po | 4 ++-- l10n/uk/files_external.po | 4 ++-- l10n/uk/files_sharing.po | 4 ++-- l10n/uk/files_trashbin.po | 4 ++-- l10n/uk/lib.po | 4 ++-- l10n/uk/settings.po | 4 ++-- l10n/uk/user_ldap.po | 4 ++-- l10n/ur_PK/core.po | 4 ++-- l10n/ur_PK/files.po | 4 ++-- l10n/ur_PK/files_trashbin.po | 4 ++-- l10n/ur_PK/lib.po | 4 ++-- l10n/ur_PK/settings.po | 4 ++-- l10n/ur_PK/user_ldap.po | 4 ++-- l10n/vi/core.po | 4 ++-- l10n/vi/files.po | 4 ++-- l10n/vi/files_external.po | 4 ++-- l10n/vi/files_sharing.po | 4 ++-- l10n/vi/files_trashbin.po | 4 ++-- l10n/vi/lib.po | 4 ++-- l10n/vi/settings.po | 4 ++-- l10n/vi/user_ldap.po | 4 ++-- l10n/zh_CN.GB2312/core.po | 4 ++-- l10n/zh_CN.GB2312/files.po | 4 ++-- l10n/zh_CN.GB2312/files_external.po | 4 ++-- l10n/zh_CN.GB2312/files_sharing.po | 4 ++-- l10n/zh_CN.GB2312/files_trashbin.po | 4 ++-- l10n/zh_CN.GB2312/lib.po | 4 ++-- l10n/zh_CN.GB2312/settings.po | 4 ++-- l10n/zh_CN.GB2312/user_ldap.po | 4 ++-- l10n/zh_CN/core.po | 4 ++-- l10n/zh_CN/files.po | 4 ++-- l10n/zh_CN/files_external.po | 4 ++-- l10n/zh_CN/files_sharing.po | 4 ++-- l10n/zh_CN/files_trashbin.po | 4 ++-- l10n/zh_CN/lib.po | 4 ++-- l10n/zh_CN/settings.po | 4 ++-- l10n/zh_CN/user_ldap.po | 4 ++-- l10n/zh_HK/core.po | 4 ++-- l10n/zh_HK/files.po | 4 ++-- l10n/zh_HK/files_external.po | 4 ++-- l10n/zh_HK/files_sharing.po | 4 ++-- l10n/zh_HK/files_trashbin.po | 4 ++-- l10n/zh_HK/lib.po | 4 ++-- l10n/zh_HK/settings.po | 4 ++-- l10n/zh_HK/user_ldap.po | 4 ++-- l10n/zh_TW/core.po | 4 ++-- l10n/zh_TW/files.po | 4 ++-- l10n/zh_TW/files_external.po | 4 ++-- l10n/zh_TW/files_sharing.po | 4 ++-- l10n/zh_TW/files_trashbin.po | 4 ++-- l10n/zh_TW/lib.po | 4 ++-- l10n/zh_TW/settings.po | 4 ++-- l10n/zh_TW/user_ldap.po | 4 ++-- settings/l10n/tr.php | 2 ++ 537 files changed, 1086 insertions(+), 1072 deletions(-) diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 0b2dbb12dd..6778141c38 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -1,6 +1,8 @@ "%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", @@ -65,11 +68,14 @@ "You don’t have write permissions here." => "Buraya erişim hakkınız yok.", "Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!", "Download" => "İndir", +"Size (MB)" => "Boyut (MB)", "Unshare" => "Paylaşılmayan", "Upload too large" => "Yükleme çok büyük", "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/core/l10n/tr.php b/core/l10n/tr.php index 0a56af9418..b8701abffa 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -1,4 +1,5 @@ "%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!
Did you make sure your email/username was right?" => "Isteği başarısız oldu!
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,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" => "Merhaba,

%s sizinle »%s« paylaşımında bulundu.
Paylaşımı gör!

İ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/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 247283f729..2f3865dfcc 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 06:02+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 19c0feb317..ea2ba4b953 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 06:02+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 6d3c9fa7b4..7d408ce2db 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ar/files.po index 8cd6cecd02..1e549447f3 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ar/files_external.po index 5bed86f1a1..67c2f893b6 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 e03ef792aa..cadce0d1ba 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 241b7c6c72..d45f3373d4 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 ba4a0a2221..398bd3788c 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index da1a98d43c..bde35ff507 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 2cc2742b8f..258afa2cf1 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 4e6257b9ab..fcd4484f1c 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/bg_BG/files.po index d2c5d7ca6d..41b0023567 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bg_BG/files_external.po index a83766c4f7..d4b8ea05cc 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 7612616580..b8688a4863 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 d4310d70c4..44d8da2e55 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Димитър Кръстев \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 8960d82ee5..8a3103c256 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/bg_BG/settings.po index 4458df335c..ad854239b2 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 c2b3697827..619b9e1226 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 3b434f752c..9e9a4300ec 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/bn_BD/files.po index 9857e992d8..b88c1839dd 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/bn_BD/files_external.po index bd6d972357..42b010d44d 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 dc80c0b484..e700e6b330 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 0b6317b2ab..e8cadc39b5 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 a1f9b4a5b5..0fa95b70b0 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/bn_BD/settings.po index d381131e97..2a22084f25 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 baa0e5aa5d..f132170c1c 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 da0e88a6ac..5a66110b49 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index a2ade79098..ae5cec0ce8 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index a4fb8e94f1..07801fced7 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 f07d742898..b7aae71986 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ca/files.po index 6a96023128..e49d8057f1 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index df136c4a2f..459020c51e 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index b158000c93..ccf09824a4 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 9743d04e43..46a9ac1e2e 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 5d11e048c2..6cd10916da 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index f6659657fa..3daf3f5527 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index 62e4f4e6b1..4555aa024c 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+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 410e1b5b7d..b4d3d8658d 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/cs_CZ/files.po index 9201d076a0..0031f740b0 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/cs_CZ/files_external.po index f146db4fb5..7a40dfd35c 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 c5d991be85..ebd613fe53 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 5c6b197539..4940d125d9 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 778306e0dd..51310ad5fb 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/cs_CZ/settings.po index 9e499ee9a7..c562f771ee 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Honza K. \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 6d17ce849b..7619088770 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: Tomáš Chvátal \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 3122a2899d..7c59f365e2 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/cy_GB/files.po index 04fb3694ba..44842de207 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/cy_GB/files_external.po index 7a79089499..b9875092e3 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 361ef7b405..4bfe9d414b 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 dc10b3b1c1..ac6cc5d17b 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: ubuntucymraeg \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 bdd079bad3..187168f32f 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/cy_GB/settings.po index a7f4151dc9..1c3a9d0d58 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 b6853734c8..8f9b2850cd 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 493a9f64e9..5eee534841 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/da/files.po index 78e7324d0d..ed24a0ed8d 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/da/files_external.po index 95611a7b21..070371e606 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 fff250d6c5..d3952609c2 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 549052a7ec..49da550aac 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 abf04f8ef1..7318d9a9bd 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index e90aaf2525..9c1fa1bafd 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Morten Juhl-Johansen Zölde-Fejér \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 bafdeccfad..da28872485 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 ab26c9b98a..9bc15784b5 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files.po b/l10n/de/files.po index f84e468a7f..577f7c3661 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: kabum \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 3e088b4ed1..46b20f1aed 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 5841a3ef57..08159e1148 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 8edc2f93b3..5891672725 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index ea5d9e6c3c..17228d0543 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 52016edcac..571cbc3076 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 95ff273d42..5b452c3ffe 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index ee9dd584fe..7ea8592c01 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 9418a84859..f8d500ada5 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index a3dbf6d6ba..aa6a126abd 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 5392e97cc5..3eb7a56d48 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: JamFX \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 8a3fcb1a2f..ce42df710e 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 71f8613d91..1198a4ebae 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 0b83de46c7..5b5d5712cb 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index a06d9c8fc9..4d6cf08c55 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 0a3fb65f11..27602d3fff 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/el/files.po index dedc37b360..3aaba2520a 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/el/files_external.po index a26495fe59..7f4b66fd16 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: KAT.RAT12 \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 0f34d77543..f630b15713 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 c5f7936f83..f7fe557853 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 6ff3bfa05d..08ee8dfa44 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 72c05d3408..293de151bd 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 5c6d847090..94bcb96cc2 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 1f87cab32e..718639933a 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 898386222f..c58824dffd 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 96b3f9c6be..5322294aae 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/eo/files.po index 4626d5b383..d68c4a8627 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/eo/files_external.po index a2ba37866f..ecb455cd66 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 875b59a6ab..add92cf917 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 c216f5aad2..6768a5f43f 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 d3d0ac83c2..4061d98c53 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 4c257a5578..d801a7ef11 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 0c8957a499..85d015de44 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 4ab55660eb..bb79b51123 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/es/files.po index d762873c1f..a500135a93 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: qdneren \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_external.po b/l10n/es/files_external.po index f7b03b2dbc..a238eff0a6 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Korrosivo \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 1f80f68de2..327c1a6b52 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Korrosivo \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 fcd421ea8b..4b236f791b 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Korrosivo \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 3cbfaadc83..4d4b751e9d 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 1cc3689a7f..a4d1f095e6 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: qdneren \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 9f63511193..a45ae64075 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: xhiena \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 2a1024aa25..7853757327 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: cjtess \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.po b/l10n/es_AR/files.po index ddf342712a..a363d4afde 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: cjtess \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_external.po b/l10n/es_AR/files_external.po index 700b9a6ead..947c1f005b 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: cjtess \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 2c3005a7fd..6b8ca955c1 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: cjtess \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 3d1bec85ce..e0f734a6f0 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 6521a09c87..0529cf4cfe 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: cjtess \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/settings.po b/l10n/es_AR/settings.po index d7ed2bffa0..4b90f1ac6a 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: cjtess \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 3f26ec0a93..7703faa90f 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: cjtess \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 5fcfa90008..31b477107b 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/et_EE/files.po index 7395d583aa..96f8fc66c4 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: pisike.sipelgas \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_external.po b/l10n/et_EE/files_external.po index 2dff37eb05..8080faaf4a 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Rivo Zängov \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 dd2a5144f0..5cb82c9c71 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Rivo Zängov \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 f3db48c559..3a28fdf33a 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Rivo Zängov \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 da279d0c83..ec94602709 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/et_EE/settings.po index fc15a2ede0..9c24fa2ca7 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: pisike.sipelgas \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 be38a926c2..75c1d685a0 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: pisike.sipelgas \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 319a23ea98..3892b3fcb0 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: Piarres Beobide \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.po b/l10n/eu/files.po index 01e83a26e5..c63e1cbe58 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Piarres Beobide \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_external.po b/l10n/eu/files_external.po index 82512fad9b..d231953586 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Piarres Beobide \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 1b0f61ed0b..77c003daef 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 52c19f772a..b6c0850dba 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 f0ccfeabe4..327ba994f9 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 5b42403953..3db9f9d0aa 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 370dc65775..434d7dec3a 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 35aa6001f9..09987a7500 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: miki_mika1362 \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.po b/l10n/fa/files.po index 1d994bdeb7..9d1fd43438 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: miki_mika1362 \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_external.po b/l10n/fa/files_external.po index 6343069c70..398b8a588b 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 4b88b8dd53..7a70c7c493 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: miki_mika1362 \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 cd1859e120..b9f0805e97 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 eaf7844844..d079c251e6 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: miki_mika1362 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 7173e4be52..ca240ee627 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: miki_mika1362 \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 76d91182b4..4c0486442c 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 051be1ba38..e2515cc6df 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/fi_FI/files.po index b00f083c70..98fd465c7f 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Jiri Grönroos \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_external.po b/l10n/fi_FI/files_external.po index a1ea7b6f56..3c2fe767e5 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 428fb7e6a9..4e2fe128db 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Jiri Grönroos \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_trashbin.po b/l10n/fi_FI/files_trashbin.po index cc2926e2a7..d1c66350ab 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 eecd94cf71..86cf608c82 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/fi_FI/settings.po index 0fc75a7a7b..1427a0d57d 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Jiri Grönroos \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/user_ldap.po b/l10n/fi_FI/user_ldap.po index ab514c969d..f659a07ada 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 09f2491877..d0454398a4 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/fr/files.po index 180d4b2a04..4a24c176b3 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Adalberto Rodrigues \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_external.po b/l10n/fr/files_external.po index 413d3ea410..d19bb45e2c 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 a80ac96d00..075a482fed 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: square \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 9e02f3849c..3ecabc7555 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 29dc19e0fa..10e9decc48 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 8c90c870b3..75e97811c0 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Adalberto Rodrigues \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 4c5b7538b6..5d44e74ddb 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: plachance \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 b821957264..a4fcf80b8b 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: mbouzada \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.po b/l10n/gl/files.po index 798508c61d..2f927f2c3a 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: mbouzada \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_external.po b/l10n/gl/files_external.po index 829dfffebe..fe0a081ebb 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 603746f6cb..f52cf37d89 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: mbouzada \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 e6102d8c0b..e7b1d86a5e 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 28659c847e..e8202bda7e 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index b6271c71cc..801aa09add 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: mbouzada \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 57e5ea3d15..211925fe4b 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: mbouzada \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 f0b9473289..bc31c308f1 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/he/files.po index 24b332a06d..d16bc11cb7 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/he/files_external.po index 4c94d7d370..096c407b2b 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 49956d609f..2f07688c11 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 31fe509820..3340f6f212 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Yaron Shahrabani \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 d46dfc5497..2fd01e2743 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 53f2d130bc..7d66618873 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 0abc4cb424..49d044d28a 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 93b91212fe..be5c056bfa 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index b00d97103c..c9878f0603 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index d1901a0e62..3533c4df17 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 c0448362f2..6763d07d32 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 06:02+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 9c9361e51b..43a7b60b16 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 77d470cef4..8a4824c6d3 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 e768f45aa3..24f6f9d593 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/hr/files.po index f320ad1823..c2ce766e54 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hr/files_external.po index 01cb930780..c7a16bc5f9 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 587fb99514..de75135e70 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 94099a0a61..7efe119f99 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 6eab6391bc..c0b4bf05c9 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index cf9b66823b..6deda52644 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 6735a4ab3f..f6474af8ca 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 462664adda..03ff2ffcef 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: Laszlo Tornoci \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.po b/l10n/hu_HU/files.po index 9e612ed9b8..fbf2e7e420 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Laszlo Tornoci \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_external.po b/l10n/hu_HU/files_external.po index 553bafd3bd..d8f750da25 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Laszlo Tornoci \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 86b4e15495..4eee4d9f7c 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Laszlo Tornoci \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 7ddefc5503..edf9f7db1e 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 6f042b01b8..1b66abf4ab 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/hu_HU/settings.po index a68c841a25..ac8c337a06 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Laszlo Tornoci \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 89b1052f84..4f9fcc5072 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: Laszlo Tornoci \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 aab5278935..36d329f21a 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/hy/files_external.po index d8d6a9550f..f3ecefec3f 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-20 01:54-0400\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 0a3ec1710b..68186b7d27 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 f4acec6421..191a88eb44 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-20 01:54-0400\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \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 d0115c2f75..385c3250e7 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 2f383783ef..9bf323eb2f 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ia/files.po index 4c384166a4..d60aa815cf 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ia/files_external.po index 7dff5d6b52..6b64af9a63 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 019f614ba6..0751a2a0aa 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 b3b01e41bf..ad27a7f216 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 810a2404ec..a86c3e9caa 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 8a82e9f550..596fa17018 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 45e15e4599..c295085b2a 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 ba73488ab9..ac2d88e020 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/id/files.po index a4763d47b9..22360a75be 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/id/files_external.po index 0a9ff42315..65a12b5baa 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 20ee7be1e2..976b31a485 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 ca82067c51..b8a829756c 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 42bbae6e06..d5b16930fe 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 83a4e30f57..f8d2bf7552 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 3a09e18add..c3334ab2a3 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 a722515ab2..16d3d63903 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/is/files.po index 16276564a4..bec9598bd6 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/is/files_external.po index fef723390f..9623f7e996 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 5d736c7e3d..0da3fc5266 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 1f891e62bf..a79abe7984 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 efcc8813f4..2773cd15a3 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 7b37f89ca7..e0e60d6704 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 5594595a52..24754fbc38 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: Magnus Magnusson \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 f1ad611fff..22d6eb41a9 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: Vincenzo Reale \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.po b/l10n/it/files.po index 7127f2eb43..72a86939ac 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Vincenzo Reale \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_external.po b/l10n/it/files_external.po index 682c7ae338..1fe05e5213 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Vincenzo Reale \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 3c6bb73fcb..16b31942be 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Vincenzo Reale \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 43cec7f996..d0be5b509b 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Vincenzo Reale \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 d839adc507..5f5add9efd 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 165ccdb7ca..ed597fa6de 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Vincenzo Reale \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 a3858ab9ab..e2c89f071d 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: Vincenzo Reale \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 366b50415c..bb1b066515 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: Daisuke Deguchi \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.po b/l10n/ja_JP/files.po index dc6c7a9f4c..9f6241d335 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: pabook \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_external.po b/l10n/ja_JP/files_external.po index 905e0366f5..94d6f4bd12 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 bb5eb3dbeb..cdbdc137cd 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: tt yn \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 5e153ab9ce..837ddda346 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 b896d6f047..9b39abad17 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ja_JP/settings.po index 8175bf8d91..4b8b3160e7 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Daisuke Deguchi \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 ba01415d89..7a02fec653 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: Daisuke Deguchi \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 a92ff8fd5f..ac31f14fe7 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index b0ee10ec61..27b6132f92 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 669ff1f8f1..8b5e4dbebf 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ka_GE/files.po index 676eed8a5d..0bb4a9c393 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ka_GE/files_external.po index d91117a531..7404057211 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: drlinux64 \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 4fdf43fc7a..1df6521954 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 ffa93e5bab..6a3f2b07bd 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: drlinux64 \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 60b48aec02..3e955d6e66 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ka_GE/settings.po index 9665eb3128..0f95890122 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 faebd46409..565d487b6e 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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/ko/core.po b/l10n/ko/core.po index 69301214d7..86b6d9d6a8 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ko/files.po index 927de281df..de325b1e3b 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ko/files_external.po index 9bec6e000f..0e5f640ae1 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Shinjo Park \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 f033e248fe..f62e0f161c 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 e0cbd25c00..cfb70711da 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 836915c159..28d8382e22 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 74d004e412..66a1e68b42 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 7df50d6b9d..178a986c7d 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 53ea552127..958a06e1f9 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ku_IQ/files.po index 4ffa1c446c..4ab0abf98d 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_sharing.po b/l10n/ku_IQ/files_sharing.po index b9332b4fe5..db7afaf443 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 c3b25f8a58..92d0e935d6 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 2457bd8d7f..51a047db64 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 06:02+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 06:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ku_IQ/settings.po index 5e30580a31..4b9958b1d8 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 933f81efe8..ba83487159 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 8738562cb2..36df3fbf80 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/lb/files.po index f24d1bce4c..ffa03023c7 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lb/files_external.po index 1636164405..1fb5a4f1f5 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 98155b008c..5645cb8e17 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: llaera \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 71e885460e..a0f84b40a6 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 1cfdbbf9d2..e4ee7309b3 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 5a27be2261..9bf49c7941 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 be96efb97c..a96f9068bd 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 7becef67df..26687855f0 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/lt_LT/files.po index f1906165fb..cb5de3346c 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lt_LT/files_external.po index 2408c6b117..2fd269b6ff 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Min2liz \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 f510c5ee0d..569e7c3fe1 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 b417baa199..fd3e45fb86 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: fizikiukas \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 0cc1f80892..414c4014ff 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/lt_LT/settings.po index 7bea0e1a23..ae49ca15ea 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: fizikiukas \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/user_ldap.po b/l10n/lt_LT/user_ldap.po index 8f746415b7..bbc72bc63c 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 abd07c50f5..ead5d6e55b 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/lv/files.po index 489eaeacc1..7bf4935508 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/lv/files_external.po index ecd13c8234..bc35e185d2 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 7b0183e362..dd7553f6b3 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 8ca4e0452d..c357fded14 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 977d407601..440726c3dd 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 435b719634..8ce3ad266b 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 e9853f2bc1..569d13232c 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 124f189dca..a0a580b9a2 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/mk/files.po index 3bc606a273..8e6f0e8793 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/mk/files_external.po index b3bb6a2792..139ec0994e 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 5b6adf65d2..3561b46f25 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 9879a856c6..18ea6d435f 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 a7ce8ca36c..2ee1fe1f69 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 9a71b8fdf1..8c781bbff0 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 9d3edd0558..899db1e488 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 051bf6856b..160c93d203 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ms_MY/files.po index 20c1494b53..83aba8924f 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ms_MY/files_external.po index 69caf7eaad..4ed86bc7b8 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 a13d2020f4..d4aaa66550 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 361fc65aa4..92ee87bae6 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 4fefcefb03..e3166f8a6a 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ms_MY/settings.po index 769d089c12..ce4388f7d0 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 979102b80f..5fe2c05702 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 dc6804187a..80f6ac6855 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/my_MM/files.po index 45cc491814..b72286bf23 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/files_sharing.po b/l10n/my_MM/files_sharing.po index e315755c4c..8b8ba578cf 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 c51a84e969..8dc9ae63fb 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/nb_NO/core.po b/l10n/nb_NO/core.po index 6fef3fb6fe..c032d98662 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/nb_NO/files.po index f41b6aa744..20b4913ca0 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Stein-Aksel Basma \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_external.po b/l10n/nb_NO/files_external.po index 13e6d764a2..144c62a20d 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 30e26d3ae1..13ee386c97 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Stein-Aksel Basma \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_trashbin.po b/l10n/nb_NO/files_trashbin.po index ea504ef996..633518a864 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index a020dba8ca..31a0f20d77 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/nb_NO/settings.po index fe04a89f95..a387674e87 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Stein-Aksel Basma \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/user_ldap.po b/l10n/nb_NO/user_ldap.po index 2d3eb8f807..3c63c72d69 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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/nl/core.po b/l10n/nl/core.po index 942bbd84ca..b7fd91a354 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/nl/files.po index 85fcca5fcc..1dc5a7f0a6 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nl/files_external.po index 5f625bcac6..44f57a3c25 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: André Koot \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 77f08a7afc..d95439caff 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/nl/files_trashbin.po index cfe6594426..74fbd95466 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 0179927e06..691867edd3 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index f58775521e..7f97ebd928 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 4dfa962634..c20b7cdbe1 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: André Koot \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 5ec555587e..20beefe152 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/nn_NO/files.po index 2845b72e77..aa6a654912 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/nn_NO/files_external.po index 6d03e1561f..5be548bc79 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 015823ba87..788a9f32f9 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 52da13e071..a5248521e6 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: unhammer \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 40b8593bb2..36f8dd4237 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/nn_NO/settings.po index c8815b2529..c8e6a55220 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 1d148275ae..5c5ad7a9a9 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 2bc84faae9..62d91d324b 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/oc/files.po index 336347ab54..d5e62b67f0 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/oc/files_external.po index fcda666077..fab275150d 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 eca0ebda0e..e3e435c95d 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 80159f08e6..5d07525c93 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 4e428363c9..de99a7d541 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 06:02+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 06:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/oc/settings.po index 99e1487e23..5a6876fc45 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 ac1d329184..79c3a2408c 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 ce6b63105b..ea40cc080d 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/pl/files.po index ce4debfc98..867fb03197 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/pl/files_external.po index ba802e3b2f..48ea42714c 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 10fc7aebe9..29b6b1e7ed 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 1753babad0..de0bb6dfd5 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 549002306a..2437528359 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 9939555052..ba026c0c7f 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 80a04924f8..b570c0a108 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: orcio6 \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 1ec701039c..783d8777b3 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/pt_BR/files.po index 1f2517bee3..d9edb13077 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Flávio Veras \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_external.po b/l10n/pt_BR/files_external.po index a4aaf72007..690c4a7dc6 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Flávio Veras \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 7500ac954f..e4b23c0f5a 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Flávio Veras \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 e6cc089268..41181134d3 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 88444a5769..49eac5ebea 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/pt_BR/settings.po index a3241b2f1b..e0f9cb3df6 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: bjamalaro \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 6a64ef934a..ac6efd1ede 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: Flávio Veras \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 d0bf923335..9f55c2e10d 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: Helder Meneses \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.po b/l10n/pt_PT/files.po index ba2314b514..c1e09e3566 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: FernandoMASilva\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index ecd8670b2b..6ed9a00607 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Mouxy \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 7a61e45a24..409de4b11e 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: moliveira \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_trashbin.po b/l10n/pt_PT/files_trashbin.po index ac89f798c1..7a4513486f 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 6f1f9b1914..833aa182d5 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/pt_PT/settings.po index 47f48d8007..4ea38c9527 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Helder Meneses \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/user_ldap.po b/l10n/pt_PT/user_ldap.po index f7ce7c83c2..2c1d8a46f1 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: Bruno Martins \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 127659962f..98c9b691f8 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ro/files.po index 6d8e6f6ce3..237f140b94 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ro/files_external.po index afe1fd4d2b..e93e582df0 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 36e40b566e..62b87ce9fe 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: sergiu_sechel \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 d973dbfe1e..7e1217d80b 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 dec1919144..415361465b 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 6a87ffda22..646d20c28d 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 31a76d6b33..5f9fd63df9 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 76abdf5490..c903e9b73e 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: Victor Bravo <>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index f56fa8511f..35dc717407 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: hackproof \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_external.po b/l10n/ru/files_external.po index 4cdcd45883..e40f1a999c 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 8e9e1c0155..c2cc3b4558 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Victor Bravo <>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 29f1d5d24c..3bdb59f2b3 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 066d9198ef..82d9766097 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 5dcebd5566..20f10f799f 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: hackproof \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 6253522e95..7a3986ae4e 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: alfsoft \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 421ffabdb3..ebad7d902c 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/si_LK/files.po index e829cf81b8..daca882133 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/si_LK/files_external.po index c4f3cdf6a8..22aaa0b32a 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 50a83440ab..fb132b599f 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 2b5e77cf57..c03ae7d96b 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 2858643ba1..81af1a130f 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/si_LK/settings.po index dd21eab638..7d4b62cf71 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 cc1ac30310..1a85c631bd 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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_SK/core.po b/l10n/sk_SK/core.po index 77d23357d8..d3f25d6d0c 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: mhh \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.po b/l10n/sk_SK/files.po index 6224f046a9..f93264912e 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sk_SK/files_external.po index 55dec70740..87612ddb7c 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: mhh \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 878bd0355f..522dc2c214 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 e1739d38da..831e995531 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 3a205d0e35..bfb78000df 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/sk_SK/settings.po index ab7ed94ba1..8acf34c334 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: mhh \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 f2fd39d31b..c86b565b32 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: mhh \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 4a1db1abb9..6d3611558e 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sl/files.po index 9383fa5c23..241ad85e2d 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sl/files_external.po index 5950cb5c24..4f2c149b40 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 19a5eb31e6..1b8152af97 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 8539458fa3..d03b8e7749 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 26d3736448..517ba6fbfb 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 5b74b8acba..1b02fe9946 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 23d243afba..2567256b9b 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: barbarak \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 7af6e5e4c5..f425aa0df5 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sq/files.po index 4af4cb9cbf..03979db9ea 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sq/files_external.po index dcc405cf18..50fb274f5d 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 918252fcca..19e129f563 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 f6e2d3e2dd..1950500da7 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 a5db066947..02267f7de2 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 7d3394ffd4..715755d529 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 bf8983182f..369f591ef8 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 5cdff1c23f..c86c727454 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr/files.po index b060bceb2e..2f89b86d9b 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sr/files_external.po index 3456fd2ab0..c672822d03 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 5d0af272c1..2254241f58 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 afdb432bd0..4be4858c21 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 8d75b57011..89a0c1efea 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index c0b1725a4f..efd933f45f 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 e54455bb7e..16b87bf696 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 31093aa123..641a098176 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/sr@latin/files.po index b98e8a89c0..32cc17a47e 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/sr@latin/files_external.po index 202dfa7c32..989102d97f 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 2ba58fc96d..d65063ac45 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 f4eafbaa16..8c4037c264 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 49b61bb0af..58b5d10f36 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/sr@latin/settings.po index f519b8fa82..2b1c30e448 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 ea33223d09..ba29a89d9b 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index aa9c992d5a..8fd17dc49c 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 5f2a888df6..27fed989b7 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 6571d89c31..e4c0320891 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_trashbin.po b/l10n/sv/files_trashbin.po index 5c37074e03..7745dfccd5 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 a1ccebaea4..d053dcf2a9 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index f2a7e014d0..b27ae09ff5 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index b4982b2bef..ff21182d41 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 33871871f4..5b2319cea4 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/ta_LK/files.po index 1fd9d72410..34c0d05dd5 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/ta_LK/files_external.po index addbddb84b..73715179a4 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 48645eaced..5db0ef55c8 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 c1169f5aff..0eae57387b 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 6b951826b1..9283a55605 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ta_LK/settings.po index fa19e99238..2bf0db1405 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 9e3c2d3bdc..7eac0ef721 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 7817b6abf0..5e7bf8a80c 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/te/files.po index 654f035937..1b5a963b63 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/te/files_external.po index 5e2e4e2df2..45b20fd759 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 f4fbcf767d..f3e89c5f63 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 50b213b6f1..df7cfe494f 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 06:02+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 06:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 923b5e49cd..c972f5ac51 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 2e74885b8a..081fefef11 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 ea885a8fee..f1292b6056 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-20 01:55-0400\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 006247b2fb..6c895d0d9a 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-20 01:54-0400\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 94a5b83b0f..f82ce8f5c1 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-20 01:54-0400\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index eb640f0da5..949e79a9d1 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-20 01:54-0400\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index d23f24b558..bda9ba06f6 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-20 01:54-0400\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 7c302f0164..711c5625aa 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-20 01:54-0400\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 817003175c..f1e5d1156a 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-20 01:54-0400\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 870abddc4f..e9a0ff4172 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-20 01:55-0400\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 5c880eb236..17046e4c91 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-20 01:55-0400\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 166d915528..0728975821 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-20 01:54-0400\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index c7315e44f7..4a759c5648 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-20 01:54-0400\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index f8d34c89d1..1fb96793d0 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/th_TH/files.po index e7638e233a..45d1539136 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/th_TH/files_external.po index f3a9e08036..7535ddd983 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 21dee4f9e4..6a9aa1aa3e 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 e6cf9d457e..03bb8594c5 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 af2a71646f..5952cbc55c 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/th_TH/settings.po index 5d42ed5f18..4cf54a6650 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 cb7171769e..b4bfe71595 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 ebcb112ead..7987350f08 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"Last-Translator: ismail yenigül \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." @@ -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,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" -msgstr "" +msgstr "Merhaba,

%s sizinle »%s« paylaşımında bulundu.
Paylaşımı gör!

İyi günler!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 7850df93f9..3257bd1894 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"Last-Translator: ismail yenigül \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" @@ -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" @@ -232,7 +232,7 @@ 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" @@ -308,7 +308,7 @@ msgstr "İndir" #: templates/index.php:80 msgid "Size (MB)" -msgstr "" +msgstr "Boyut (MB)" #: templates/index.php:87 templates/index.php:88 msgid "Unshare" @@ -334,11 +334,11 @@ msgstr "Güncel tarama" #: templates/part.list.php:76 msgid "directory" -msgstr "" +msgstr "dizin" #: templates/part.list.php:78 msgid "directories" -msgstr "" +msgstr "dizinler" #: templates/part.list.php:87 msgid "file" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index 745a741924..1828453aa5 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 ff0faf4882..4c6de18710 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 0a8b4f8a75..13b42bfed9 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 788d9be840..5f6fe089c3 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index c5a07a567d..d82cbdf04b 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"Last-Translator: ismail yenigül \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 access your Files via WebDAV" -msgstr "" +msgstr " Dosyalarınıza WebDAV üzerinen erişme 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 3ef0658218..6a158650fd 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: ismail yenigül \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 2fab568a7d..225b661f15 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index c6ae8f7c92..7c7fbe7c5e 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index cffe587602..7c4fa35c63 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index e4bf16f33e..8f85f8ac6e 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 1e05e2193e..cf1a0344ba 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index f049dc97cb..a9bc3bfbb5 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 66faa5d30e..403aff3b2a 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 55484f5ff7..2f622426c8 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index d5ce4d81b7..acb3491f97 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/uk/files.po index 0d34397508..d099b37680 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/uk/files_external.po index f335dce0f3..1518270992 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 b3ecd16b77..dbd0b9a628 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 8b4d2eacd2..5e0de7cfdf 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 b9c786bdc4..c2a1dc6a41 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 2d5805f712..c87d3d687b 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 33915bc3ed..19f19aceb4 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 67e9cbc6fc..d0ab95d0fe 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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/files.po b/l10n/ur_PK/files.po index 220ef7784f..5859fea089 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 6fb7ee7be0..889ce306b9 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 5afbd96fcc..007b1c90ad 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-19 06:02+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-20 06:02+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/ur_PK/settings.po index 8b998424ac..6f1f200345 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 334e11ff54..2f2ec998c7 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 ef798f15d7..0bcc1d5210 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/vi/files.po index fd5b114b97..d0a2edb4ab 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/vi/files_external.po index b7b9f23dc5..6913f6e32a 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: xtdv \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 85079fe4d9..b8d5ceeac7 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 adeef0df50..da46558bf1 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 9edac42dfa..80ef8ca8bf 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index b3c51a691a..3dcb1da4d0 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 c555fdd3bc..d38c30dce8 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 dbaeeb0720..d000b94e56 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN.GB2312/files.po index 5e7f62d34a..4e88430d38 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: hlx98007 \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_external.po b/l10n/zh_CN.GB2312/files_external.po index d3e5b01d99..ad9512d3f4 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: hyy0591 \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 5b0e65f6d6..eb3a3a209a 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 55a8d42756..a7660eb564 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 206c7eb89a..1f7f66f486 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_CN.GB2312/settings.po index 951fc99370..9515cdecd0 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: hlx98007 \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 c8d49ca7a1..abdff88dd7 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 7ed0f33b3e..3d6ed9dd16 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_CN/files.po index b0afb08fd1..63b9e5425e 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/zh_CN/files_external.po index ac1f39e0dc..c25b6b1cb9 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 91985e875d..f9e7ff8bee 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 f26f810294..61496fda24 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 e0461e7589..a857e1b106 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_CN/settings.po index 1c85585e26..b11d9b99af 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 59c7a1e9af..ac196dc526 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: modokwang \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 6347dd9aa7..3cda274f0c 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: I Robot \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.po b/l10n/zh_HK/files.po index 320b6cd566..5f15da55c1 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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_external.po b/l10n/zh_HK/files_external.po index d5ed76e687..e8c343c1b2 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 f0f1e511f4..f3e69f881f 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 2073d2c229..e88a0b6474 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 637f065304..b817f9e6c5 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_HK/settings.po index 71b37d2b5e..8d0ff173f6 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 d5d02ccf05..e6ae906225 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: I Robot \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 c23617a0e5..62a5cf28db 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:24+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:14+0000\n" "Last-Translator: pellaeon \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.po b/l10n/zh_TW/files.po index cc1af0ec46..b93c34fbee 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: pellaeon \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_external.po b/l10n/zh_TW/files_external.po index 9e6eb79d75..75e5708440 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: pellaeon \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 b3f13f0eef..841576f7ad 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 6fcd57d0a7..53043df183 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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 049c6ba2bc..eefd3f8993 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: I Robot \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/settings.po b/l10n/zh_TW/settings.po index ea10d97a23..1d4baa45ac 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-20 01:55-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:15+0000\n" "Last-Translator: pellaeon \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_ldap.po b/l10n/zh_TW/user_ldap.po index b1d22a3441..5650b665f3 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-20 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 05:25+0000\n" +"POT-Creation-Date: 2013-07-21 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 05:16+0000\n" "Last-Translator: chenanyeh \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 30b637ab94..0f33eb036c 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 access your Files via WebDAV" => " Dosyalarınıza WebDAV üzerinen erişme 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", From 05c83a163ac55bc422a7f22184dde5da18805907 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Sun, 21 Jul 2013 10:30:00 +0200 Subject: [PATCH 104/108] add proper deprecated tag --- lib/public/template.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/public/template.php b/lib/public/template.php index 1c13867197..ab1089c332 100644 --- a/lib/public/template.php +++ b/lib/public/template.php @@ -78,6 +78,7 @@ function relative_modified_date($timestamp) { /** * @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 */ From 8f93490ac45fbd74bd0e9697a685fd43bb34239b Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Sun, 21 Jul 2013 11:13:29 +0200 Subject: [PATCH 105/108] fix failing master branch - Test_Config::testWriteData --- lib/config.php | 6 +++++- tests/lib/config.php | 11 +++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/lib/config.php b/lib/config.php index 00d9f5b424..a38ce19c74 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/tests/lib/config.php b/tests/lib/config.php index c67a66c832..1a1d062d68 100644 --- a/tests/lib/config.php +++ b/tests/lib/config.php @@ -80,6 +80,17 @@ class Test_Config extends PHPUnit_Framework_TestCase { */ 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'); } } From f54f203e5655abf89ed57328deb26d95f8fd0bb7 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Sun, 21 Jul 2013 11:28:06 +0200 Subject: [PATCH 106/108] mark test as incomplete because I can't reproduce jenkins failure --- apps/files_encryption/tests/share.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/files_encryption/tests/share.php b/apps/files_encryption/tests/share.php index 6b53031585..ebf678da78 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); From 01f3f8e0ccd13cb8e3e05e2c7adf08bdb13a11eb Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 22 Jul 2013 02:03:23 -0400 Subject: [PATCH 107/108] [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 1 - apps/files/l10n/de.php | 1 - apps/files/l10n/de_DE.php | 1 - apps/files/l10n/es.php | 1 - apps/files/l10n/es_AR.php | 1 - apps/files/l10n/et_EE.php | 1 - apps/files/l10n/eu.php | 1 - apps/files/l10n/fa.php | 1 - apps/files/l10n/fi_FI.php | 1 - apps/files/l10n/fr.php | 1 - apps/files/l10n/gl.php | 1 - apps/files/l10n/hu_HU.php | 1 - apps/files/l10n/it.php | 1 - apps/files/l10n/ja_JP.php | 1 - apps/files/l10n/nb_NO.php | 1 - apps/files/l10n/nl.php | 3 + apps/files/l10n/pt_BR.php | 1 - apps/files/l10n/pt_PT.php | 1 - apps/files/l10n/ru.php | 1 - apps/files/l10n/sv.php | 1 - apps/files/l10n/tr.php | 1 - apps/files/l10n/zh_CN.GB2312.php | 1 - apps/files/l10n/zh_TW.php | 1 - apps/files_encryption/l10n/sv.php | 2 + apps/files_sharing/l10n/nl.php | 1 + apps/files_sharing/l10n/sv.php | 1 + apps/user_ldap/l10n/fa.php | 52 +++++++++++++ apps/user_webdavauth/l10n/zh_TW.php | 3 +- l10n/af_ZA/core.po | 30 ++++---- l10n/af_ZA/files.po | 46 ++++++------ l10n/af_ZA/lib.po | 28 +++---- l10n/ar/core.po | 30 ++++---- l10n/ar/files.po | 46 ++++++------ l10n/ar/files_external.po | 4 +- l10n/ar/files_sharing.po | 4 +- l10n/ar/files_trashbin.po | 4 +- l10n/ar/lib.po | 28 +++---- l10n/ar/settings.po | 4 +- l10n/ar/user_ldap.po | 4 +- l10n/be/files.po | 46 ++++++------ l10n/bg_BG/core.po | 30 ++++---- l10n/bg_BG/files.po | 46 ++++++------ l10n/bg_BG/files_external.po | 4 +- l10n/bg_BG/files_sharing.po | 4 +- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/lib.po | 28 +++---- l10n/bg_BG/settings.po | 4 +- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 30 ++++---- l10n/bn_BD/files.po | 46 ++++++------ l10n/bn_BD/files_external.po | 4 +- l10n/bn_BD/files_sharing.po | 4 +- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/lib.po | 28 +++---- l10n/bn_BD/settings.po | 4 +- l10n/bn_BD/user_ldap.po | 4 +- l10n/bs/core.po | 30 ++++---- l10n/bs/files.po | 46 ++++++------ l10n/bs/files_trashbin.po | 4 +- l10n/ca/core.po | 30 ++++---- l10n/ca/files.po | 48 ++++++------ l10n/ca/files_external.po | 4 +- l10n/ca/files_sharing.po | 4 +- l10n/ca/files_trashbin.po | 4 +- l10n/ca/lib.po | 28 +++---- l10n/ca/settings.po | 4 +- l10n/ca/user_ldap.po | 4 +- l10n/cs_CZ/core.po | 30 ++++---- l10n/cs_CZ/files.po | 46 ++++++------ l10n/cs_CZ/files_external.po | 4 +- l10n/cs_CZ/files_sharing.po | 4 +- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/lib.po | 28 +++---- l10n/cs_CZ/settings.po | 4 +- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/core.po | 30 ++++---- l10n/cy_GB/files.po | 46 ++++++------ l10n/cy_GB/files_external.po | 4 +- l10n/cy_GB/files_sharing.po | 4 +- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/lib.po | 28 +++---- l10n/cy_GB/settings.po | 4 +- l10n/cy_GB/user_ldap.po | 4 +- l10n/da/core.po | 30 ++++---- l10n/da/files.po | 46 ++++++------ l10n/da/files_external.po | 4 +- l10n/da/files_sharing.po | 4 +- l10n/da/files_trashbin.po | 4 +- l10n/da/lib.po | 28 +++---- l10n/da/settings.po | 4 +- l10n/da/user_ldap.po | 4 +- l10n/de/core.po | 30 ++++---- l10n/de/files.po | 48 ++++++------ l10n/de/files_external.po | 4 +- l10n/de/files_sharing.po | 4 +- l10n/de/files_trashbin.po | 4 +- l10n/de/lib.po | 28 +++---- l10n/de/settings.po | 4 +- l10n/de/user_ldap.po | 4 +- l10n/de_DE/core.po | 30 ++++---- l10n/de_DE/files.po | 48 ++++++------ l10n/de_DE/files_external.po | 4 +- l10n/de_DE/files_sharing.po | 4 +- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/lib.po | 28 +++---- l10n/de_DE/settings.po | 4 +- l10n/de_DE/user_ldap.po | 4 +- l10n/el/core.po | 30 ++++---- l10n/el/files.po | 46 ++++++------ l10n/el/files_external.po | 4 +- l10n/el/files_sharing.po | 4 +- l10n/el/files_trashbin.po | 4 +- l10n/el/lib.po | 28 +++---- l10n/el/settings.po | 4 +- l10n/el/user_ldap.po | 4 +- l10n/en@pirate/files.po | 46 ++++++------ l10n/en@pirate/files_sharing.po | 4 +- l10n/eo/core.po | 30 ++++---- l10n/eo/files.po | 46 ++++++------ l10n/eo/files_external.po | 4 +- l10n/eo/files_sharing.po | 4 +- l10n/eo/files_trashbin.po | 4 +- l10n/eo/lib.po | 28 +++---- l10n/eo/settings.po | 4 +- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 30 ++++---- l10n/es/files.po | 48 ++++++------ l10n/es/files_external.po | 4 +- l10n/es/files_sharing.po | 4 +- l10n/es/files_trashbin.po | 4 +- l10n/es/lib.po | 28 +++---- l10n/es/settings.po | 4 +- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 30 ++++---- l10n/es_AR/files.po | 48 ++++++------ l10n/es_AR/files_external.po | 4 +- l10n/es_AR/files_sharing.po | 4 +- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/lib.po | 28 +++---- l10n/es_AR/settings.po | 4 +- l10n/es_AR/user_ldap.po | 4 +- l10n/et_EE/core.po | 30 ++++---- l10n/et_EE/files.po | 48 ++++++------ l10n/et_EE/files_external.po | 4 +- l10n/et_EE/files_sharing.po | 4 +- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/lib.po | 28 +++---- l10n/et_EE/settings.po | 4 +- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/core.po | 30 ++++---- l10n/eu/files.po | 48 ++++++------ l10n/eu/files_external.po | 4 +- l10n/eu/files_sharing.po | 4 +- l10n/eu/files_trashbin.po | 4 +- l10n/eu/lib.po | 28 +++---- l10n/eu/settings.po | 4 +- l10n/eu/user_ldap.po | 4 +- l10n/fa/core.po | 30 ++++---- l10n/fa/files.po | 48 ++++++------ l10n/fa/files_external.po | 4 +- l10n/fa/files_sharing.po | 4 +- l10n/fa/files_trashbin.po | 4 +- l10n/fa/lib.po | 28 +++---- l10n/fa/settings.po | 4 +- l10n/fa/user_ldap.po | 111 ++++++++++++++-------------- l10n/fi_FI/core.po | 30 ++++---- l10n/fi_FI/files.po | 48 ++++++------ l10n/fi_FI/files_external.po | 4 +- l10n/fi_FI/files_sharing.po | 4 +- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/lib.po | 28 +++---- l10n/fi_FI/settings.po | 4 +- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 30 ++++---- l10n/fr/files.po | 48 ++++++------ l10n/fr/files_external.po | 4 +- l10n/fr/files_sharing.po | 4 +- l10n/fr/files_trashbin.po | 4 +- l10n/fr/lib.po | 28 +++---- l10n/fr/settings.po | 4 +- l10n/fr/user_ldap.po | 4 +- l10n/gl/core.po | 30 ++++---- l10n/gl/files.po | 48 ++++++------ l10n/gl/files_external.po | 4 +- l10n/gl/files_sharing.po | 4 +- l10n/gl/files_trashbin.po | 4 +- l10n/gl/lib.po | 28 +++---- l10n/gl/settings.po | 4 +- l10n/gl/user_ldap.po | 4 +- l10n/he/core.po | 30 ++++---- l10n/he/files.po | 46 ++++++------ l10n/he/files_external.po | 4 +- l10n/he/files_sharing.po | 4 +- l10n/he/files_trashbin.po | 4 +- l10n/he/lib.po | 28 +++---- l10n/he/settings.po | 4 +- l10n/he/user_ldap.po | 4 +- l10n/hi/core.po | 30 ++++---- l10n/hi/files.po | 46 ++++++------ l10n/hi/files_trashbin.po | 4 +- l10n/hi/lib.po | 28 +++---- l10n/hi/settings.po | 4 +- l10n/hi/user_ldap.po | 4 +- l10n/hr/core.po | 30 ++++---- l10n/hr/files.po | 46 ++++++------ l10n/hr/files_external.po | 4 +- l10n/hr/files_sharing.po | 4 +- l10n/hr/files_trashbin.po | 4 +- l10n/hr/lib.po | 28 +++---- l10n/hr/settings.po | 4 +- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/core.po | 30 ++++---- l10n/hu_HU/files.po | 48 ++++++------ l10n/hu_HU/files_external.po | 4 +- l10n/hu_HU/files_sharing.po | 4 +- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/lib.po | 28 +++---- l10n/hu_HU/settings.po | 4 +- l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/files.po | 46 ++++++------ l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 +- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 4 +- l10n/ia/core.po | 30 ++++---- l10n/ia/files.po | 46 ++++++------ l10n/ia/files_external.po | 4 +- l10n/ia/files_sharing.po | 4 +- l10n/ia/files_trashbin.po | 4 +- l10n/ia/lib.po | 28 +++---- l10n/ia/settings.po | 4 +- l10n/ia/user_ldap.po | 4 +- l10n/id/core.po | 30 ++++---- l10n/id/files.po | 46 ++++++------ l10n/id/files_external.po | 4 +- l10n/id/files_sharing.po | 4 +- l10n/id/files_trashbin.po | 4 +- l10n/id/lib.po | 28 +++---- l10n/id/settings.po | 4 +- l10n/id/user_ldap.po | 4 +- l10n/is/core.po | 30 ++++---- l10n/is/files.po | 46 ++++++------ l10n/is/files_external.po | 4 +- l10n/is/files_sharing.po | 4 +- l10n/is/files_trashbin.po | 4 +- l10n/is/lib.po | 28 +++---- l10n/is/settings.po | 4 +- l10n/is/user_ldap.po | 4 +- l10n/it/core.po | 30 ++++---- l10n/it/files.po | 48 ++++++------ l10n/it/files_external.po | 4 +- l10n/it/files_sharing.po | 4 +- l10n/it/files_trashbin.po | 4 +- l10n/it/lib.po | 28 +++---- l10n/it/settings.po | 4 +- l10n/it/user_ldap.po | 4 +- l10n/ja_JP/core.po | 30 ++++---- l10n/ja_JP/files.po | 48 ++++++------ l10n/ja_JP/files_external.po | 4 +- l10n/ja_JP/files_sharing.po | 4 +- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/lib.po | 28 +++---- l10n/ja_JP/settings.po | 4 +- l10n/ja_JP/user_ldap.po | 4 +- l10n/ka/files.po | 46 ++++++------ l10n/ka/files_sharing.po | 4 +- l10n/ka_GE/core.po | 30 ++++---- l10n/ka_GE/files.po | 46 ++++++------ l10n/ka_GE/files_external.po | 4 +- l10n/ka_GE/files_sharing.po | 4 +- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/lib.po | 28 +++---- l10n/ka_GE/settings.po | 4 +- l10n/ka_GE/user_ldap.po | 4 +- l10n/kn/files.po | 46 ++++++------ l10n/ko/core.po | 30 ++++---- l10n/ko/files.po | 46 ++++++------ l10n/ko/files_external.po | 4 +- l10n/ko/files_sharing.po | 4 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/lib.po | 28 +++---- l10n/ko/settings.po | 4 +- l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/core.po | 30 ++++---- l10n/ku_IQ/files.po | 46 ++++++------ l10n/ku_IQ/files_sharing.po | 4 +- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/lib.po | 28 +++---- l10n/ku_IQ/settings.po | 4 +- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/core.po | 30 ++++---- l10n/lb/files.po | 46 ++++++------ l10n/lb/files_external.po | 4 +- l10n/lb/files_sharing.po | 4 +- l10n/lb/files_trashbin.po | 4 +- l10n/lb/lib.po | 28 +++---- l10n/lb/settings.po | 4 +- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/core.po | 30 ++++---- l10n/lt_LT/files.po | 46 ++++++------ l10n/lt_LT/files_external.po | 4 +- l10n/lt_LT/files_sharing.po | 4 +- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/lib.po | 28 +++---- l10n/lt_LT/settings.po | 4 +- l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/core.po | 30 ++++---- l10n/lv/files.po | 46 ++++++------ l10n/lv/files_external.po | 4 +- l10n/lv/files_sharing.po | 4 +- l10n/lv/files_trashbin.po | 4 +- l10n/lv/lib.po | 28 +++---- l10n/lv/settings.po | 4 +- l10n/lv/user_ldap.po | 4 +- l10n/mk/core.po | 30 ++++---- l10n/mk/files.po | 46 ++++++------ l10n/mk/files_external.po | 4 +- l10n/mk/files_sharing.po | 4 +- l10n/mk/files_trashbin.po | 4 +- l10n/mk/lib.po | 28 +++---- l10n/mk/settings.po | 4 +- l10n/mk/user_ldap.po | 4 +- l10n/ml_IN/files.po | 46 ++++++------ l10n/ms_MY/core.po | 30 ++++---- l10n/ms_MY/files.po | 46 ++++++------ l10n/ms_MY/files_external.po | 4 +- l10n/ms_MY/files_sharing.po | 4 +- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/lib.po | 28 +++---- l10n/ms_MY/settings.po | 4 +- l10n/ms_MY/user_ldap.po | 4 +- l10n/my_MM/core.po | 30 ++++---- l10n/my_MM/files.po | 46 ++++++------ l10n/my_MM/files_sharing.po | 4 +- l10n/my_MM/lib.po | 28 +++---- l10n/nb_NO/core.po | 30 ++++---- l10n/nb_NO/files.po | 48 ++++++------ l10n/nb_NO/files_external.po | 4 +- l10n/nb_NO/files_sharing.po | 4 +- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/lib.po | 28 +++---- l10n/nb_NO/settings.po | 4 +- l10n/nb_NO/user_ldap.po | 4 +- l10n/ne/files.po | 46 ++++++------ l10n/nl/core.po | 30 ++++---- l10n/nl/files.po | 52 ++++++------- l10n/nl/files_external.po | 4 +- l10n/nl/files_sharing.po | 9 ++- l10n/nl/files_trashbin.po | 4 +- l10n/nl/lib.po | 28 +++---- l10n/nl/settings.po | 8 +- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/core.po | 30 ++++---- l10n/nn_NO/files.po | 46 ++++++------ l10n/nn_NO/files_external.po | 4 +- l10n/nn_NO/files_sharing.po | 4 +- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/lib.po | 28 +++---- l10n/nn_NO/settings.po | 4 +- l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/core.po | 30 ++++---- l10n/oc/files.po | 46 ++++++------ l10n/oc/files_external.po | 4 +- l10n/oc/files_sharing.po | 4 +- l10n/oc/files_trashbin.po | 4 +- l10n/oc/lib.po | 28 +++---- l10n/oc/settings.po | 4 +- l10n/oc/user_ldap.po | 4 +- l10n/pl/core.po | 30 ++++---- l10n/pl/files.po | 46 ++++++------ l10n/pl/files_external.po | 4 +- l10n/pl/files_sharing.po | 4 +- l10n/pl/files_trashbin.po | 4 +- l10n/pl/lib.po | 28 +++---- l10n/pl/settings.po | 4 +- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 30 ++++---- l10n/pt_BR/files.po | 48 ++++++------ l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/files_sharing.po | 4 +- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/lib.po | 28 +++---- l10n/pt_BR/settings.po | 4 +- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/core.po | 30 ++++---- l10n/pt_PT/files.po | 48 ++++++------ l10n/pt_PT/files_external.po | 4 +- l10n/pt_PT/files_sharing.po | 4 +- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/lib.po | 28 +++---- l10n/pt_PT/settings.po | 4 +- l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/core.po | 30 ++++---- l10n/ro/files.po | 46 ++++++------ l10n/ro/files_external.po | 4 +- l10n/ro/files_sharing.po | 4 +- l10n/ro/files_trashbin.po | 4 +- l10n/ro/lib.po | 28 +++---- l10n/ro/settings.po | 4 +- l10n/ro/user_ldap.po | 4 +- l10n/ru/core.po | 30 ++++---- l10n/ru/files.po | 48 ++++++------ l10n/ru/files_external.po | 4 +- l10n/ru/files_sharing.po | 4 +- l10n/ru/files_trashbin.po | 4 +- l10n/ru/lib.po | 28 +++---- l10n/ru/settings.po | 4 +- l10n/ru/user_ldap.po | 4 +- l10n/si_LK/core.po | 30 ++++---- l10n/si_LK/files.po | 46 ++++++------ l10n/si_LK/files_external.po | 4 +- l10n/si_LK/files_sharing.po | 4 +- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/lib.po | 28 +++---- l10n/si_LK/settings.po | 4 +- l10n/si_LK/user_ldap.po | 4 +- l10n/sk/files.po | 46 ++++++------ l10n/sk_SK/core.po | 30 ++++---- l10n/sk_SK/files.po | 46 ++++++------ l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_sharing.po | 4 +- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/lib.po | 28 +++---- l10n/sk_SK/settings.po | 4 +- l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/core.po | 30 ++++---- l10n/sl/files.po | 46 ++++++------ l10n/sl/files_external.po | 4 +- l10n/sl/files_sharing.po | 4 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 28 +++---- l10n/sl/settings.po | 4 +- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 30 ++++---- l10n/sq/files.po | 46 ++++++------ l10n/sq/files_external.po | 4 +- l10n/sq/files_sharing.po | 4 +- l10n/sq/files_trashbin.po | 4 +- l10n/sq/lib.po | 28 +++---- l10n/sq/settings.po | 4 +- l10n/sq/user_ldap.po | 4 +- l10n/sr/core.po | 30 ++++---- l10n/sr/files.po | 46 ++++++------ l10n/sr/files_external.po | 4 +- l10n/sr/files_sharing.po | 4 +- l10n/sr/files_trashbin.po | 4 +- l10n/sr/lib.po | 28 +++---- l10n/sr/settings.po | 4 +- l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/core.po | 30 ++++---- l10n/sr@latin/files.po | 46 ++++++------ l10n/sr@latin/files_external.po | 4 +- l10n/sr@latin/files_sharing.po | 4 +- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/lib.po | 28 +++---- l10n/sr@latin/settings.po | 4 +- l10n/sv/core.po | 30 ++++---- l10n/sv/files.po | 48 ++++++------ l10n/sv/files_encryption.po | 11 +-- l10n/sv/files_external.po | 4 +- l10n/sv/files_sharing.po | 9 ++- l10n/sv/files_trashbin.po | 4 +- l10n/sv/lib.po | 28 +++---- l10n/sv/settings.po | 4 +- l10n/sv/user_ldap.po | 4 +- l10n/sw_KE/files.po | 46 ++++++------ l10n/ta_LK/core.po | 30 ++++---- l10n/ta_LK/files.po | 46 ++++++------ l10n/ta_LK/files_external.po | 4 +- l10n/ta_LK/files_sharing.po | 4 +- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/lib.po | 28 +++---- l10n/ta_LK/settings.po | 4 +- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/core.po | 30 ++++---- l10n/te/files.po | 46 ++++++------ l10n/te/files_external.po | 4 +- l10n/te/files_trashbin.po | 4 +- l10n/te/lib.po | 28 +++---- l10n/te/settings.po | 4 +- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 28 +++---- l10n/templates/files.pot | 44 +++++------ l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 26 +++---- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 30 ++++---- l10n/th_TH/files.po | 46 ++++++------ l10n/th_TH/files_external.po | 4 +- l10n/th_TH/files_sharing.po | 4 +- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/lib.po | 28 +++---- l10n/th_TH/settings.po | 4 +- l10n/th_TH/user_ldap.po | 4 +- l10n/tr/core.po | 30 ++++---- l10n/tr/files.po | 48 ++++++------ l10n/tr/files_external.po | 4 +- l10n/tr/files_sharing.po | 4 +- l10n/tr/files_trashbin.po | 4 +- l10n/tr/lib.po | 28 +++---- l10n/tr/settings.po | 4 +- l10n/tr/user_ldap.po | 4 +- l10n/ug/core.po | 30 ++++---- l10n/ug/files.po | 46 ++++++------ l10n/ug/files_external.po | 4 +- l10n/ug/files_sharing.po | 4 +- l10n/ug/files_trashbin.po | 4 +- l10n/ug/lib.po | 28 +++---- l10n/ug/settings.po | 4 +- l10n/ug/user_ldap.po | 4 +- l10n/uk/core.po | 30 ++++---- l10n/uk/files.po | 46 ++++++------ l10n/uk/files_external.po | 4 +- l10n/uk/files_sharing.po | 4 +- l10n/uk/files_trashbin.po | 4 +- l10n/uk/lib.po | 28 +++---- l10n/uk/settings.po | 4 +- l10n/uk/user_ldap.po | 4 +- l10n/ur_PK/core.po | 30 ++++---- l10n/ur_PK/files.po | 46 ++++++------ l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/lib.po | 28 +++---- l10n/ur_PK/settings.po | 4 +- l10n/ur_PK/user_ldap.po | 4 +- l10n/vi/core.po | 30 ++++---- l10n/vi/files.po | 46 ++++++------ l10n/vi/files_external.po | 4 +- l10n/vi/files_sharing.po | 4 +- l10n/vi/files_trashbin.po | 4 +- l10n/vi/lib.po | 28 +++---- l10n/vi/settings.po | 4 +- l10n/vi/user_ldap.po | 4 +- l10n/zh_CN.GB2312/core.po | 30 ++++---- l10n/zh_CN.GB2312/files.po | 48 ++++++------ l10n/zh_CN.GB2312/files_external.po | 4 +- l10n/zh_CN.GB2312/files_sharing.po | 4 +- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/lib.po | 28 +++---- l10n/zh_CN.GB2312/settings.po | 4 +- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN/core.po | 30 ++++---- l10n/zh_CN/files.po | 46 ++++++------ l10n/zh_CN/files_external.po | 4 +- l10n/zh_CN/files_sharing.po | 4 +- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/lib.po | 28 +++---- l10n/zh_CN/settings.po | 4 +- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/core.po | 30 ++++---- l10n/zh_HK/files.po | 46 ++++++------ l10n/zh_HK/files_external.po | 4 +- l10n/zh_HK/files_sharing.po | 4 +- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/lib.po | 28 +++---- l10n/zh_HK/settings.po | 4 +- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/core.po | 30 ++++---- l10n/zh_TW/files.po | 48 ++++++------ l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_sharing.po | 4 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 28 +++---- l10n/zh_TW/settings.po | 28 +++---- l10n/zh_TW/user_ldap.po | 4 +- l10n/zh_TW/user_webdavauth.po | 10 +-- settings/l10n/nl.php | 1 + settings/l10n/zh_TW.php | 24 +++--- 573 files changed, 4404 insertions(+), 4669 deletions(-) diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 51d450b4f6..8d5f69f331 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 435c821400..33430795dd 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 d21fd92324..3ce3b2a7fb 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -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 2d5ac06ff9..78740d5150 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 6585d074bb..3fc3be1798 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -68,7 +68,6 @@ "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/et_EE.php b/apps/files/l10n/et_EE.php index 8ba928be94..c58b066e28 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -68,7 +68,6 @@ "You don’t have write permissions here." => "Siin puudvad sul kirjutamisõigused.", "Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!", "Download" => "Lae alla", -"Size (MB)" => "Suurus (MB)", "Unshare" => "Lõpeta jagamine", "Upload too large" => "Üleslaadimine on liiga suur", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse.", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 3ef27d5cad..96bfb2d1cc 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -68,7 +68,6 @@ "You don’t have write permissions here." => "Ez duzu hemen idazteko baimenik.", "Nothing in here. Upload something!" => "Ez dago ezer. Igo zerbait!", "Download" => "Deskargatu", -"Size (MB)" => "Tamaina (MB)", "Unshare" => "Ez elkarbanatu", "Upload too large" => "Igoera handiegia da", "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.", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 8a6089f635..73f4b493b4 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -68,7 +68,6 @@ "You don’t have write permissions here." => "شما اجازه ی نوشتن در اینجا را ندارید", "Nothing in here. Upload something!" => "اینجا هیچ چیز نیست.", "Download" => "دانلود", -"Size (MB)" => "اندازه(مگابایت)", "Unshare" => "لغو اشتراک", "Upload too large" => "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index c57c0ea898..40df7b1546 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 dc1a33ac65..b293f85ed4 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 4a1c7720ca..bba6335ae0 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/hu_HU.php b/apps/files/l10n/hu_HU.php index 21a519ea42..b083351695 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -68,7 +68,6 @@ "You don’t have write permissions here." => "Itt nincs írásjoga.", "Nothing in here. Upload something!" => "Itt nincs semmi. Töltsön fel valamit!", "Download" => "Letöltés", -"Size (MB)" => "Méret (MB)", "Unshare" => "A megosztás visszavonása", "Upload too large" => "A feltöltés túl nagy", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet.", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 8ea6bb48ab..28b33795ae 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 cb5480199e..e4be3133fb 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 e6d0ed4104..d4080a1796 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -66,7 +66,6 @@ "You don’t have write permissions here." => "Du har ikke skrivetilgang her.", "Nothing in here. Upload something!" => "Ingenting her. Last opp noe!", "Download" => "Last ned", -"Size (MB)" => "Størrelse (MB)", "Unshare" => "Avslutt deling", "Upload too large" => "Filen er for stor", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er for store for å laste opp til denne serveren.", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 914d5087af..0d906cb138 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 a1e06483b6..3ad679f876 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 8656edfc16..8aeb30efbf 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -68,7 +68,6 @@ "You don’t have write permissions here." => "Não tem permissões de escrita aqui.", "Nothing in here. Upload something!" => "Vazio. Envie alguma coisa!", "Download" => "Transferir", -"Size (MB)" => "Tamanho (MB)", "Unshare" => "Deixar de partilhar", "Upload too large" => "Upload muito grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor.", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 225de32d62..71742cb4d5 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/sv.php b/apps/files/l10n/sv.php index 132a014e61..70f3121a20 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -68,7 +68,6 @@ "You don’t have write permissions here." => "Du saknar skrivbehörighet här.", "Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!", "Download" => "Ladda ner", -"Size (MB)" => "Storlek (MB)", "Unshare" => "Sluta dela", "Upload too large" => "För stor uppladdning", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern.", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 6778141c38..6b479b580e 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -68,7 +68,6 @@ "You don’t have write permissions here." => "Buraya erişim hakkınız yok.", "Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!", "Download" => "İndir", -"Size (MB)" => "Boyut (MB)", "Unshare" => "Paylaşılmayan", "Upload too large" => "Yükleme çok büyük", "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.", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index a515b8ac1b..469211ca7f 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 6801b311ae..63d2bd9236 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_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index 3659e22bb4..2cef6686fc 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_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index 6c1bf7a53f..90f2f2290f 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -1,4 +1,5 @@ "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/sv.php b/apps/files_sharing/l10n/sv.php index 21e4e542d8..dac5e33ec5 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -1,4 +1,5 @@ "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/user_ldap/l10n/fa.php b/apps/user_ldap/l10n/fa.php index bef13457ad..889555079d 100644 --- a/apps/user_ldap/l10n/fa.php +++ b/apps/user_ldap/l10n/fa.php @@ -1,8 +1,13 @@ "عدم موفقیت در پاک کردن نگاشت.", "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_webdavauth/l10n/zh_TW.php b/apps/user_webdavauth/l10n/zh_TW.php index 32166b0475..827a7ef292 100644 --- a/apps/user_webdavauth/l10n/zh_TW.php +++ b/apps/user_webdavauth/l10n/zh_TW.php @@ -1,4 +1,5 @@ "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/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 2f3865dfcc..070c893c2a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 06:02+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 \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 5e5697087d..adfb6e8f93 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 \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 ea2ba4b953..5ab6365d8e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 06:02+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 \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 installation guides." 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 7d408ce2db..af74b63b2e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 1e549447f3..14e6cfafe8 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 67c2f893b6..b74fa07037 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 cadce0d1ba..16cd860691 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 d45f3373d4..09bbabca56 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 398bd3788c..e6931a119f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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/ar/settings.po b/l10n/ar/settings.po index bde35ff507..3cbb243b14 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 258afa2cf1..e8142a3819 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 6e1ab1de27..3589633cd9 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 \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 fcd4484f1c..7b117afaa2 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 41b0023567..9b63562fcd 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 d4b8ea05cc..db5f7bdb11 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 b8688a4863..22b9673475 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 44d8da2e55..16d28048a9 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: Димитър Кръстев \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 8a3103c256..310d345bdf 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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/bg_BG/settings.po b/l10n/bg_BG/settings.po index ad854239b2..58597ec8df 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 619b9e1226..7b53180f58 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 9e9a4300ec..acae5d1191 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 b88c1839dd..a1c566f2ba 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 42b010d44d..56e162bb96 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 e700e6b330..7f32e4de6a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 e8cadc39b5..9f3c5f8957 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 0fa95b70b0..5c28627be3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 2a22084f25..57643c3e28 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 f132170c1c..080278d25e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 5a66110b49..fc5ec9800f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 ae5cec0ce8..65769a1693 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 07801fced7..9aacdc2540 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 b7aae71986..3f70b300af 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 e49d8057f1..05da9e60e5 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 459020c51e..c4cd05c73f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 ccf09824a4..e9cad86637 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 46a9ac1e2e..753fe3a141 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 6cd10916da..903dd0f585 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Comproveu les guies d'instal·lació." -#: 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 3daf3f5527..80a797da91 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 4555aa024c..3f9e3369c3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 b4d3d8658d..45e18c3fbd 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 0031f740b0..ea0b85bbc9 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 7a40dfd35c..5a588e668e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 ebd613fe53..f4f018628d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 4940d125d9..a313fb8844 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 51310ad5fb..40f5499933 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Zkonzultujte, prosím, průvodce instalací." -#: 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 c562f771ee..277e281c00 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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. \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 7619088770..1e319bbd0f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 7c59f365e2..ab1b881a1e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 44842de207..7b792b8c52 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 b9875092e3..a084b2d82a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 4bfe9d414b..6757ac9037 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 ac6cc5d17b..5baff92ab4 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 187168f32f..5856e44f7c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Gwiriwch y canllawiau gosod 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 1c3a9d0d58..3af05c8e3b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 8f9b2850cd..897211fb47 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 5eee534841..a8231a1034 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 ed24a0ed8d..3110aa0017 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 070371e606..ec522fc65a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 d3952609c2..e104cd2983 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 49da550aac..8f3ab2c241 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 7318d9a9bd..acf85d4c3f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Dobbelttjek venligst installations vejledningerne." -#: 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 9c1fa1bafd..31f27b9b20 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 da28872485..c483a10413 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 9bc15784b5..fb03ac696b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: Pwnicorn \n" "Language-Team: German \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 577f7c3661..31747a8c94 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: kabum \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 \n" "Language-Team: German \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 46b20f1aed..7de27b8f03 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 08159e1148..1d48659780 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 5891672725..f3efdb9e10 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 17228d0543..f135d28f13 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \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 installation guides." msgstr "Bitte prüfe die Installationsanleitungen." -#: 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 571cbc3076..e4561202a2 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 5b452c3ffe..6df55c4ac2 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 7ea8592c01..892897fb80 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \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 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" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index f8d500ada5..ea9032cef0 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: traductor \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 \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,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" @@ -211,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" @@ -219,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" @@ -312,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" @@ -338,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_external.po b/l10n/de_DE/files_external.po index aa6a126abd..959ad3ba20 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 3eb7a56d48..015cf3f9ea 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index ce42df710e..bd818862da 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 1198a4ebae..fe0b091f88 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -190,55 +190,55 @@ msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfigurie msgid "Please double check the installation guides." msgstr "Bitte prüfen Sie die Installationsanleitungen." -#: 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 5b5d5712cb..2b9a0ecd4c 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 4d6cf08c55..eb8b72ba0c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 27602d3fff..d6bf308e1f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 3aaba2520a..473bfebdfe 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 7f4b66fd16..3ea5e28fb6 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 f630b15713..fc664e2230 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 f7fe557853..916c0681c8 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 08ee8dfa44..a0941774a3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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/el/settings.po b/l10n/el/settings.po index 293de151bd..462315d8db 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 94bcb96cc2..a1f0b8d78b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 718639933a..245da51936 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 c58824dffd..ed5ede4c7c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 5322294aae..369fb853d9 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 d68c4a8627..64e6d77210 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 ecb455cd66..41eaf9a706 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 add92cf917..c5b57b2707 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 6768a5f43f..f4f8e66ca3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 4061d98c53..d7f71bdc25 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Bonvolu duoble kontroli la gvidilon por instalo." -#: 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 d801a7ef11..6903b182b4 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 85d015de44..dc05549b09 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 bb79b51123..4e0163cbb3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 a500135a93..c89b6c7d9d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: qdneren \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 \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 a238eff0a6..3b6a583c72 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 327c1a6b52..71be8dca43 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 4b236f791b..e341410d49 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 4d4b751e9d..a454cc0d46 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: 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 a4d1f095e6..c6eb02c3a3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 a45ae64075..d84336958f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 7853757327..ba18c41ff8 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: cjtess \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 a363d4afde..abdc638d60 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: cjtess \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 \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" @@ -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 "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 "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" @@ -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,19 +214,19 @@ 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" @@ -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_external.po b/l10n/es_AR/files_external.po index 947c1f005b..8b3b15c83e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 6b8ca955c1..cfc2987120 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 e0f734a6f0..235b22e9fa 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 0529cf4cfe..ea32692783 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -190,55 +190,55 @@ msgstr "Tu servidor web no está configurado todavía para permitir sincronizaci msgid "Please double check the installation guides." msgstr "Por favor, comprobá nuevamente la guía de instalación." -#: 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 "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 "el 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 "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 4b90f1ac6a..06d215e6b7 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 7703faa90f..fc5908865d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 31b477107b..ee1ba01b1e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 96f8fc66c4..7730cc6a75 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: pisike.sipelgas \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 \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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 "Suurus (MB)" - #: 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 8080faaf4a..4ca54d4b73 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 5cb82c9c71..be3dbf32ea 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 3a28fdf33a..c39b604a8c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 ec94602709..41732227d7 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Palun tutvu veelkord paigalduse juhenditega." -#: 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 9c24fa2ca7..f7a83f9f48 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 75c1d685a0..3519adfded 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 3892b3fcb0..fbb55eb90c 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -142,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" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index c63e1cbe58..4e92e85773 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: Piarres Beobide \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 \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" @@ -129,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" @@ -205,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" @@ -213,19 +213,19 @@ 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" @@ -306,10 +306,6 @@ msgstr "Ez dago ezer. Igo zerbait!" msgid "Download" msgstr "Deskargatu" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "Tamaina (MB)" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Ez elkarbanatu" @@ -332,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 "direktorioa" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" 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 d231953586..243580db88 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 77c003daef..2d88de414d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 b6c0850dba..1569b37b06 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 327ba994f9..93a9763626 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -190,55 +190,55 @@ msgstr "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sin msgid "Please double check the installation guides." msgstr "Mesedez begiratu instalazio gidak." -#: 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 3db9f9d0aa..b3df05e348 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 434d7dec3a..138e7f0f8d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 09987a7500..cdeddf6e73 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: miki_mika1362 \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 9d1fd43438..fb1e161f8a 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: miki_mika1362 \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 \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" @@ -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 398b8a588b..d57cf2bd62 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 7a70c7c493..c16aba28e1 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 b9f0805e97..11e6e48069 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 d079c251e6..67cdabcc3c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 installation guides." 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/fa/settings.po b/l10n/fa/settings.po index ca240ee627..8b81a024b9 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 4c0486442c..6a21e1fe66 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 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+0000\n" -"Last-Translator: I Robot \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 \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/fi_FI/core.po b/l10n/fi_FI/core.po index e2515cc6df..aa90559291 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 98fd465c7f..3b3ced9cbb 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: Jiri Grönroos \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 \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 3c2fe767e5..55f0c14c32 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 4e2fe128db..ed3ecf923d 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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_trashbin.po b/l10n/fi_FI/files_trashbin.po index d1c66350ab..630093f994 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 86cf608c82..2aa3bd74ad 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Lue tarkasti asennusohjeet." -#: 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 1427a0d57d..608c785620 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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/user_ldap.po b/l10n/fi_FI/user_ldap.po index f659a07ada..a073d8d7b1 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 d0454398a4..c7ff62893d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 4a24c176b3..d66d22cda0 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: Adalberto Rodrigues \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 \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 d19bb45e2c..2d97f75a7a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 075a482fed..411ae0cd07 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 3ecabc7555..97a6c904a6 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 10e9decc48..6fd5755248 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Veuillez vous référer au guide d'installation." -#: 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 75e97811c0..911dfb66fd 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 5d44e74ddb..bb97ee1a69 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 a4fcf80b8b..a5d4de8d30 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: mbouzada \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 2f927f2c3a..f2186a97b6 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: mbouzada \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 \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 fe0a081ebb..492d6ac066 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 f52cf37d89..8eff6c19a3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 e7b1d86a5e..7a733444c6 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 e8202bda7e..9a1dd5e34b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Volva comprobar as guías de instalación" -#: 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 801aa09add..5f5f3ffbab 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 211925fe4b..d4f1047f37 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 bc31c308f1..c791668b25 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 d16bc11cb7..ab0750b79c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 096c407b2b..ac7dbd9513 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 2f07688c11..ec6da84cbb 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 3340f6f212..4c07ca406d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 2fd01e2743..b9e04ea6a0 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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/he/settings.po b/l10n/he/settings.po index 7d66618873..9edfe0e776 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 49d044d28a..adefc7a7c0 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 be5c056bfa..4f10a8b9dd 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 c9878f0603..819c567d00 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 3533c4df17..77ee5211dd 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 6763d07d32..1b91087cbf 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 06:02+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 \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 installation guides." 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 43a7b60b16..671099b0f8 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 8a4824c6d3..8765fee400 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 24f6f9d593..7257fc6e73 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 c2ce766e54..f0f3111f98 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 c7a16bc5f9..ba01351ded 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 de75135e70..5cd0ceff1c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 7efe119f99..5959bdb23d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 c0b4bf05c9..c2c3dfb072 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 6deda52644..538db67334 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 f6474af8ca..2c00485e3e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 03ff2ffcef..340e7d14cf 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: Laszlo Tornoci \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 fbf2e7e420..a8984abe07 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: Laszlo Tornoci \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 \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -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 "Méret (MB)" - #: 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 d8f750da25..6a19b9a036 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 4eee4d9f7c..2218b2ef35 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 edf9f7db1e..318bb40e19 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 1b66abf4ab..28256a8e62 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." -#: 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 ac8c337a06..f3d35f128b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 4f9fcc5072..5b8246c989 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 36d329f21a..00dd1d10da 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 f3ecefec3f..aabba32842 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-21 01:54-0400\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 \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 68186b7d27..88ac185929 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 191a88eb44..442e45f1fa 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-21 01:54-0400\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 \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 385c3250e7..8b4e6e947e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 9bf323eb2f..33ec984fba 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 d60aa815cf..397ecb950b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 6b64af9a63..7709c45b8b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 0751a2a0aa..438da584f1 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 ad27a7f216..5a68a66137 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 a86c3e9caa..6584c898d7 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 596fa17018..6115a2a2c4 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 c295085b2a..0d14cecf6a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 ac2d88e020..f6f64595ee 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 22360a75be..3b6103ae44 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 65a12b5baa..ec59f66b72 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 976b31a485..d1be034c8c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 b8a829756c..97748a9f6d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 d5b16930fe..9101f9d16d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Silakan periksa ulang panduan instalasi." -#: 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 f8d2bf7552..2db3460d8f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 c3334ab2a3..00117036bb 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 16d3d63903..8c31c9cf7d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 bec9598bd6..154070b4e3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 9623f7e996..8e6a37e14b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 0da3fc5266..2e18dacdb2 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 a79abe7984..27281ec01b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 2773cd15a3..c45fec0e09 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 e0e60d6704..cb22fb7c47 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 24754fbc38..5060f49693 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 22d6eb41a9..5a660d4f52 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: Vincenzo Reale \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 72a86939ac..2f93ed558e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: Vincenzo Reale \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 \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 1fe05e5213..5a8269f30a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 16b31942be..e124ba4b52 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 d0be5b509b..bb02476462 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 5f5add9efd..5bf215820c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 installation guides." msgstr "Leggi attentamente le guide d'installazione." -#: 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 ed597fa6de..e0f90ca856 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 e2c89f071d..58e0819c26 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 bb1b066515..1aa9219214 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: Daisuke Deguchi \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 9f6241d335..c5b7bbc02c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: pabook \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 \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 94d6f4bd12..e4b7d3f9f1 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 cdbdc137cd..94449225a7 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 837ddda346..b294c072b4 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 9b39abad17..9f2e09d1ee 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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/ja_JP/settings.po b/l10n/ja_JP/settings.po index 4b8b3160e7..42994b9375 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 7a02fec653..1a88890888 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 ac31f14fe7..3a8f9e4f11 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 27b6132f92..8764d0d29d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 8b5e4dbebf..c9466a421b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 0bb4a9c393..d28e48c7d0 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 7404057211..958341777f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 1df6521954..cbc2a3df5f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 6a3f2b07bd..bcfe20347a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 3e955d6e66..ceb6d1d3e7 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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/ka_GE/settings.po b/l10n/ka_GE/settings.po index 0f95890122..fe6c9ebf78 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 565d487b6e..6616c702b5 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 ed1e91dc99..83638dc16f 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 \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 86b6d9d6a8..6686f6ffc5 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 de325b1e3b..3ab2428e52 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 0e5f640ae1..e922efb9d1 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 f62e0f161c..4b5362ee6a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 cfb70711da..1cf0f2b42e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 28d8382e22..5d3a6006cf 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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/ko/settings.po b/l10n/ko/settings.po index 66a1e68b42..65951a5b42 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 178a986c7d..ac0fdc149b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 958a06e1f9..07411e403c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 4ab0abf98d..88d90eb171 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 db7afaf443..33fd2ca331 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 92d0e935d6..07a814d4aa 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 51a047db64..4ce0e26a1a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 06:02+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 \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 installation guides." 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 4b9958b1d8..5bb280e207 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 ba83487159..2c3421a73d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 36df3fbf80..fd02d8d7f5 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 ffa03023c7..5d433f9646 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 1fb5a4f1f5..349d3ad472 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 5645cb8e17..5381bfb15d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 a0f84b40a6..9e82cc5399 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 e4ee7309b3..d3a86101ac 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 9bf49c7941..3427d85e09 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 a96f9068bd..b6c0f1b261 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 26687855f0..b1c24e17a4 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 cb5de3346c..5bed6cf5da 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 2fd269b6ff..78d9be75a8 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 569e7c3fe1..4d00b1e8ed 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 fd3e45fb86..f0e0a3f47f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 414c4014ff..560bd877fb 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 ae49ca15ea..75b2e25991 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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/user_ldap.po b/l10n/lt_LT/user_ldap.po index bbc72bc63c..96cb20bf40 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 ead5d6e55b..6d54f74391 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 7bf4935508..c35a0de3d7 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 bc35e185d2..6df1f0e4a4 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 dd7553f6b3..4df382a6c1 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 c357fded14..48a4c6dcca 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 440726c3dd..beb184be63 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību." -#: 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 8ce3ad266b..7678b3970d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 569d13232c..9110e47a75 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 a0a580b9a2..930f1046d4 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 8e6f0e8793..1be5019e7d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 139ec0994e..1406454c50 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 3561b46f25..31c45b09a7 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 18ea6d435f..c173d3af8a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 2ee1fe1f69..86b5e40079 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 8c781bbff0..8a18377718 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 899db1e488..42c56cfaca 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 d4f03fb1ff..056f4c8f4b 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 \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 160c93d203..c7db2697bd 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 83aba8924f..288dfd1753 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 4ed86bc7b8..285ea1f336 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 d4aaa66550..8bf0ea3bda 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 92ee87bae6..cd4a639882 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 e3166f8a6a..72b554d75c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 ce4388f7d0..c2a41d78fc 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 5fe2c05702..0b80dbaa75 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 80f6ac6855..b5e51c3f5f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 b72286bf23..b46eff1502 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 8b8ba578cf..6b5c0ce64b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 8dc9ae63fb..e715a941af 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 c032d98662..934a14d4d1 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 20b4913ca0..86167e9eaf 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: Stein-Aksel Basma \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 \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" @@ -130,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" @@ -206,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" @@ -214,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" @@ -307,10 +307,6 @@ msgstr "Ingenting her. Last opp noe!" msgid "Download" msgstr "Last ned" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "Størrelse (MB)" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Avslutt deling" @@ -333,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 "katalog" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" 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 144c62a20d..9809bf31fa 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 13ee386c97..ef6b295893 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\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 \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_trashbin.po b/l10n/nb_NO/files_trashbin.po index 633518a864..01054906b7 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 31a0f20d77..c181833c30 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Vennligst dobbelsjekk installasjonsguiden." -#: 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 a387674e87..c497f2e85c 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\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 \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/user_ldap.po b/l10n/nb_NO/user_ldap.po index 3c63c72d69..35aaa5cbfc 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 fbce462cfd..26e7154708 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 \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 b7fd91a354..2e64f43949 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 1dc5a7f0a6..4b647cbedf 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 44f57a3c25..1b13a63660 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 d95439caff..0cee90556b 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 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: I Robot \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 \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 74fbd95466..9a434d053c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 691867edd3..1de1a40622 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Controleer de installatiehandleiding 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 7f97ebd928..7f78b0ff04 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: I Robot \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 \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 access your Files via WebDAV" -msgstr "" +msgstr "Gebruik dit adres toegang tot uw bestanden via WebDAV" #: templates/users.php:21 msgid "Login Name" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index c20b7cdbe1..100537d381 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 20beefe152..2969b5bd52 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 aa6a654912..c4b47b4fcd 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 5be548bc79..f4db7d6135 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 788a9f32f9..52bff00695 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 a5248521e6..cffed75e81 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 36f8dd4237..a450ab0eb3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Ver vennleg og dobbeltsjekk installasjonsrettleiinga." -#: 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 c8e6a55220..7907f92e1f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 5c5ad7a9a9..9185e86cf6 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 62d91d324b..d49a352bac 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 d5e62b67f0..b5726109f4 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 fab275150d..3e68bba128 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 e3e435c95d..c115c7bcb0 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 5d07525c93..a68eec299d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 de99a7d541..711115512f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 06:02+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 \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 installation guides." 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 5a6876fc45..7800fb2ac7 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 79c3a2408c..f116c02e92 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 ea40cc080d..bb3f918e9f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 867fb03197..fe43168781 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 48ea42714c..11337d2fd3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 29b6b1e7ed..3a588e8ec1 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 de0bb6dfd5..aaf5215bb2 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 2437528359..6891c264cd 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Sprawdź ponownie przewodniki instalacji." -#: 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 ba026c0c7f..832d8ad567 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 b570c0a108..01b972fc29 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 783d8777b3..3689f42dab 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 d9edb13077..4dfc4e3486 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: Flávio Veras \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 \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 690c4a7dc6..cdd9c9b10f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 e4b23c0f5a..7afdd28b6c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 41181134d3..1d54305cb1 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 49eac5ebea..08ae2a731d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Por favor, confira os guias de instalação." -#: 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 e0f9cb3df6..1935025d84 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 ac6efd1ede..eeb1542264 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 9f55c2e10d..c3460150a5 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -145,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" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index c1e09e3566..2ba2e68744 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: FernandoMASilva\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 \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" @@ -130,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" @@ -206,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" @@ -214,19 +214,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 ficheiro" -#: js/files.js:777 +#: js/files.js:775 msgid "{count} files" msgstr "{count} ficheiros" @@ -307,10 +307,6 @@ msgstr "Vazio. Envie alguma coisa!" msgid "Download" msgstr "Transferir" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "Tamanho (MB)" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Deixar de partilhar" @@ -333,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 "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 "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 6ed9a00607..d8cc477805 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 409de4b11e..34c1e5df5f 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: moliveira \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_trashbin.po b/l10n/pt_PT/files_trashbin.po index 7a4513486f..7ae17d5054 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 833aa182d5..2ef68be120 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Por favor verifique installation guides." -#: 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 4ea38c9527..3a88f551d7 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\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 \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/user_ldap.po b/l10n/pt_PT/user_ldap.po index 2c1d8a46f1..8a2b3c0838 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+0000\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 \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 98c9b691f8..57854ade7e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 237f140b94..8894861fa2 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 e93e582df0..35dd42bcab 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 62b87ce9fe..f319bebaed 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 7e1217d80b..7c07f33903 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 415361465b..e86a8257c0 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Vă rugăm să verificați ghiduri de instalare." -#: 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 646d20c28d..e17f84b301 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 5f9fd63df9..40961493d4 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 c903e9b73e..d5c41508fc 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: Victor Bravo <>\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -147,55 +147,55 @@ msgstr "Декабрь" msgid "Settings" msgstr "Конфигурация" -#: js/js.js:725 +#: js/js.js:715 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:726 +#: js/js.js:716 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:727 +#: js/js.js:717 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:728 +#: js/js.js:718 msgid "1 hour ago" msgstr "час назад" -#: js/js.js:729 +#: js/js.js:719 msgid "{hours} hours ago" msgstr "{hours} часов назад" -#: js/js.js:730 +#: js/js.js:720 msgid "today" msgstr "сегодня" -#: js/js.js:731 +#: js/js.js:721 msgid "yesterday" msgstr "вчера" -#: js/js.js:732 +#: js/js.js:722 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:733 +#: js/js.js:723 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:734 +#: js/js.js:724 msgid "{months} months ago" msgstr "{months} месяцев назад" -#: js/js.js:735 +#: js/js.js:725 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:736 +#: js/js.js:726 msgid "last year" msgstr "в прошлом году" -#: js/js.js:737 +#: js/js.js:727 msgid "years ago" msgstr "несколько лет назад" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 35dc717407..4ad56576dc 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: hackproof \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 \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 e40f1a999c..16b471ff95 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 c2cc3b4558..2a40f969f6 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 3bdb59f2b3..901bd4502f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 82d9766097..808bd5e630 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 "%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 20f10f799f..9749dabadf 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 7a3986ae4e..8b7b1761bf 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 ebad7d902c..96b9db937f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 daca882133..3729a1fd0b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 22aaa0b32a..5a3e2f5653 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 fb132b599f..cdb0dc07c2 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 c03ae7d96b..cf143a0e5b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 81af1a130f..ceac6acd81 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 7d4b62cf71..89c6468fca 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 1a85c631bd..c38adcfffa 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 5b7c848c1f..7972570bed 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 \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 d3f25d6d0c..992004ace4 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: mhh \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 f93264912e..2d6d129a0b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 87612ddb7c..3dc222a547 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 522dc2c214..4b08c10c10 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 831e995531..d5aef89f37 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 bfb78000df..a5e1d85c81 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Prosím skontrolujte inštalačnú príručku." -#: 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 8acf34c334..5e28a7757a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 c86b565b32..f07169de6a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 6d3611558e..bad3200d3b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 241ad85e2d..e903a2a7da 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 4f2c149b40..96f9d5d23c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 1b8152af97..1b3bea29a0 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 d03b8e7749..9735b20cbc 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 517ba6fbfb..5142c536b3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Preverite navodila namestitve." -#: 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 1b02fe9946..c8b7611ce2 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 2567256b9b..f88bb87905 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 f425aa0df5..bc31739202 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 03979db9ea..3ec79ac57c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 50fb274f5d..5bf38bbd47 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 19e129f563..190a1611e3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 1950500da7..d5ee828185 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 02267f7de2..fe1fd17682 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." -#: 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 715755d529..700aec52fa 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 369f591ef8..0f639c345a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 c86c727454..106ddc4f9d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 2f89b86d9b..c0e1c276d9 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 c672822d03..796264623b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 2254241f58..e01f2c5f74 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 4be4858c21..0a01cd614e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 89a0c1efea..7357a63e2c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 "пре %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 efd933f45f..e1c4fa7ec0 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 16b87bf696..dd85d0b2bc 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 641a098176..585a76275d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 32cc17a47e..8ec50b54f9 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 989102d97f..32c50e0c6b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 d65063ac45..b8a27d1249 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 8c4037c264..c859289241 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 58b5d10f36..8507568125 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 2b1c30e448..83ecbea0eb 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 ba29a89d9b..26304dbe25 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\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" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 8fd17dc49c..ef10a76f25 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: medialabs\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 \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" @@ -132,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" @@ -208,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" @@ -216,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" @@ -309,10 +309,6 @@ msgstr "Ingenting här. Ladda upp något!" msgid "Download" msgstr "Ladda ner" -#: templates/index.php:80 -msgid "Size (MB)" -msgstr "Storlek (MB)" - #: templates/index.php:87 templates/index.php:88 msgid "Unshare" msgstr "Sluta dela" @@ -335,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 e311ebaf59..cfb13426d4 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -6,13 +6,14 @@ # medialabs, 2013 # Magnus Höglund , 2013 # medialabs, 2013 +# Stefan Gagner , 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 \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 \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 27fed989b7..9bc2b5ff52 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 e4c0320891..51fd64b4e8 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 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: I Robot \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 \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 7745dfccd5..1c3a110a2e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 d053dcf2a9..bf4fbea2ce 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Var god kontrollera installationsguiden." -#: 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 b27ae09ff5..073d867c3f 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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/user_ldap.po b/l10n/sv/user_ldap.po index ff21182d41..e791905fca 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 2d020090c3..1187272d81 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 \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 5b2319cea4..20800cdbaa 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 34c0d05dd5..d46035e06b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 73715179a4..7dad84be46 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 5db0ef55c8..f52e1b8f06 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 0eae57387b..93098c6ca7 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 9283a55605..fca38a565e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 2bf0db1405..8143a91bdf 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 7eac0ef721..8b5cc63bff 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 5e7bf8a80c..8fbb008135 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 1b5a963b63..882aeb59b6 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 45b20fd759..e1f945a5da 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 f3e89c5f63..2ba8fe74e5 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 df7cfe494f..d7cc2bbf03 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 06:02+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 \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 installation guides." 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 c972f5ac51..6268aa07c3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 081fefef11..93d9a00efa 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 f1292b6056..f37a698508 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-21 01:54-0400\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 \n" "Language-Team: LANGUAGE \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 6c895d0d9a..a7148859c2 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-21 01:54-0400\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 \n" "Language-Team: LANGUAGE \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 f82ce8f5c1..bb6a5837a2 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-21 01:54-0400\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 \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 949e79a9d1..910554d791 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-21 01:54-0400\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 \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index bda9ba06f6..5131866a2e 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-21 01:54-0400\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 \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 711c5625aa..627c5eb4a1 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-21 01:54-0400\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 \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index f1e5d1156a..6c154d90be 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-21 01:54-0400\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 \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index e9a0ff4172..a700fab669 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-21 01:54-0400\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 \n" "Language-Team: LANGUAGE \n" @@ -189,55 +189,55 @@ msgstr "" msgid "Please double check the installation guides." 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 17046e4c91..a2791378a8 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-21 01:54-0400\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 \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 0728975821..8f11405f03 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-21 01:54-0400\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 \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 4a759c5648..73e17a7004 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-21 01:54-0400\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 \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 1fb96793d0..2a9827f660 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 45d1539136..1e2f58fa3e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 7535ddd983..80207630e8 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 6a9aa1aa3e..a97167631b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 03bb8594c5..7c894f6b70 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 5952cbc55c..46067a7281 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 4cf54a6650..94afd2135e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 b4bfe71595..66e7c88426 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 7987350f08..80ce6702e1 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -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" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 3257bd1894..9abe7d3f58 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: ismail yenigül \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 \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" @@ -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,19 +213,19 @@ 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" @@ -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 "Boyut (MB)" - #: 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 "dizin" -#: templates/part.list.php:78 +#: templates/part.list.php:76 msgid "directories" 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 1828453aa5..f6460e1225 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 4c6de18710..c0f64bf35b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 13b42bfed9..3406138018 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 5f6fe089c3..449e059d89 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." msgstr "Lütfen kurulum kılavuzlarını 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 d82cbdf04b..fa30f2a9ce 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\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 \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 6a158650fd..d149088733 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 225b661f15..5c4b186539 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \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 7c7fbe7c5e..3533873d05 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \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 7c4fa35c63..fe1e2cc94b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 8f85f8ac6e..d21a687f7c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index cf1a0344ba..62010214e3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index a9bc3bfbb5..c67310b85d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -189,55 +189,55 @@ msgstr "" msgid "Please double check the installation guides." 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 403aff3b2a..da681c3b06 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index 2f622426c8..5631393b6e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index acb3491f97..2c9e555a2d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 d099b37680..db4daec0cf 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 1518270992..7877ab4089 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 dbd0b9a628..09ed75540f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 5e0de7cfdf..f00824366d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 c2a1dc6a41..e171090503 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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/uk/settings.po b/l10n/uk/settings.po index c87d3d687b..eb208b6c39 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 19f19aceb4..c3f5ce43d1 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 d0ab95d0fe..6300311294 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 5859fea089..92cbb6b822 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 889ce306b9..7c50f21bfc 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 007b1c90ad..f41842cfd7 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-20 06:02+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 \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 installation guides." 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 6f1f200345..53ebc714e8 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 2f2ec998c7..bcf3636b0b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 0bcc1d5210..f78fe3f2f3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 d0a2edb4ab..b11c7b344e 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 6913f6e32a..82ed6f6c5d 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 b8d5ceeac7..cf8e59dc1a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 da46558bf1..563c0d9194 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 80ef8ca8bf..072047a082 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 3dcb1da4d0..d2e6b3b096 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 d38c30dce8..abef1e9acb 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 d000b94e56..63b3e4ba59 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 4e88430d38..eaefb2344f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: hlx98007 \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 \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 ad9512d3f4..e2b7b32896 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 eb3a3a209a..014194a087 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 a7660eb564..931b1011d7 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 1f7f66f486..958e00ce8b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 "" -#: 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 9515cdecd0..93776a9505 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 abdff88dd7..8e4e384b26 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 3d6ed9dd16..e2a77942bf 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 63b9e5425e..684c5b7b6b 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 c25b6b1cb9..9e18604537 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 f9e7ff8bee..4b2cfe43bf 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 61496fda24..de4c1a0f1a 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 a857e1b106..e5ac1806e9 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 "%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 b11d9b99af..050a4523fc 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 ac196dc526..fe217328eb 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 3cda274f0c..6d12be47ce 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: I Robot \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 5f15da55c1..5075f77ace 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:55+0000\n" "Last-Translator: I Robot \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 e8c343c1b2..c17f231173 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 f3e69f881f..e29d626180 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 e88a0b6474..ee3c23dbdc 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 b817f9e6c5..d097740531 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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 8d0ff173f6..05a3db8bcc 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 e6ae906225..919f13d502 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 62a5cf28db..faf1c7c962 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:14+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:24+0000\n" "Last-Translator: pellaeon \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 "幾年前" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index b93c34fbee..cd2de3f345 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" -"Last-Translator: pellaeon \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 \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 75e5708440..cf0e97888c 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 841576f7ad..7dd5722a2f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 53043df183..55811ae921 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 eefd3f8993..8c140b1aa3 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+0000\n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-22 05:25+0000\n" "Last-Translator: I Robot \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 installation guides." 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/zh_TW/settings.po b/l10n/zh_TW/settings.po index 1d4baa45ac..960ca8cabf 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:15+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 \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 AGPL." -msgstr "由ownCloud 社區開發,源代碼AGPL許可證下發布。" +msgstr "由 ownCloud 社群開發,原始碼AGPL 許可證下發布。" #: 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 5650b665f3..6e4c99722f 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-21 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 05:16+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 \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 5e8abbbb84..a72b457be2 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 \n" +"POT-Creation-Date: 2013-07-22 01:54-0400\n" +"PO-Revision-Date: 2013-07-21 09:20+0000\n" +"Last-Translator: pellaeon \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/settings/l10n/nl.php b/settings/l10n/nl.php index d51d1d3af5..910e321b5f 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 access your Files via WebDAV" => "Gebruik dit adres toegang tot uw bestanden via WebDAV", "Login Name" => "Inlognaam", "Create" => "Creëer", "Admin Recovery Password" => "Beheer herstel wachtwoord", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 74040fcfa2..937347d5a1 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 ownCloud community, the source code is licensed under the AGPL." => "由ownCloud 社區開發,源代碼AGPL許可證下發布。", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "由 ownCloud 社群開發,原始碼AGPL 許可證下發布。", "Add your App" => "添加你的 App", "More Apps" => "更多Apps", "Select an App" => "選擇一個應用程式", From da892d69ab724354e1b3ee251e540ba306fffe44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 12 Jul 2013 13:25:37 +0200 Subject: [PATCH 108/108] if the file doesn't exists; create a new one. We use this to create new text files in the web interface --- apps/files_external/lib/webdav.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index c2fe7c67b5..4869322d87 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) {