From 08a46e30806434bcd854f7868c3c9c6553d4ac11 Mon Sep 17 00:00:00 2001 From: adrien Date: Thu, 6 Mar 2014 17:57:09 +0100 Subject: add cache for single users --- lib/private/user/database.php | 78 +++++++++++++++++++++++++------------------ 1 file changed, 45 insertions(+), 33 deletions(-) (limited to 'lib') diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 15e6643dfb3..911073c133e 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -42,7 +42,9 @@ class OC_User_Database extends OC_User_Backend { /** * @var PasswordHash */ - static private $hasher = null; + private static $hasher = null; + + protected static $cache = array(); private function getHasher() { if (!self::$hasher) { @@ -135,11 +137,9 @@ class OC_User_Database extends OC_User_Backend { * @return string display name */ public function getDisplayName($uid) { - $query = OC_DB::prepare('SELECT `displayname` FROM `*PREFIX*users` WHERE `uid` = ?'); - $result = $query->execute(array($uid))->fetchAll(); - $displayName = trim($result[0]['displayname'], ' '); - if (!empty($displayName)) { - return $displayName; + $this->loadUser($uid); + if (!empty(self::$cache['uid']['displayname'])) { + return self::$cache['uid']['displayname']; } else { return $uid; } @@ -183,23 +183,41 @@ class OC_User_Database extends OC_User_Backend { $storedHash = $row['password']; if ($storedHash[0] == '$') { //the new phpass based hashing $hasher = $this->getHasher(); - if ($hasher->CheckPassword($password . OC_Config::getValue('passwordsalt', ''), $storedHash)) { - return $row['uid']; - } else { - return false; - } - } else { //old sha1 based hashing - if (sha1($password) == $storedHash) { - //upgrade to new hashing - $this->setPassword($row['uid'], $password); + if ($hasher->CheckPassword($password . OC_Config::getValue('passwordsalt', ''), $storedHash)) return $row['uid']; - } else { - return false; - } + + //old sha1 based hashing + } elseif (sha1($password) == $storedHash) { + //upgrade to new hashing + $this->setPassword($row['uid'], $password); + return $row['uid']; + } + } + + return false; + } + + /** + * @brief Load an user in the cache + * @returns boolean + */ + protected function loadUser($uid) { + if (empty(self::$cache[$uid])) { + $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)'); + $result = $query->execute(array($uid)); + + if (OC_DB::isError($result)) { + OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); + return false; + } + + while ($row = $result->fetchRow()) { + self::$cache[$uid]['uid'] = $row['uid']; + self::$cache[$uid]['displayname'] = $row['displayname']; } - } else { - return false; } + + return true; } /** @@ -224,26 +242,20 @@ class OC_User_Database extends OC_User_Backend { * @return boolean */ public function userExists($uid) { - $query = OC_DB::prepare('SELECT COUNT(*) FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)'); - $result = $query->execute(array($uid)); - if (OC_DB::isError($result)) { - OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); - return false; - } - return $result->fetchOne() > 0; + $this->loadUser($uid); + return empty(self::$cache[$uid]) ? false : true; } /** * @brief get the user's home directory * @param string $uid the username - * @return string|false + * @return boolean */ public function getHome($uid) { - if ($this->userExists($uid)) { + if ($this->userExists($uid)) return OC_Config::getValue("datadirectory", OC::$SERVERROOT . "/data") . '/' . $uid; - } else { - return false; - } + + return false; } /** @@ -256,7 +268,7 @@ class OC_User_Database extends OC_User_Backend { /** * counts the users in the database * - * @return false|string | bool + * @return int | bool */ public function countUsers() { $query = OC_DB::prepare('SELECT COUNT(*) FROM `*PREFIX*users`'); -- cgit v1.2.3 From dde4f2f91720a5eb4ad7db4fdb15dfc115f0e8c0 Mon Sep 17 00:00:00 2001 From: adrien Date: Thu, 6 Mar 2014 22:23:17 +0100 Subject: upgrade the cache user --- lib/private/user/database.php | 52 +++++++++++++++++++++++++++++++------------ 1 file changed, 38 insertions(+), 14 deletions(-) (limited to 'lib') diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 911073c133e..1e3d457eb50 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -39,13 +39,15 @@ require_once 'phpass/PasswordHash.php'; * Class for user management in a SQL Database (e.g. MySQL, SQLite) */ class OC_User_Database extends OC_User_Backend { + + protected static $cache = array(); + protected static $cache_complete = true; + /** * @var PasswordHash */ private static $hasher = null; - protected static $cache = array(); - private function getHasher() { if (!self::$hasher) { //we don't want to use DES based crypt(), since it doesn't return a hash with a recognisable prefix @@ -199,6 +201,7 @@ class OC_User_Database extends OC_User_Backend { /** * @brief Load an user in the cache + * @param string $uid the username * @returns boolean */ protected function loadUser($uid) { @@ -220,6 +223,32 @@ class OC_User_Database extends OC_User_Backend { return true; } + /** + * @brief Load an user in the cache + * @param string $uid the username + * @returns boolean + */ + protected function loadUsers() { + if (!self::$cache_complete) { + $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users` ORDER BY `uid`'); + $result = $query->execute(array($uid)); + + if (OC_DB::isError($result)) { + OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); + return false; + } + + while ($row = $result->fetchRow()) { + self::$cache[$uid]['uid'] = $row['uid']; + self::$cache[$uid]['displayname'] = $row['displayname']; + } + + self::$cache_complete = true; + } + + return true; + } + /** * @brief Get a list of all users * @returns array with all uids @@ -227,12 +256,12 @@ class OC_User_Database extends OC_User_Backend { * Get a list of all users. */ public function getUsers($search = '', $limit = null, $offset = null) { - $query = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*users` WHERE LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); - $result = $query->execute(array($search . '%')); + $this->loadUsers(); + $users = array(); - while ($row = $result->fetchRow()) { - $users[] = $row['uid']; - } + foreach (self::$cache as $uid => $value) + $users[] = $uid; + return $users; } @@ -271,13 +300,8 @@ class OC_User_Database extends OC_User_Backend { * @return int | bool */ public function countUsers() { - $query = OC_DB::prepare('SELECT COUNT(*) FROM `*PREFIX*users`'); - $result = $query->execute(); - if (OC_DB::isError($result)) { - OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); - return false; - } - return $result->fetchOne(); + $this->loadUsers(); + return count(self::$cache); } } -- cgit v1.2.3 From 5cdfc56867d0fe8dc5be9e2112c53e3ddf212104 Mon Sep 17 00:00:00 2001 From: adrien Date: Thu, 6 Mar 2014 22:34:43 +0100 Subject: update the cache when add user --- lib/private/user/database.php | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) (limited to 'lib') diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 1e3d457eb50..bbd72fc65e7 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -39,15 +39,14 @@ require_once 'phpass/PasswordHash.php'; * Class for user management in a SQL Database (e.g. MySQL, SQLite) */ class OC_User_Database extends OC_User_Backend { - - protected static $cache = array(); - protected static $cache_complete = true; - /** * @var PasswordHash */ private static $hasher = null; + protected static $cache = array(); + protected static $cache_complete = false; + private function getHasher() { if (!self::$hasher) { //we don't want to use DES based crypt(), since it doesn't return a hash with a recognisable prefix @@ -68,16 +67,19 @@ class OC_User_Database extends OC_User_Backend { * itself, not in its subclasses. */ public function createUser($uid, $password) { - if ($this->userExists($uid)) { - return false; - } else { + if (!$this->userExists($uid)) { $hasher = $this->getHasher(); $hash = $hasher->HashPassword($password . OC_Config::getValue('passwordsalt', '')); $query = OC_DB::prepare('INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )'); $result = $query->execute(array($uid, $hash)); - - return $result ? true : false; + + if ($result) { + self::$cache[$uid]['uid'] = $uid; + return true; + } } + + return false; } /** @@ -127,10 +129,11 @@ class OC_User_Database extends OC_User_Backend { if ($this->userExists($uid)) { $query = OC_DB::prepare('UPDATE `*PREFIX*users` SET `displayname` = ? WHERE LOWER(`uid`) = ?'); $query->execute(array($displayName, $uid)); + self::$cache[$uid]['displayname'] = $displayName; return true; - } else { - return false; } + + return false; } /** @@ -140,8 +143,8 @@ class OC_User_Database extends OC_User_Backend { */ public function getDisplayName($uid) { $this->loadUser($uid); - if (!empty(self::$cache['uid']['displayname'])) { - return self::$cache['uid']['displayname']; + if (!empty(self::$cache[$uid]['displayname'])) { + return self::$cache[$uid]['displayname']; } else { return $uid; } -- cgit v1.2.3 From fbde24c89ae61294bb6327ccc2b5b150b2ec4928 Mon Sep 17 00:00:00 2001 From: adrien Date: Fri, 7 Mar 2014 08:46:34 +0100 Subject: fix undefined in loadUsers --- lib/private/user/database.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'lib') diff --git a/lib/private/user/database.php b/lib/private/user/database.php index bbd72fc65e7..80d52feffc8 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -54,7 +54,6 @@ class OC_User_Database extends OC_User_Backend { self::$hasher = new PasswordHash(8, $forcePortable); } return self::$hasher; - } /** @@ -112,9 +111,9 @@ class OC_User_Database extends OC_User_Backend { $query->execute(array($hash, $uid)); return true; - } else { - return false; } + + return false; } /** @@ -188,8 +187,9 @@ class OC_User_Database extends OC_User_Backend { $storedHash = $row['password']; if ($storedHash[0] == '$') { //the new phpass based hashing $hasher = $this->getHasher(); - if ($hasher->CheckPassword($password . OC_Config::getValue('passwordsalt', ''), $storedHash)) + if ($hasher->CheckPassword($password . OC_Config::getValue('passwordsalt', ''), $storedHash)) { return $row['uid']; + } //old sha1 based hashing } elseif (sha1($password) == $storedHash) { @@ -234,7 +234,7 @@ class OC_User_Database extends OC_User_Backend { protected function loadUsers() { if (!self::$cache_complete) { $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users` ORDER BY `uid`'); - $result = $query->execute(array($uid)); + $result = $query->execute(); if (OC_DB::isError($result)) { OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); @@ -262,8 +262,9 @@ class OC_User_Database extends OC_User_Backend { $this->loadUsers(); $users = array(); - foreach (self::$cache as $uid => $value) + foreach (self::$cache as $uid => $value) { $users[] = $uid; + } return $users; } @@ -281,11 +282,12 @@ class OC_User_Database extends OC_User_Backend { /** * @brief get the user's home directory * @param string $uid the username - * @return boolean + * @return string|false */ public function getHome($uid) { - if ($this->userExists($uid)) + if ($this->userExists($uid)) { return OC_Config::getValue("datadirectory", OC::$SERVERROOT . "/data") . '/' . $uid; + } return false; } -- cgit v1.2.3 From d8843f6cd3b37bc7e95b5baa437d7087b09fc6fd Mon Sep 17 00:00:00 2001 From: nishiki Date: Sun, 9 Mar 2014 12:01:35 +0100 Subject: minor clean code --- lib/private/user/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 80d52feffc8..c472c5445b7 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -276,7 +276,7 @@ class OC_User_Database extends OC_User_Backend { */ public function userExists($uid) { $this->loadUser($uid); - return empty(self::$cache[$uid]) ? false : true; + return !empty(self::$cache[$uid]); } /** -- cgit v1.2.3 From 75011c2e09e2ee7e9c76a86e938c4d8656225352 Mon Sep 17 00:00:00 2001 From: nishiki Date: Sun, 9 Mar 2014 12:22:47 +0100 Subject: add query result (boolean) for update or delete --- lib/private/user/database.php | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'lib') diff --git a/lib/private/user/database.php b/lib/private/user/database.php index c472c5445b7..57ecdda9dad 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -91,8 +91,9 @@ class OC_User_Database extends OC_User_Backend { public function deleteUser($uid) { // Delete user-group-relation $query = OC_DB::prepare('DELETE FROM `*PREFIX*users` WHERE `uid` = ?'); - $query->execute(array($uid)); - return true; + $result = $query->execute(array($uid)); + + return $result ? true : false; } /** @@ -108,9 +109,9 @@ class OC_User_Database extends OC_User_Backend { $hasher = $this->getHasher(); $hash = $hasher->HashPassword($password . OC_Config::getValue('passwordsalt', '')); $query = OC_DB::prepare('UPDATE `*PREFIX*users` SET `password` = ? WHERE `uid` = ?'); - $query->execute(array($hash, $uid)); + $result = $query->execute(array($hash, $uid)); - return true; + return $result ? true : false; } return false; @@ -142,11 +143,7 @@ class OC_User_Database extends OC_User_Backend { */ public function getDisplayName($uid) { $this->loadUser($uid); - if (!empty(self::$cache[$uid]['displayname'])) { - return self::$cache[$uid]['displayname']; - } else { - return $uid; - } + return empty(self::$cache[$uid]['displayname']) ? $uid : self::$cache[$uid]['displayname']; } /** -- cgit v1.2.3 From ba9d8f7c1a448e0a769ee31d20ee75c1616b22e7 Mon Sep 17 00:00:00 2001 From: nishiki Date: Sun, 9 Mar 2014 12:47:19 +0100 Subject: fix undifined uid --- lib/private/user/database.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 57ecdda9dad..591ea2a5c98 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -239,7 +239,8 @@ class OC_User_Database extends OC_User_Backend { } while ($row = $result->fetchRow()) { - self::$cache[$uid]['uid'] = $row['uid']; + $uid = $row['uid']; + self::$cache[$uid]['uid'] = $uid; self::$cache[$uid]['displayname'] = $row['displayname']; } -- cgit v1.2.3 From 415b1d03bca12c082ff70e44d3b7b8b3fbc8f347 Mon Sep 17 00:00:00 2001 From: adrien Date: Mon, 10 Mar 2014 17:27:51 +0100 Subject: fix cache when remove an user --- lib/private/user/database.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 591ea2a5c98..4a9ad1b825e 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -93,7 +93,14 @@ class OC_User_Database extends OC_User_Backend { $query = OC_DB::prepare('DELETE FROM `*PREFIX*users` WHERE `uid` = ?'); $result = $query->execute(array($uid)); - return $result ? true : false; + if ($result) { + if (isset(self::$cache[$uid])) { + unset(self::$cache[$uid]); + } + return true; + } + + return false; } /** -- cgit v1.2.3 From f827761e7111d4f3b082074facef31efd74939e7 Mon Sep 17 00:00:00 2001 From: adrien Date: Tue, 11 Mar 2014 11:56:46 +0100 Subject: remove static variable, add limit and offset --- lib/private/user/database.php | 80 +++++++++++++++++++++++++++---------------- 1 file changed, 51 insertions(+), 29 deletions(-) (limited to 'lib') diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 4a9ad1b825e..5df9c9e2b42 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -44,8 +44,8 @@ class OC_User_Database extends OC_User_Backend { */ private static $hasher = null; - protected static $cache = array(); - protected static $cache_complete = false; + private $cache = array(); + private $cache_complete = false; private function getHasher() { if (!self::$hasher) { @@ -73,7 +73,7 @@ class OC_User_Database extends OC_User_Backend { $result = $query->execute(array($uid, $hash)); if ($result) { - self::$cache[$uid]['uid'] = $uid; + $this->cache[$uid]['uid'] = $uid; return true; } } @@ -94,8 +94,8 @@ class OC_User_Database extends OC_User_Backend { $result = $query->execute(array($uid)); if ($result) { - if (isset(self::$cache[$uid])) { - unset(self::$cache[$uid]); + if (isset($this->cache[$uid])) { + unset($this->cache[$uid]); } return true; } @@ -136,7 +136,8 @@ class OC_User_Database extends OC_User_Backend { if ($this->userExists($uid)) { $query = OC_DB::prepare('UPDATE `*PREFIX*users` SET `displayname` = ? WHERE LOWER(`uid`) = ?'); $query->execute(array($displayName, $uid)); - self::$cache[$uid]['displayname'] = $displayName; + $this->cache[$uid]['displayname'] = $displayName; + return true; } @@ -150,7 +151,7 @@ class OC_User_Database extends OC_User_Backend { */ public function getDisplayName($uid) { $this->loadUser($uid); - return empty(self::$cache[$uid]['displayname']) ? $uid : self::$cache[$uid]['displayname']; + return empty($this->cache[$uid]['displayname']) ? $uid : $this->cache[$uid]['displayname']; } /** @@ -159,15 +160,24 @@ class OC_User_Database extends OC_User_Backend { * * Get a list of all display names and user ids. */ - public function getDisplayNames($search = '', $limit = null, $offset = null) { + public function getDisplayNames($search = '', $limit = null, $offset = 0) { + $this->loadUsers(); + + $search = strtolower($search); + $i = 0; + $displayNames = array(); - $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users`' - . ' WHERE LOWER(`displayname`) LIKE LOWER(?) OR ' - . 'LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); - $result = $query->execute(array($search . '%', $search . '%')); - $users = array(); - while ($row = $result->fetchRow()) { - $displayNames[$row['uid']] = $row['displayname']; + foreach ($this->cache as $uid => $value) { + if ((preg_match('/^.*'.$search.'.*/', strtolower($uid)) || preg_match('/^.*'.$search.'.*/', strtolower($value['displayname']))) && $offset <= $i) { + $displayNames[$uid] = $value['displayname']; + if (!is_null($limit)) { + $limit--; + if ($limit <= 0) { + break; + } + } + } + $i++; } return $displayNames; @@ -211,8 +221,8 @@ class OC_User_Database extends OC_User_Backend { * @param string $uid the username * @returns boolean */ - protected function loadUser($uid) { - if (empty(self::$cache[$uid])) { + private function loadUser($uid) { + if (empty($this->cache[$uid])) { $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)'); $result = $query->execute(array($uid)); @@ -222,8 +232,8 @@ class OC_User_Database extends OC_User_Backend { } while ($row = $result->fetchRow()) { - self::$cache[$uid]['uid'] = $row['uid']; - self::$cache[$uid]['displayname'] = $row['displayname']; + $this->cache[$uid]['uid'] = $row['uid']; + $this->cache[$uid]['displayname'] = $row['displayname']; } } @@ -235,8 +245,8 @@ class OC_User_Database extends OC_User_Backend { * @param string $uid the username * @returns boolean */ - protected function loadUsers() { - if (!self::$cache_complete) { + private function loadUsers() { + if (!$this->cache_complete) { $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users` ORDER BY `uid`'); $result = $query->execute(); @@ -247,11 +257,11 @@ class OC_User_Database extends OC_User_Backend { while ($row = $result->fetchRow()) { $uid = $row['uid']; - self::$cache[$uid]['uid'] = $uid; - self::$cache[$uid]['displayname'] = $row['displayname']; + $this->cache[$uid]['uid'] = $uid; + $this->cache[$uid]['displayname'] = $row['displayname']; } - self::$cache_complete = true; + $this->cache_complete = true; } return true; @@ -263,12 +273,24 @@ class OC_User_Database extends OC_User_Backend { * * Get a list of all users. */ - public function getUsers($search = '', $limit = null, $offset = null) { + public function getUsers($search = '', $limit = null, $offset = 0) { $this->loadUsers(); + $search = strtolower($search); + $i = 0; + $users = array(); - foreach (self::$cache as $uid => $value) { - $users[] = $uid; + foreach ($this->cache as $uid => $value) { + if (preg_match('/^'.$search.'.*/', strtolower($uid)) && $offset <= $i) { + $users[] = $uid; + if (!is_null($limit)) { + $limit--; + if ($limit <= 0) { + break; + } + } + } + $i++; } return $users; @@ -281,7 +303,7 @@ class OC_User_Database extends OC_User_Backend { */ public function userExists($uid) { $this->loadUser($uid); - return !empty(self::$cache[$uid]); + return !empty($this->cache[$uid]); } /** @@ -311,7 +333,7 @@ class OC_User_Database extends OC_User_Backend { */ public function countUsers() { $this->loadUsers(); - return count(self::$cache); + return count($this->cache); } } -- cgit v1.2.3 From ea6f8ba352ac7b3c9069407d6f64664ddee81c4d Mon Sep 17 00:00:00 2001 From: adrien Date: Tue, 11 Mar 2014 16:58:10 +0100 Subject: fix remove cache when delete --- lib/private/user/database.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'lib') diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 5df9c9e2b42..683ba90e558 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -93,14 +93,11 @@ class OC_User_Database extends OC_User_Backend { $query = OC_DB::prepare('DELETE FROM `*PREFIX*users` WHERE `uid` = ?'); $result = $query->execute(array($uid)); - if ($result) { - if (isset($this->cache[$uid])) { - unset($this->cache[$uid]); - } - return true; + if (isset($this->cache[$uid])) { + unset($this->cache[$uid]); } - return false; + return $result ? true : false; } /** -- cgit v1.2.3 From 0da61a26ee842e611f33d32109572c70bbc170b1 Mon Sep 17 00:00:00 2001 From: adrien Date: Fri, 21 Mar 2014 15:50:25 +0100 Subject: remove cache all user --- lib/private/user/database.php | 92 +++++++++++-------------------------------- 1 file changed, 22 insertions(+), 70 deletions(-) (limited to 'lib') diff --git a/lib/private/user/database.php b/lib/private/user/database.php index 683ba90e558..706982bb75d 100644 --- a/lib/private/user/database.php +++ b/lib/private/user/database.php @@ -45,7 +45,6 @@ class OC_User_Database extends OC_User_Backend { private static $hasher = null; private $cache = array(); - private $cache_complete = false; private function getHasher() { if (!self::$hasher) { @@ -71,11 +70,8 @@ class OC_User_Database extends OC_User_Backend { $hash = $hasher->HashPassword($password . OC_Config::getValue('passwordsalt', '')); $query = OC_DB::prepare('INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )'); $result = $query->execute(array($uid, $hash)); - - if ($result) { - $this->cache[$uid]['uid'] = $uid; - return true; - } + + return $result ? true : false; } return false; @@ -157,24 +153,15 @@ class OC_User_Database extends OC_User_Backend { * * Get a list of all display names and user ids. */ - public function getDisplayNames($search = '', $limit = null, $offset = 0) { - $this->loadUsers(); - - $search = strtolower($search); - $i = 0; - + public function getDisplayNames($search = '', $limit = null, $offset = null) { $displayNames = array(); - foreach ($this->cache as $uid => $value) { - if ((preg_match('/^.*'.$search.'.*/', strtolower($uid)) || preg_match('/^.*'.$search.'.*/', strtolower($value['displayname']))) && $offset <= $i) { - $displayNames[$uid] = $value['displayname']; - if (!is_null($limit)) { - $limit--; - if ($limit <= 0) { - break; - } - } - } - $i++; + $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users`' + . ' WHERE LOWER(`displayname`) LIKE LOWER(?) OR ' + . 'LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); + $result = $query->execute(array($search . '%', $search . '%')); + $users = array(); + while ($row = $result->fetchRow()) { + $displayNames[$row['uid']] = $row['displayname']; } return $displayNames; @@ -237,59 +224,19 @@ class OC_User_Database extends OC_User_Backend { return true; } - /** - * @brief Load an user in the cache - * @param string $uid the username - * @returns boolean - */ - private function loadUsers() { - if (!$this->cache_complete) { - $query = OC_DB::prepare('SELECT `uid`, `displayname` FROM `*PREFIX*users` ORDER BY `uid`'); - $result = $query->execute(); - - if (OC_DB::isError($result)) { - OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); - return false; - } - - while ($row = $result->fetchRow()) { - $uid = $row['uid']; - $this->cache[$uid]['uid'] = $uid; - $this->cache[$uid]['displayname'] = $row['displayname']; - } - - $this->cache_complete = true; - } - - return true; - } - /** * @brief Get a list of all users * @returns array with all uids * * Get a list of all users. */ - public function getUsers($search = '', $limit = null, $offset = 0) { - $this->loadUsers(); - - $search = strtolower($search); - $i = 0; - + public function getUsers($search = '', $limit = null, $offset = null) { + $query = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*users` WHERE LOWER(`uid`) LIKE LOWER(?)', $limit, $offset); + $result = $query->execute(array($search . '%')); $users = array(); - foreach ($this->cache as $uid => $value) { - if (preg_match('/^'.$search.'.*/', strtolower($uid)) && $offset <= $i) { - $users[] = $uid; - if (!is_null($limit)) { - $limit--; - if ($limit <= 0) { - break; - } - } - } - $i++; + while ($row = $result->fetchRow()) { + $users[] = $row['uid']; } - return $users; } @@ -329,8 +276,13 @@ class OC_User_Database extends OC_User_Backend { * @return int | bool */ public function countUsers() { - $this->loadUsers(); - return count($this->cache); + $query = OC_DB::prepare('SELECT COUNT(*) FROM `*PREFIX*users`'); + $result = $query->execute(); + if (OC_DB::isError($result)) { + OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); + return false; + } + return $result->fetchOne(); } } -- cgit v1.2.3 From 015b9b1dac1e7f90e4e28d2b19697bedf83e56fe Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 2 Apr 2014 12:54:41 +0200 Subject: Add option to getUsersSharingFile() to get the paths for the shared users --- lib/private/share/share.php | 61 +++++++++++++++++++++++++++++++++++++-------- lib/public/share.php | 7 +++--- 2 files changed, 54 insertions(+), 14 deletions(-) (limited to 'lib') diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 7bab98b00bf..3d22f6fd450 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -91,23 +91,25 @@ class Share extends \OC\Share\Constants { /** * Find which users can access a shared item - * @param $path to the file - * @param $user owner of the file - * @param include owner to the list of users with access to the file + * @param string $path to the file + * @param string $ownerUser owner of the file + * @param bool $includeOwner include owner to the list of users with access to the file + * @param bool $returnUserPaths Return an array with the user => path map * @return array * @note $path needs to be relative to user data dir, e.g. 'file.txt' * not '/admin/data/file.txt' */ - public static function getUsersSharingFile($path, $user, $includeOwner = false) { + public static function getUsersSharingFile($path, $ownerUser, $includeOwner = false, $returnUserPaths = false) { - $shares = array(); + $shares = $sharePaths = $fileTargets = array(); $publicShare = false; $source = -1; $cache = false; - $view = new \OC\Files\View('/' . $user . '/files'); + $view = new \OC\Files\View('/' . $ownerUser . '/files'); if ($view->file_exists($path)) { $meta = $view->getFileInfo($path); + $path = substr($meta->getPath(), strlen('/' . $ownerUser . '/files')); } else { // if the file doesn't exists yet we start with the parent folder $meta = $view->getFileInfo(dirname($path)); @@ -119,10 +121,9 @@ class Share extends \OC\Share\Constants { } while ($source !== -1) { - // Fetch all shares with another user $query = \OC_DB::prepare( - 'SELECT `share_with` + 'SELECT `share_with`, `file_source`, `file_target` FROM `*PREFIX*share` WHERE @@ -136,12 +137,15 @@ class Share extends \OC\Share\Constants { } else { while ($row = $result->fetchRow()) { $shares[] = $row['share_with']; + if ($returnUserPaths) { + $fileTargets[(int) $row['file_source']][$row['share_with']] = $row; + } } } - // We also need to take group shares into account + // We also need to take group shares into account $query = \OC_DB::prepare( - 'SELECT `share_with` + 'SELECT `share_with`, `file_source`, `file_target` FROM `*PREFIX*share` WHERE @@ -156,6 +160,11 @@ class Share extends \OC\Share\Constants { while ($row = $result->fetchRow()) { $usersInGroup = \OC_Group::usersInGroup($row['share_with']); $shares = array_merge($shares, $usersInGroup); + if ($returnUserPaths) { + foreach ($usersInGroup as $user) { + $fileTargets[(int) $row['file_source']][$user] = $row; + } + } } } @@ -188,9 +197,39 @@ class Share extends \OC\Share\Constants { $source = -1; } } + // Include owner in list of users, if requested if ($includeOwner) { - $shares[] = $user; + $shares[] = $ownerUser; + if ($returnUserPaths) { + $sharePaths[$ownerUser] = $path; + } + } + + if ($returnUserPaths) { + $fileTargetIDs = array_keys($fileTargets); + $fileTargetIDs = array_unique($fileTargetIDs); + + $query = \OC_DB::prepare( + 'SELECT `fileid`, `path` + FROM `*PREFIX*filecache` + WHERE `fileid` IN (' . implode(',', $fileTargetIDs) . ')' + ); + $result = $query->execute(); + + if (\OCP\DB::isError($result)) { + \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); + } else { + while ($row = $result->fetchRow()) { + foreach ($fileTargets[$row['fileid']] as $uid => $shareData) { + $sharedPath = '/Shared' . $shareData['file_target']; + $sharedPath .= substr($path, strlen($row['path']) -5); + $sharePaths[$uid] = $sharedPath; + } + } + } + + return $sharePaths; } return array("users" => array_unique($shares), "public" => $publicShare); diff --git a/lib/public/share.php b/lib/public/share.php index 564839e86b6..c694314ad08 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -64,14 +64,15 @@ class Share extends \OC\Share\Constants { /** * Find which users can access a shared item * @param string $path to the file - * @param string $user owner of the file + * @param string $ownerUser owner of the file * @param bool $includeOwner include owner to the list of users with access to the file + * @param bool $returnUserPaths Return an array with the user => path map * @return array * @note $path needs to be relative to user data dir, e.g. 'file.txt' * not '/admin/data/file.txt' */ - public static function getUsersSharingFile($path, $user, $includeOwner = false) { - return \OC\Share\Share::getUsersSharingFile($path, $user, $includeOwner); + public static function getUsersSharingFile($path, $ownerUser, $includeOwner = false, $returnUserPaths = false) { + return \OC\Share\Share::getUsersSharingFile($path, $ownerUser, $includeOwner, $returnUserPaths); } /** -- cgit v1.2.3 From d418e176ce4ce3ee07a5b9e632150470c0387f87 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 9 Apr 2014 15:01:39 +0200 Subject: Do not query when the list is empty --- lib/private/share/share.php | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) (limited to 'lib') diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 3d22f6fd450..59826d03039 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -210,21 +210,23 @@ class Share extends \OC\Share\Constants { $fileTargetIDs = array_keys($fileTargets); $fileTargetIDs = array_unique($fileTargetIDs); - $query = \OC_DB::prepare( - 'SELECT `fileid`, `path` - FROM `*PREFIX*filecache` - WHERE `fileid` IN (' . implode(',', $fileTargetIDs) . ')' - ); - $result = $query->execute(); + if (!empty($fileTargetIDs)) { + $query = \OC_DB::prepare( + 'SELECT `fileid`, `path` + FROM `*PREFIX*filecache` + WHERE `fileid` IN (' . implode(',', $fileTargetIDs) . ')' + ); + $result = $query->execute(); - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); - } else { - while ($row = $result->fetchRow()) { - foreach ($fileTargets[$row['fileid']] as $uid => $shareData) { - $sharedPath = '/Shared' . $shareData['file_target']; - $sharedPath .= substr($path, strlen($row['path']) -5); - $sharePaths[$uid] = $sharedPath; + if (\OCP\DB::isError($result)) { + \OCP\Util::writeLog('OCP\Share', \OC_DB::getErrorMessage($result), \OC_Log::ERROR); + } else { + while ($row = $result->fetchRow()) { + foreach ($fileTargets[$row['fileid']] as $uid => $shareData) { + $sharedPath = '/Shared' . $shareData['file_target']; + $sharedPath .= substr($path, strlen($row['path']) -5); + $sharePaths[$uid] = $sharedPath; + } } } } -- cgit v1.2.3 From b78c1373b681102f2904a4270c45b3030ffe22a5 Mon Sep 17 00:00:00 2001 From: LEDfan Date: Fri, 18 Apr 2014 14:30:44 +0200 Subject: Add key to every contact --- lib/private/contactsmanager.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/contactsmanager.php b/lib/private/contactsmanager.php index 1cb3da7098f..47ade48dcf0 100644 --- a/lib/private/contactsmanager.php +++ b/lib/private/contactsmanager.php @@ -37,7 +37,12 @@ namespace OC { $result = array(); foreach($this->address_books as $address_book) { $r = $address_book->search($pattern, $searchProperties, $options); - $result = array_merge($result, $r); + $contacts = array(); + foreach($r as $c){ + $c['key'] = $address_book->getKey(); + $contacts[] = $c; + } + $result = array_merge($result, $contacts); } return $result; -- cgit v1.2.3 From efff7dd2a43b604bd883e4e0aca9a74e4bb81222 Mon Sep 17 00:00:00 2001 From: Tobia De Koninck Date: Tue, 22 Apr 2014 12:46:09 +0200 Subject: Change key to addressbook-key --- lib/private/contactsmanager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/contactsmanager.php b/lib/private/contactsmanager.php index 47ade48dcf0..4299d88017a 100644 --- a/lib/private/contactsmanager.php +++ b/lib/private/contactsmanager.php @@ -39,7 +39,7 @@ namespace OC { $r = $address_book->search($pattern, $searchProperties, $options); $contacts = array(); foreach($r as $c){ - $c['key'] = $address_book->getKey(); + $c['addressbook-key'] = $address_book->getKey(); $contacts[] = $c; } $result = array_merge($result, $contacts); -- cgit v1.2.3 From 6e857de6b71f92f3c23b5dab10d2372316f92ad7 Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Sat, 5 Apr 2014 19:23:12 +0200 Subject: Make lib/** share.php strings extractable for translation They were not ready for translation as they had no placeholders and/nor wrapper function to be translated This should fix: #8011 --- lib/private/share/share.php | 152 ++++++++++++++++++++++++++------------------ 1 file changed, 89 insertions(+), 63 deletions(-) (limited to 'lib') diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 7bab98b00bf..bea0588271b 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -426,6 +426,7 @@ class Share extends \OC\Share\Constants { public static function shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions, $itemSourceName = null) { $uidOwner = \OC_User::getUser(); $sharingPolicy = \OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'); + $l = \OC_L10N::get('lib'); if (is_null($itemSourceName)) { $itemSourceName = $itemSource; @@ -434,22 +435,25 @@ class Share extends \OC\Share\Constants { // Verify share type and sharing conditions are met if ($shareType === self::SHARE_TYPE_USER) { if ($shareWith == $uidOwner) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the item owner'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the user %s is the item owner'; + $message_t = $l->t('Sharing %s failed, because the user %s is the item owner', array($itemSourceName, $shareWith)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OC_Log::ERROR); + throw new \Exception($message_t); } if (!\OC_User::userExists($shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' does not exist'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the user %s does not exist'; + $message_t = $l->t('Sharing %s failed, because the user %s does not exist', array($itemSourceName, $shareWith)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OC_Log::ERROR); + throw new \Exception($message_t); } if ($sharingPolicy == 'groups_only') { $inGroup = array_intersect(\OC_Group::getUserGroups($uidOwner), \OC_Group::getUserGroups($shareWith)); if (empty($inGroup)) { - $message = 'Sharing '.$itemSourceName.' failed, because the user ' - .$shareWith.' is not a member of any groups that '.$uidOwner.' is a member of'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the user ' + .'%s is not a member of any groups that %s is a member of'; + $message_t = $l->t('Sharing %s failed, because the user %s is not a member of any groups that %s is a member of', array($itemSourceName, $shareWith, $uidOwner)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith, $uidOwner), \OC_Log::ERROR); + throw new \Exception($message_t); } } // Check if the item source is already shared with the user, either from the same owner or a different user @@ -459,22 +463,25 @@ class Share extends \OC\Share\Constants { // owner and is not a user share, this use case is for increasing // permissions for a specific user if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { - $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because this item is already shared with %s'; + $message_t = $l->t('Sharing %s failed, because this item is already shared with %s', array($itemSourceName, $shareWith)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OC_Log::ERROR); + throw new \Exception($message_t); } } } else if ($shareType === self::SHARE_TYPE_GROUP) { if (!\OC_Group::groupExists($shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because the group '.$shareWith.' does not exist'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the group %s does not exist'; + $message_t = $l->t('Sharing %s failed, because the group %s does not exist', array($itemSourceName, $shareWith)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OC_Log::ERROR); + throw new \Exception($message_t); } if ($sharingPolicy == 'groups_only' && !\OC_Group::inGroup($uidOwner, $shareWith)) { - $message = 'Sharing '.$itemSourceName.' failed, because ' - .$uidOwner.' is not a member of the group '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because ' + .'%s is not a member of the group %s'; + $message_t = $l->t('Sharing %s failed, because %s is not a member of the group %s', array($itemSourceName, $uidOwner, $shareWith)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $uidOwner, $shareWith), \OC_Log::ERROR); + throw new \Exception($message_t); } // Check if the item source is already shared with the group, either from the same owner or a different user // The check for each user in the group is done inside the put() function @@ -484,9 +491,10 @@ class Share extends \OC\Share\Constants { // owner and is not a group share, this use case is for increasing // permissions for a specific user if ($checkExists['uid_owner'] != $uidOwner || $checkExists['share_type'] == $shareType) { - $message = 'Sharing '.$itemSourceName.' failed, because this item is already shared with '.$shareWith; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because this item is already shared with %s'; + $message_t = $l->t('Sharing %s failed, because this item is already shared with %s', array($itemSourceName, $shareWith)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OC_Log::ERROR); + throw new \Exception($message_t); } } // Convert share with into an array with the keys group and users @@ -533,15 +541,17 @@ class Share extends \OC\Share\Constants { return false; } } - $message = 'Sharing '.$itemSourceName.' failed, because sharing with links is not allowed'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because sharing with links is not allowed'; + $message_t = $l->t('Sharing %s failed, because sharing with links is not allowed', array($itemSourceName)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName), \OC_Log::ERROR); + throw new \Exception($message_t); return false; } else { // Future share types need to include their own conditions - $message = 'Share type '.$shareType.' is not valid for '.$itemSource; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Share type %s is not valid for %s'; + $message_t = $l->t('Share type %s is not valid for %s', array($shareType, $itemSource)); + \OC_Log::write('OCP\Share', sprintf($message, $shareType, $itemSource), \OC_Log::ERROR); + throw new \Exception($message_t); } // Put the item into the database return self::put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, null, null, $itemSourceName); @@ -665,6 +675,7 @@ class Share extends \OC\Share\Constants { * @return Returns true on success or false on failure */ public static function setPermissions($itemType, $itemSource, $shareType, $shareWith, $permissions) { + $l = \OC_L10N::get('lib'); if ($item = self::getItems($itemType, $itemSource, $shareType, $shareWith, \OC_User::getUser(), self::FORMAT_NONE, null, 1, false)) { // Check if this item is a reshare and verify that the permissions @@ -673,10 +684,11 @@ class Share extends \OC\Share\Constants { $query = \OC_DB::prepare('SELECT `permissions` FROM `*PREFIX*share` WHERE `id` = ?', 1); $result = $query->execute(array($item['parent']))->fetchRow(); if (~(int)$result['permissions'] & $permissions) { - $message = 'Setting permissions for '.$itemSource.' failed,' - .' because the permissions exceed permissions granted to '.\OC_User::getUser(); - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Setting permissions for %s failed,' + .' because the permissions exceed permissions granted to %s'; + $message_t = $l->t('Setting permissions for %s failed, because the permissions exceed permissions granted to %s', array($itemSource, \OC_User::getUser())); + \OC_Log::write('OCP\Share', sprintf($message, $itemSource, \OC_User::getUser()), \OC_Log::ERROR); + throw new \Exception($message_t); } } $query = \OC_DB::prepare('UPDATE `*PREFIX*share` SET `permissions` = ? WHERE `id` = ?'); @@ -734,9 +746,11 @@ class Share extends \OC\Share\Constants { } return true; } - $message = 'Setting permissions for '.$itemSource.' failed, because the item was not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Setting permissions for %s failed, because the item was not found'; + $message_t = $l->t('Setting permissions for %s failed, because the item was not found', array($itemSource)); + + \OC_Log::write('OCP\Share', sprintf($message, $itemSource), \OC_Log::ERROR); + throw new \Exception($message_t); } /** @@ -818,6 +832,7 @@ class Share extends \OC\Share\Constants { * @return \OCP\Share_Backend */ public static function getBackend($itemType) { + $l = \OC_L10N::get('lib'); if (isset(self::$backends[$itemType])) { return self::$backends[$itemType]; } else if (isset(self::$backendTypes[$itemType]['class'])) { @@ -825,20 +840,23 @@ class Share extends \OC\Share\Constants { if (class_exists($class)) { self::$backends[$itemType] = new $class; if (!(self::$backends[$itemType] instanceof \OCP\Share_Backend)) { - $message = 'Sharing backend '.$class.' must implement the interface OCP\Share_Backend'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing backend %s must implement the interface OCP\Share_Backend'; + $message_t = $l->t('Sharing backend %s must implement the interface OCP\Share_Backend', array($class)); + \OC_Log::write('OCP\Share', sprintf($message, $class), \OC_Log::ERROR); + throw new \Exception($message_t); } return self::$backends[$itemType]; } else { - $message = 'Sharing backend '.$class.' not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing backend %s not found'; + $message_t = $l->t('Sharing backend %s not found', array($class)); + \OC_Log::write('OCP\Share', sprintf($message, $class), \OC_Log::ERROR); + throw new \Exception($message_t); } } - $message = 'Sharing backend for '.$itemType.' not found'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing backend for %s not found'; + $message_t = $l->t('Sharing backend for %s not found', array($itemType)); + \OC_Log::write('OCP\Share', sprintf($message, $itemType), \OC_Log::ERROR); + throw new \Exception($message_t); } /** @@ -1246,23 +1264,26 @@ class Share extends \OC\Share\Constants { private static function put($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, $parentFolder = null, $token = null, $itemSourceName = null) { $backend = self::getBackend($itemType); - + $l = \OC_L10N::get('lib'); // Check if this is a reshare if ($checkReshare = self::getItemSharedWithBySource($itemType, $itemSource, self::FORMAT_NONE, null, true)) { // Check if attempting to share back to owner if ($checkReshare['uid_owner'] == $shareWith && $shareType == self::SHARE_TYPE_USER) { - $message = 'Sharing '.$itemSourceName.' failed, because the user '.$shareWith.' is the original sharer'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the user %s is the original sharer'; + $message_t = $l->t('Sharing %s failed, because the user %s is the original sharer', array($itemSourceName, $shareWith)); + + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $shareWith), \OC_Log::ERROR); + throw new \Exception($message_t); } // Check if share permissions is granted if (self::isResharingAllowed() && (int)$checkReshare['permissions'] & \OCP\PERMISSION_SHARE) { if (~(int)$checkReshare['permissions'] & $permissions) { - $message = 'Sharing '.$itemSourceName - .' failed, because the permissions exceed permissions granted to '.$uidOwner; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the permissions exceed permissions granted to %s'; + $message_t = $l->t('Sharing %s failed, because the permissions exceed permissions granted to %s', array($itemSourceName, $uidOwner)); + + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName, $uidOwner), \OC_Log::ERROR); + throw new \Exception($message_t); } else { // TODO Don't check if inside folder $parent = $checkReshare['id']; @@ -1273,19 +1294,22 @@ class Share extends \OC\Share\Constants { $filePath = $checkReshare['file_target']; } } else { - $message = 'Sharing '.$itemSourceName.' failed, because resharing is not allowed'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because resharing is not allowed'; + $message_t = $l->t('Sharing %s failed, because resharing is not allowed', array($itemSourceName)); + + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName), \OC_Log::ERROR); + throw new \Exception($message_t); } } else { $parent = null; $suggestedItemTarget = null; $suggestedFileTarget = null; if (!$backend->isValidSource($itemSource, $uidOwner)) { - $message = 'Sharing '.$itemSource.' failed, because the sharing backend for ' - .$itemType.' could not find its source'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the sharing backend for ' + .'%s could not find its source'; + $message_t = $l->t('Sharing %s failed, because the sharing backend for %s could not find its source', array($itemSource, $itemType)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSource, $itemType), \OC_Log::ERROR); + throw new \Exception($message_t); } if ($backend instanceof \OCP\Share_Backend_File_Dependent) { $filePath = $backend->getFilePath($itemSource, $uidOwner); @@ -1296,9 +1320,11 @@ class Share extends \OC\Share\Constants { $fileSource = $meta['fileid']; } if ($fileSource == -1) { - $message = 'Sharing '.$itemSource.' failed, because the file could not be found in the file cache'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the file could not be found in the file cache'; + $message_t = $l->t('Sharing %s failed, because the file could not be found in the file cache', array($itemSource)); + + \OC_Log::write('OCP\Share', sprintf($message, $itemSource), \OC_Log::ERROR); + throw new \Exception($message_t); } } else { $filePath = null; -- cgit v1.2.3 From 3f453d164143d581d35ebc03bdb940c074098ba9 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 23 Apr 2014 01:56:35 -0400 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ar.php | 1 - apps/files/l10n/ast.php | 1 - apps/files/l10n/bg_BG.php | 1 - apps/files/l10n/bn_BD.php | 1 - apps/files/l10n/ca.php | 1 - apps/files/l10n/cs_CZ.php | 1 - apps/files/l10n/cy_GB.php | 1 - apps/files/l10n/da.php | 1 - apps/files/l10n/de.php | 1 - apps/files/l10n/de_CH.php | 1 - apps/files/l10n/de_DE.php | 1 - apps/files/l10n/el.php | 1 - apps/files/l10n/en_GB.php | 1 - apps/files/l10n/eo.php | 1 - apps/files/l10n/es.php | 1 - apps/files/l10n/es_AR.php | 1 - apps/files/l10n/es_CL.php | 1 - apps/files/l10n/es_CR.php | 7 + apps/files/l10n/es_MX.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/he.php | 1 - apps/files/l10n/hi.php | 1 - apps/files/l10n/hr.php | 1 - apps/files/l10n/hu_HU.php | 1 - apps/files/l10n/ia.php | 1 - apps/files/l10n/id.php | 1 - apps/files/l10n/is.php | 1 - apps/files/l10n/it.php | 1 - apps/files/l10n/ja.php | 1 - apps/files/l10n/ka_GE.php | 1 - apps/files/l10n/km.php | 1 - apps/files/l10n/ko.php | 1 - apps/files/l10n/ku_IQ.php | 1 - apps/files/l10n/lb.php | 1 - apps/files/l10n/lt_LT.php | 1 - apps/files/l10n/lv.php | 1 - apps/files/l10n/mk.php | 1 - apps/files/l10n/ms_MY.php | 1 - apps/files/l10n/nb_NO.php | 1 - apps/files/l10n/nl.php | 1 - apps/files/l10n/nn_NO.php | 1 - apps/files/l10n/oc.php | 1 - apps/files/l10n/or_IN.php | 7 + apps/files/l10n/pa.php | 1 - apps/files/l10n/pl.php | 1 - apps/files/l10n/pt_BR.php | 1 - apps/files/l10n/pt_PT.php | 1 - apps/files/l10n/ro.php | 1 - apps/files/l10n/ru.php | 1 - apps/files/l10n/si_LK.php | 1 - apps/files/l10n/sk_SK.php | 1 - apps/files/l10n/sl.php | 1 - apps/files/l10n/sq.php | 1 - apps/files/l10n/sr.php | 1 - apps/files/l10n/sr@latin.php | 1 - apps/files/l10n/sv.php | 1 - apps/files/l10n/ta_LK.php | 1 - apps/files/l10n/th_TH.php | 1 - apps/files/l10n/tr.php | 1 - apps/files/l10n/ug.php | 1 - apps/files/l10n/uk.php | 1 - apps/files/l10n/vi.php | 1 - apps/files/l10n/zh_CN.php | 1 - apps/files/l10n/zh_HK.php | 1 - apps/files/l10n/zh_TW.php | 1 - apps/files_encryption/l10n/sk_SK.php | 1 + apps/files_external/l10n/sk_SK.php | 8 + apps/user_ldap/l10n/en_GB.php | 1 + apps/user_ldap/l10n/es_CR.php | 6 + apps/user_ldap/l10n/or_IN.php | 6 + apps/user_ldap/l10n/sk_SK.php | 5 + core/l10n/af_ZA.php | 1 - core/l10n/ar.php | 1 - core/l10n/ast.php | 1 - core/l10n/be.php | 1 - core/l10n/bg_BG.php | 1 - core/l10n/bn_BD.php | 1 - core/l10n/ca.php | 1 - core/l10n/cs_CZ.php | 1 - core/l10n/cy_GB.php | 1 - core/l10n/da.php | 1 - core/l10n/de.php | 1 - core/l10n/de_CH.php | 1 - core/l10n/de_DE.php | 1 - core/l10n/el.php | 1 - core/l10n/en_GB.php | 1 - core/l10n/eo.php | 1 - core/l10n/es.php | 1 - core/l10n/es_AR.php | 1 - core/l10n/es_CL.php | 1 - core/l10n/es_CR.php | 9 + core/l10n/es_MX.php | 1 - core/l10n/et_EE.php | 1 - core/l10n/eu.php | 1 - core/l10n/fa.php | 1 - core/l10n/fi_FI.php | 1 - core/l10n/fr.php | 1 - core/l10n/gl.php | 1 - core/l10n/he.php | 1 - core/l10n/hr.php | 1 - core/l10n/hu_HU.php | 1 - core/l10n/id.php | 1 - core/l10n/is.php | 1 - core/l10n/it.php | 1 - core/l10n/ja.php | 1 - core/l10n/ka_GE.php | 1 - core/l10n/km.php | 1 - core/l10n/ko.php | 1 - core/l10n/lb.php | 1 - core/l10n/lt_LT.php | 1 - core/l10n/lv.php | 1 - core/l10n/mk.php | 1 - core/l10n/nb_NO.php | 1 - core/l10n/nl.php | 1 - core/l10n/nn_NO.php | 1 - core/l10n/oc.php | 1 - core/l10n/or_IN.php | 9 + core/l10n/pa.php | 1 - core/l10n/pl.php | 1 - core/l10n/pt_BR.php | 1 - core/l10n/pt_PT.php | 1 - core/l10n/ro.php | 1 - core/l10n/ru.php | 1 - core/l10n/si_LK.php | 1 - core/l10n/sk_SK.php | 2 +- core/l10n/sl.php | 1 - core/l10n/sq.php | 1 - core/l10n/sr.php | 1 - core/l10n/sr@latin.php | 1 - core/l10n/sv.php | 1 - core/l10n/ta_LK.php | 1 - core/l10n/te.php | 1 - core/l10n/th_TH.php | 1 - core/l10n/tr.php | 1 - core/l10n/uk.php | 1 - core/l10n/vi.php | 1 - core/l10n/zh_CN.php | 1 - core/l10n/zh_HK.php | 1 - core/l10n/zh_TW.php | 1 - l10n/ach/core.po | 106 +++-- l10n/ach/files.po | 53 +-- l10n/ach/settings.po | 6 +- l10n/ady/core.po | 106 +++-- l10n/ady/files.po | 53 +-- l10n/ady/settings.po | 6 +- l10n/af_ZA/core.po | 74 ++-- l10n/af_ZA/files.po | 53 +-- l10n/af_ZA/settings.po | 6 +- l10n/ak/core.po | 106 +++-- l10n/ak/files.po | 53 +-- l10n/ak/settings.po | 6 +- l10n/am_ET/core.po | 106 +++-- l10n/am_ET/files.po | 53 +-- l10n/am_ET/settings.po | 6 +- l10n/ar/core.po | 72 ++- l10n/ar/files.po | 9 +- l10n/ar/settings.po | 8 +- l10n/ast/core.po | 36 +- l10n/ast/files.po | 9 +- l10n/ast/settings.po | 6 +- l10n/az/core.po | 106 +++-- l10n/az/files.po | 53 +-- l10n/az/settings.po | 6 +- l10n/be/core.po | 72 ++- l10n/be/files.po | 7 +- l10n/be/settings.po | 6 +- l10n/bg_BG/core.po | 72 ++- l10n/bg_BG/files.po | 9 +- l10n/bg_BG/settings.po | 6 +- l10n/bn_BD/core.po | 72 ++- l10n/bn_BD/files.po | 9 +- l10n/bn_BD/settings.po | 6 +- l10n/bs/core.po | 106 +++-- l10n/bs/files.po | 53 +-- l10n/bs/settings.po | 6 +- l10n/ca/core.po | 74 ++-- l10n/ca/files.po | 9 +- l10n/ca/settings.po | 10 +- l10n/cs_CZ/core.po | 36 +- l10n/cs_CZ/files.po | 9 +- l10n/cs_CZ/settings.po | 15 +- l10n/cy_GB/core.po | 72 ++- l10n/cy_GB/files.po | 9 +- l10n/cy_GB/settings.po | 6 +- l10n/da/core.po | 72 ++- l10n/da/files.po | 9 +- l10n/da/settings.po | 8 +- l10n/de/core.po | 72 ++- l10n/de/files.po | 9 +- l10n/de/settings.po | 10 +- l10n/de_AT/core.po | 106 +++-- l10n/de_AT/files.po | 53 +-- l10n/de_AT/settings.po | 6 +- l10n/de_CH/core.po | 72 ++- l10n/de_CH/files.po | 9 +- l10n/de_CH/settings.po | 6 +- l10n/de_DE/core.po | 72 ++- l10n/de_DE/files.po | 9 +- l10n/de_DE/settings.po | 10 +- l10n/el/core.po | 36 +- l10n/el/files.po | 11 +- l10n/el/settings.po | 10 +- l10n/en@pirate/core.po | 106 +++-- l10n/en@pirate/files.po | 53 +-- l10n/en@pirate/settings.po | 6 +- l10n/en_GB/core.po | 74 ++-- l10n/en_GB/files.po | 9 +- l10n/en_GB/lib.po | 42 +- l10n/en_GB/settings.po | 14 +- l10n/en_GB/user_ldap.po | 8 +- l10n/eo/core.po | 72 ++- l10n/eo/files.po | 9 +- l10n/eo/settings.po | 6 +- l10n/es/core.po | 74 ++-- l10n/es/files.po | 9 +- l10n/es/settings.po | 10 +- l10n/es_AR/core.po | 72 ++- l10n/es_AR/files.po | 9 +- l10n/es_AR/settings.po | 8 +- l10n/es_CL/core.po | 72 ++- l10n/es_CL/files.po | 9 +- l10n/es_CL/settings.po | 6 +- l10n/es_CR/core.po | 805 +++++++++++++++++++++++++++++++++ l10n/es_CR/files.po | 409 +++++++++++++++++ l10n/es_CR/files_encryption.po | 201 +++++++++ l10n/es_CR/files_external.po | 136 ++++++ l10n/es_CR/files_sharing.po | 72 +++ l10n/es_CR/files_trashbin.po | 64 +++ l10n/es_CR/files_versions.po | 43 ++ l10n/es_CR/lib.po | 356 +++++++++++++++ l10n/es_CR/settings.po | 838 +++++++++++++++++++++++++++++++++++ l10n/es_CR/user_ldap.po | 534 ++++++++++++++++++++++ l10n/es_CR/user_webdavauth.po | 33 ++ l10n/es_MX/core.po | 72 ++- l10n/es_MX/files.po | 9 +- l10n/es_MX/settings.po | 8 +- l10n/et_EE/core.po | 72 ++- l10n/et_EE/files.po | 9 +- l10n/et_EE/settings.po | 8 +- l10n/eu/core.po | 72 ++- l10n/eu/files.po | 9 +- l10n/eu/settings.po | 8 +- l10n/eu_ES/core.po | 106 +++-- l10n/eu_ES/files.po | 53 +-- l10n/eu_ES/settings.po | 6 +- l10n/fa/core.po | 72 ++- l10n/fa/files.po | 9 +- l10n/fa/settings.po | 8 +- l10n/fi_FI/core.po | 74 ++-- l10n/fi_FI/files.po | 9 +- l10n/fi_FI/settings.po | 10 +- l10n/fr/core.po | 74 ++-- l10n/fr/files.po | 9 +- l10n/fr/settings.po | 10 +- l10n/fr_CA/core.po | 106 +++-- l10n/fr_CA/files.po | 53 +-- l10n/fr_CA/settings.po | 6 +- l10n/gl/core.po | 36 +- l10n/gl/files.po | 9 +- l10n/gl/settings.po | 10 +- l10n/he/core.po | 72 ++- l10n/he/files.po | 9 +- l10n/he/settings.po | 6 +- l10n/hi/core.po | 72 ++- l10n/hi/files.po | 9 +- l10n/hi/settings.po | 6 +- l10n/hr/core.po | 72 ++- l10n/hr/files.po | 9 +- l10n/hr/settings.po | 6 +- l10n/hu_HU/core.po | 72 ++- l10n/hu_HU/files.po | 9 +- l10n/hu_HU/settings.po | 8 +- l10n/hy/core.po | 106 +++-- l10n/hy/files.po | 53 +-- l10n/hy/settings.po | 6 +- l10n/ia/core.po | 72 ++- l10n/ia/files.po | 9 +- l10n/ia/settings.po | 6 +- l10n/id/core.po | 72 ++- l10n/id/files.po | 9 +- l10n/id/settings.po | 8 +- l10n/is/core.po | 72 ++- l10n/is/files.po | 9 +- l10n/is/settings.po | 6 +- l10n/it/core.po | 74 ++-- l10n/it/files.po | 9 +- l10n/it/settings.po | 10 +- l10n/ja/core.po | 72 ++- l10n/ja/files.po | 9 +- l10n/ja/settings.po | 8 +- l10n/jv/core.po | 106 +++-- l10n/jv/files.po | 53 +-- l10n/jv/settings.po | 6 +- l10n/ka_GE/core.po | 72 ++- l10n/ka_GE/files.po | 9 +- l10n/ka_GE/settings.po | 6 +- l10n/km/core.po | 72 ++- l10n/km/files.po | 9 +- l10n/km/settings.po | 6 +- l10n/kn/core.po | 106 +++-- l10n/kn/files.po | 53 +-- l10n/kn/settings.po | 6 +- l10n/ko/core.po | 72 ++- l10n/ko/files.po | 9 +- l10n/ko/settings.po | 8 +- l10n/ku_IQ/core.po | 72 ++- l10n/ku_IQ/files.po | 9 +- l10n/ku_IQ/settings.po | 6 +- l10n/lb/core.po | 72 ++- l10n/lb/files.po | 9 +- l10n/lb/settings.po | 6 +- l10n/lt_LT/core.po | 72 ++- l10n/lt_LT/files.po | 9 +- l10n/lt_LT/settings.po | 8 +- l10n/lv/core.po | 72 ++- l10n/lv/files.po | 9 +- l10n/lv/settings.po | 6 +- l10n/mk/core.po | 72 ++- l10n/mk/files.po | 9 +- l10n/mk/settings.po | 8 +- l10n/ml/core.po | 106 +++-- l10n/ml/files.po | 53 +-- l10n/ml/settings.po | 6 +- l10n/ml_IN/core.po | 106 +++-- l10n/ml_IN/files.po | 53 +-- l10n/ml_IN/settings.po | 6 +- l10n/mn/core.po | 106 +++-- l10n/mn/files.po | 53 +-- l10n/mn/settings.po | 6 +- l10n/ms_MY/core.po | 72 ++- l10n/ms_MY/files.po | 9 +- l10n/ms_MY/settings.po | 6 +- l10n/my_MM/core.po | 106 +++-- l10n/my_MM/files.po | 53 +-- l10n/my_MM/settings.po | 6 +- l10n/nb_NO/core.po | 72 ++- l10n/nb_NO/files.po | 9 +- l10n/nb_NO/settings.po | 8 +- l10n/nds/core.po | 106 +++-- l10n/nds/files.po | 53 +-- l10n/nds/settings.po | 6 +- l10n/ne/core.po | 106 +++-- l10n/ne/files.po | 53 +-- l10n/ne/settings.po | 6 +- l10n/nl/core.po | 74 ++-- l10n/nl/files.po | 9 +- l10n/nl/settings.po | 10 +- l10n/nn_NO/core.po | 72 ++- l10n/nn_NO/files.po | 9 +- l10n/nn_NO/settings.po | 6 +- l10n/nqo/core.po | 106 +++-- l10n/nqo/files.po | 53 +-- l10n/nqo/settings.po | 6 +- l10n/oc/core.po | 72 ++- l10n/oc/files.po | 9 +- l10n/oc/settings.po | 6 +- l10n/or_IN/core.po | 805 +++++++++++++++++++++++++++++++++ l10n/or_IN/files.po | 409 +++++++++++++++++ l10n/or_IN/files_encryption.po | 201 +++++++++ l10n/or_IN/files_external.po | 136 ++++++ l10n/or_IN/files_sharing.po | 72 +++ l10n/or_IN/files_trashbin.po | 64 +++ l10n/or_IN/files_versions.po | 43 ++ l10n/or_IN/lib.po | 356 +++++++++++++++ l10n/or_IN/settings.po | 838 +++++++++++++++++++++++++++++++++++ l10n/or_IN/user_ldap.po | 534 ++++++++++++++++++++++ l10n/or_IN/user_webdavauth.po | 33 ++ l10n/pa/core.po | 72 ++- l10n/pa/files.po | 9 +- l10n/pa/settings.po | 6 +- l10n/pl/core.po | 74 ++-- l10n/pl/files.po | 9 +- l10n/pl/settings.po | 10 +- l10n/pt_BR/core.po | 74 ++-- l10n/pt_BR/files.po | 9 +- l10n/pt_BR/lib.po | 42 +- l10n/pt_BR/settings.po | 10 +- l10n/pt_PT/core.po | 72 ++- l10n/pt_PT/files.po | 9 +- l10n/pt_PT/settings.po | 8 +- l10n/ro/core.po | 72 ++- l10n/ro/files.po | 9 +- l10n/ro/settings.po | 6 +- l10n/ru/core.po | 72 ++- l10n/ru/files.po | 9 +- l10n/ru/settings.po | 8 +- l10n/si_LK/core.po | 72 ++- l10n/si_LK/files.po | 9 +- l10n/si_LK/settings.po | 6 +- l10n/sk/core.po | 106 +++-- l10n/sk/files.po | 53 +-- l10n/sk/settings.po | 6 +- l10n/sk_SK/core.po | 74 ++-- l10n/sk_SK/files.po | 11 +- l10n/sk_SK/files_encryption.po | 52 +-- l10n/sk_SK/files_external.po | 34 +- l10n/sk_SK/settings.po | 8 +- l10n/sk_SK/user_ldap.po | 16 +- l10n/sl/core.po | 36 +- l10n/sl/files.po | 9 +- l10n/sl/settings.po | 14 +- l10n/sq/core.po | 72 ++- l10n/sq/files.po | 9 +- l10n/sq/settings.po | 6 +- l10n/sr/core.po | 72 ++- l10n/sr/files.po | 9 +- l10n/sr/settings.po | 6 +- l10n/sr@latin/core.po | 72 ++- l10n/sr@latin/files.po | 9 +- l10n/sr@latin/settings.po | 6 +- l10n/su/core.po | 106 +++-- l10n/su/files.po | 53 +-- l10n/su/settings.po | 6 +- l10n/sv/core.po | 74 ++-- l10n/sv/files.po | 11 +- l10n/sv/settings.po | 10 +- l10n/sw_KE/core.po | 106 +++-- l10n/sw_KE/files.po | 53 +-- l10n/sw_KE/settings.po | 6 +- l10n/ta_LK/core.po | 72 ++- l10n/ta_LK/files.po | 9 +- l10n/ta_LK/settings.po | 6 +- l10n/te/core.po | 72 ++- l10n/te/files.po | 7 +- l10n/te/settings.po | 6 +- l10n/templates/core.pot | 32 +- l10n/templates/files.pot | 5 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 10 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 4 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 72 ++- l10n/th_TH/files.po | 9 +- l10n/th_TH/settings.po | 6 +- l10n/tr/core.po | 36 +- l10n/tr/files.po | 11 +- l10n/tr/settings.po | 10 +- l10n/tzm/core.po | 106 +++-- l10n/tzm/files.po | 53 +-- l10n/tzm/settings.po | 6 +- l10n/ug/core.po | 72 ++- l10n/ug/files.po | 9 +- l10n/ug/settings.po | 6 +- l10n/uk/core.po | 72 ++- l10n/uk/files.po | 11 +- l10n/uk/settings.po | 8 +- l10n/ur/core.po | 106 +++-- l10n/ur/files.po | 53 +-- l10n/ur/settings.po | 6 +- l10n/ur_PK/core.po | 72 ++- l10n/ur_PK/files.po | 7 +- l10n/ur_PK/settings.po | 6 +- l10n/uz/core.po | 106 +++-- l10n/uz/files.po | 53 +-- l10n/uz/settings.po | 6 +- l10n/vi/core.po | 72 ++- l10n/vi/files.po | 9 +- l10n/vi/settings.po | 6 +- l10n/zh_CN/core.po | 34 +- l10n/zh_CN/files.po | 9 +- l10n/zh_CN/settings.po | 8 +- l10n/zh_HK/core.po | 72 ++- l10n/zh_HK/files.po | 9 +- l10n/zh_HK/settings.po | 6 +- l10n/zh_TW/core.po | 72 ++- l10n/zh_TW/files.po | 9 +- l10n/zh_TW/settings.po | 8 +- lib/l10n/es_CR.php | 8 + lib/l10n/or_IN.php | 8 + settings/l10n/ar.php | 1 - settings/l10n/ca.php | 1 - settings/l10n/cs_CZ.php | 3 +- settings/l10n/da.php | 1 - settings/l10n/de.php | 1 - settings/l10n/de_DE.php | 1 - settings/l10n/el.php | 1 - settings/l10n/en_GB.php | 4 +- settings/l10n/es.php | 1 - settings/l10n/es_AR.php | 1 - settings/l10n/es_MX.php | 1 - settings/l10n/et_EE.php | 1 - settings/l10n/eu.php | 1 - settings/l10n/fa.php | 1 - settings/l10n/fi_FI.php | 1 - settings/l10n/fr.php | 1 - settings/l10n/gl.php | 1 - settings/l10n/hu_HU.php | 1 - settings/l10n/id.php | 1 - settings/l10n/it.php | 1 - settings/l10n/ja.php | 1 - settings/l10n/ko.php | 1 - settings/l10n/lt_LT.php | 1 - settings/l10n/mk.php | 1 - settings/l10n/nb_NO.php | 1 - settings/l10n/nl.php | 1 - settings/l10n/pl.php | 1 - settings/l10n/pt_BR.php | 1 - settings/l10n/pt_PT.php | 1 - settings/l10n/ru.php | 1 - settings/l10n/sk_SK.php | 1 - settings/l10n/sl.php | 4 +- settings/l10n/sv.php | 1 - settings/l10n/tr.php | 1 - settings/l10n/zh_CN.php | 1 - settings/l10n/zh_TW.php | 1 - 516 files changed, 12295 insertions(+), 5695 deletions(-) create mode 100644 apps/files/l10n/es_CR.php create mode 100644 apps/files/l10n/or_IN.php create mode 100644 apps/user_ldap/l10n/es_CR.php create mode 100644 apps/user_ldap/l10n/or_IN.php create mode 100644 core/l10n/es_CR.php create mode 100644 core/l10n/or_IN.php create mode 100644 l10n/es_CR/core.po create mode 100644 l10n/es_CR/files.po create mode 100644 l10n/es_CR/files_encryption.po create mode 100644 l10n/es_CR/files_external.po create mode 100644 l10n/es_CR/files_sharing.po create mode 100644 l10n/es_CR/files_trashbin.po create mode 100644 l10n/es_CR/files_versions.po create mode 100644 l10n/es_CR/lib.po create mode 100644 l10n/es_CR/settings.po create mode 100644 l10n/es_CR/user_ldap.po create mode 100644 l10n/es_CR/user_webdavauth.po create mode 100644 l10n/or_IN/core.po create mode 100644 l10n/or_IN/files.po create mode 100644 l10n/or_IN/files_encryption.po create mode 100644 l10n/or_IN/files_external.po create mode 100644 l10n/or_IN/files_sharing.po create mode 100644 l10n/or_IN/files_trashbin.po create mode 100644 l10n/or_IN/files_versions.po create mode 100644 l10n/or_IN/lib.po create mode 100644 l10n/or_IN/settings.po create mode 100644 l10n/or_IN/user_ldap.po create mode 100644 l10n/or_IN/user_webdavauth.po create mode 100644 lib/l10n/es_CR.php create mode 100644 lib/l10n/or_IN.php (limited to 'lib') diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index e7c081b1c47..9a78e3bbff3 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -44,7 +44,6 @@ $TRANSLATIONS = array( "Size" => "حجم", "Modified" => "معدل", "%s could not be renamed" => "%s لا يمكن إعادة تسميته. ", -"Upload" => "رفع", "File handling" => "التعامل مع الملف", "Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", "max. possible: " => "الحد الأقصى المسموح به", diff --git a/apps/files/l10n/ast.php b/apps/files/l10n/ast.php index c0b32e8e0cb..5c6af60be3d 100644 --- a/apps/files/l10n/ast.php +++ b/apps/files/l10n/ast.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "Nome", "Size" => "Tamañu", -"Upload" => "Xubir", "Save" => "Guardar", "New folder" => "Nueva carpeta", "Folder" => "Carpeta", diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index 2418010cdd9..d9cad21e79e 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -20,7 +20,6 @@ $TRANSLATIONS = array( "Name" => "Име", "Size" => "Размер", "Modified" => "Променено", -"Upload" => "Качване", "Maximum upload size" => "Максимален размер за качване", "0 is unlimited" => "Ползвайте 0 за без ограничения", "Save" => "Запис", diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 667a68bb627..4d71d7dacd3 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -27,7 +27,6 @@ $TRANSLATIONS = array( "Name" => "রাম", "Size" => "আকার", "Modified" => "পরিবর্তিত", -"Upload" => "আপলোড", "File handling" => "ফাইল হ্যার্ডলিং", "Maximum upload size" => "আপলোডের সর্বোচ্চ আকার", "max. possible: " => "অনুমোদিত সর্বোচ্চ আকার", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 8ef9b764484..e93f1b644a4 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificat", "Invalid folder name. Usage of 'Shared' is reserved." => "Nom de carpeta no vàlid. L'ús de 'Shared' és reservat", "%s could not be renamed" => "%s no es pot canviar el nom", -"Upload" => "Puja", "File handling" => "Gestió de fitxers", "Maximum upload size" => "Mida màxima de pujada", "max. possible: " => "màxim possible:", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 8aea17a7051..e999a58ec61 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Upraveno", "Invalid folder name. Usage of 'Shared' is reserved." => "Neplatný název složky. Použití 'Shared' je rezervováno.", "%s could not be renamed" => "%s nemůže být přejmenován", -"Upload" => "Odeslat", "File handling" => "Zacházení se soubory", "Maximum upload size" => "Maximální velikost pro odesílání", "max. possible: " => "největší možná: ", diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index b27e4c3bfc2..f0c12b2fdeb 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "Name" => "Enw", "Size" => "Maint", "Modified" => "Addaswyd", -"Upload" => "Llwytho i fyny", "File handling" => "Trafod ffeiliau", "Maximum upload size" => "Maint mwyaf llwytho i fyny", "max. possible: " => "mwyaf. posib:", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 6a7ea4745cc..522ec8dff87 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Ændret", "Invalid folder name. Usage of 'Shared' is reserved." => "Ugyldig mappenavn. 'Shared' er reserveret.", "%s could not be renamed" => "%s kunne ikke omdøbes", -"Upload" => "Upload", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimal upload-størrelse", "max. possible: " => "max. mulige: ", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 401ee243f28..c1f5f3a9367 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Geändert", "Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", -"Upload" => "Hochladen", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", diff --git a/apps/files/l10n/de_CH.php b/apps/files/l10n/de_CH.php index f797be99e98..907b9e1b67e 100644 --- a/apps/files/l10n/de_CH.php +++ b/apps/files/l10n/de_CH.php @@ -36,7 +36,6 @@ $TRANSLATIONS = array( "Size" => "Grösse", "Modified" => "Geändert", "%s could not be renamed" => "%s konnte nicht umbenannt werden", -"Upload" => "Hochladen", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Grösse", "max. possible: " => "maximal möglich:", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 4768faa97da..83d8c253eeb 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Geändert", "Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", -"Upload" => "Hochladen", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index cf2022c2d7f..90d73cb411d 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Τροποποιήθηκε", "Invalid folder name. Usage of 'Shared' is reserved." => "Άκυρο όνομα φακέλου. Η χρήση του 'Shared' διατηρείται από το σύστημα.", "%s could not be renamed" => "Αδυναμία μετονομασίας του %s", -"Upload" => "Μεταφόρτωση", "File handling" => "Διαχείριση αρχείων", "Maximum upload size" => "Μέγιστο μέγεθος αποστολής", "max. possible: " => "μέγιστο δυνατό:", diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index 705f6b99b0b..d57f9434535 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modified", "Invalid folder name. Usage of 'Shared' is reserved." => "Invalid folder name. Usage of 'Shared' is reserved.", "%s could not be renamed" => "%s could not be renamed", -"Upload" => "Upload", "File handling" => "File handling", "Maximum upload size" => "Maximum upload size", "max. possible: " => "max. possible: ", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index a6e0d553177..dfa6f7ec038 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -50,7 +50,6 @@ $TRANSLATIONS = array( "Size" => "Grando", "Modified" => "Modifita", "%s could not be renamed" => "%s ne povis alinomiĝi", -"Upload" => "Alŝuti", "File handling" => "Dosieradministro", "Maximum upload size" => "Maksimuma alŝutogrando", "max. possible: " => "maks. ebla: ", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 10a378c371b..5ea572956ec 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado.", "%s could not be renamed" => "%s no pudo ser renombrado", -"Upload" => "Subir", "File handling" => "Administración de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index f78615fc923..19a71e0c9a0 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de directorio inválido. 'Shared' está reservado.", "%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:", diff --git a/apps/files/l10n/es_CL.php b/apps/files/l10n/es_CL.php index 8e051d1c389..98606b4cd88 100644 --- a/apps/files/l10n/es_CL.php +++ b/apps/files/l10n/es_CL.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Upload" => "Subir", "Download" => "Descargar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_CR.php b/apps/files/l10n/es_CR.php new file mode 100644 index 00000000000..0157af093e9 --- /dev/null +++ b/apps/files/l10n/es_CR.php @@ -0,0 +1,7 @@ + array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_MX.php b/apps/files/l10n/es_MX.php index ea7db0d7b9c..a55a70c1667 100644 --- a/apps/files/l10n/es_MX.php +++ b/apps/files/l10n/es_MX.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado.", "%s could not be renamed" => "%s no pudo ser renombrado", -"Upload" => "Subir", "File handling" => "Administración de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 4f0614feb5e..ec7c4af85be 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Muudetud", "Invalid folder name. Usage of 'Shared' is reserved." => "Vigane kausta nimi. Nime 'Shared' kasutamine on reserveeritud.", "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", -"Upload" => "Lae üles", "File handling" => "Failide käsitlemine", "Maximum upload size" => "Maksimaalne üleslaadimise suurus", "max. possible: " => "maks. võimalik: ", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index d59dd396283..26e2a34e4a5 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Aldatuta", "Invalid folder name. Usage of 'Shared' is reserved." => "Baliogabeako karpeta izena. 'Shared' izena erreserbatuta dago.", "%s could not be renamed" => "%s ezin da berrizendatu", -"Upload" => "Igo", "File handling" => "Fitxategien kudeaketa", "Maximum upload size" => "Igo daitekeen gehienezko tamaina", "max. possible: " => "max, posiblea:", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 2e8f6255e24..4d2a929195f 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Size" => "اندازه", "Modified" => "تاریخ", "%s could not be renamed" => "%s نمیتواند تغییر نام دهد.", -"Upload" => "بارگزاری", "File handling" => "اداره پرونده ها", "Maximum upload size" => "حداکثر اندازه بارگزاری", "max. possible: " => "حداکثرمقدارممکن:", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index b6383c144de..530a68e5369 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -60,7 +60,6 @@ $TRANSLATIONS = array( "Modified" => "Muokattu", "Invalid folder name. Usage of 'Shared' is reserved." => "Virheellinen kansion nimi. 'Shared':n käyttö on varattu.", "%s could not be renamed" => "kohteen %s nimeäminen uudelleen epäonnistui", -"Upload" => "Lähetä", "File handling" => "Tiedostonhallinta", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", "max. possible: " => "suurin mahdollinen:", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 0eed6a70f91..0ae5180b664 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modifié", "Invalid folder name. Usage of 'Shared' is reserved." => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée.", "%s could not be renamed" => "%s ne peut être renommé", -"Upload" => "Envoyer", "File handling" => "Gestion des fichiers", "Maximum upload size" => "Taille max. d'envoi", "max. possible: " => "Max. possible :", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 9fe6546de51..18e0481a2a3 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome de cartafol non válido. O uso de «Shared» está reservado.", "%s could not be renamed" => "%s non pode cambiar de nome", -"Upload" => "Enviar", "File handling" => "Manexo de ficheiro", "Maximum upload size" => "Tamaño máximo do envío", "max. possible: " => "máx. posíbel: ", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index ab8640a91d1..6279e675db2 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "Name" => "שם", "Size" => "גודל", "Modified" => "זמן שינוי", -"Upload" => "העלאה", "File handling" => "טיפול בקבצים", "Maximum upload size" => "גודל העלאה מקסימלי", "max. possible: " => "המרבי האפשרי: ", diff --git a/apps/files/l10n/hi.php b/apps/files/l10n/hi.php index b4234b51376..13fded26719 100644 --- a/apps/files/l10n/hi.php +++ b/apps/files/l10n/hi.php @@ -5,7 +5,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Upload" => "अपलोड ", "Save" => "सहेजें" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index ef978e6cfb7..0876dcdd1ec 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja promjena", -"Upload" => "Učitaj", "File handling" => "datoteka za rukovanje", "Maximum upload size" => "Maksimalna veličina prijenosa", "max. possible: " => "maksimalna moguća: ", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index e4ab355c9b1..0f9a903e2b8 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Módosítva", "Invalid folder name. Usage of 'Shared' is reserved." => "Érvénytelen mappanév. A 'Shared' a rendszer számára fenntartott elnevezés.", "%s could not be renamed" => "%s átnevezése nem sikerült", -"Upload" => "Feltöltés", "File handling" => "Fájlkezelés", "Maximum upload size" => "Maximális feltölthető fájlméret", "max. possible: " => "max. lehetséges: ", diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index 420e48395c7..da1cafaa293 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -12,7 +12,6 @@ $TRANSLATIONS = array( "Name" => "Nomine", "Size" => "Dimension", "Modified" => "Modificate", -"Upload" => "Incargar", "Maximum upload size" => "Dimension maxime de incargamento", "Save" => "Salveguardar", "New" => "Nove", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 8356c5465eb..40699ba886e 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -57,7 +57,6 @@ $TRANSLATIONS = array( "Modified" => "Dimodifikasi", "Invalid folder name. Usage of 'Shared' is reserved." => "Nama folder tidak sah. Menggunakan 'Shared' sudah digunakan.", "%s could not be renamed" => "%s tidak dapat diubah nama", -"Upload" => "Unggah", "File handling" => "Penanganan berkas", "Maximum upload size" => "Ukuran pengunggahan maksimum", "max. possible: " => "Kemungkinan maks.:", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 00503028e0e..b8e23b6a300 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -27,7 +27,6 @@ $TRANSLATIONS = array( "Name" => "Nafn", "Size" => "Stærð", "Modified" => "Breytt", -"Upload" => "Senda inn", "File handling" => "Meðhöndlun skrár", "Maximum upload size" => "Hámarks stærð innsendingar", "max. possible: " => "hámark mögulegt: ", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 9539496a3fc..64abf0bfed9 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificato", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome della cartella non valido. L'uso di 'Shared' è riservato.", "%s could not be renamed" => "%s non può essere rinominato", -"Upload" => "Carica", "File handling" => "Gestione file", "Maximum upload size" => "Dimensione massima upload", "max. possible: " => "numero mass.: ", diff --git a/apps/files/l10n/ja.php b/apps/files/l10n/ja.php index dd8d4e4e3f6..7606a8d4b16 100644 --- a/apps/files/l10n/ja.php +++ b/apps/files/l10n/ja.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "更新日時", "Invalid folder name. Usage of 'Shared' is reserved." => "無効なフォルダー名。「Shared」の利用は予約されています。", "%s could not be renamed" => "%sの名前を変更できませんでした", -"Upload" => "アップロード", "File handling" => "ファイル操作", "Maximum upload size" => "最大アップロードサイズ", "max. possible: " => "最大容量: ", diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index f9749d72bb4..ad3a4bff1f1 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "Name" => "სახელი", "Size" => "ზომა", "Modified" => "შეცვლილია", -"Upload" => "ატვირთვა", "File handling" => "ფაილის დამუშავება", "Maximum upload size" => "მაქსიმუმ ატვირთის ზომა", "max. possible: " => "მაქს. შესაძლებელი:", diff --git a/apps/files/l10n/km.php b/apps/files/l10n/km.php index a7a01ccab9d..30bb2998afa 100644 --- a/apps/files/l10n/km.php +++ b/apps/files/l10n/km.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "_Uploading %n file_::_Uploading %n files_" => array(""), "Name" => "ឈ្មោះ", "Size" => "ទំហំ", -"Upload" => "ផ្ទុក​ឡើង", "Save" => "រក្សាទុក", "New folder" => "ថត​ថ្មី", "Folder" => "ថត", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index c0f0d7d4454..3c8a72097f2 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "수정됨", "Invalid folder name. Usage of 'Shared' is reserved." => "폴더 이름이 잘못되었습니다. '공유됨'은 예약된 폴더 이름입니다.", "%s could not be renamed" => "%s의 이름을 변경할 수 없습니다", -"Upload" => "업로드", "File handling" => "파일 처리", "Maximum upload size" => "최대 업로드 크기", "max. possible: " => "최대 가능:", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index 6ec5819d380..1c9d615ee7e 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "ناو", -"Upload" => "بارکردن", "Save" => "پاشکه‌وتکردن", "Folder" => "بوخچه", "Download" => "داگرتن" diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 38b5d672d02..27dc936600b 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -18,7 +18,6 @@ $TRANSLATIONS = array( "Name" => "Numm", "Size" => "Gréisst", "Modified" => "Geännert", -"Upload" => "Eroplueden", "File handling" => "Fichier handling", "Maximum upload size" => "Maximum Upload Gréisst ", "max. possible: " => "max. méiglech:", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index 50097e5f362..fee09cf2d8b 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Pakeista", "Invalid folder name. Usage of 'Shared' is reserved." => "Netinkamas aplanko pavadinimas. „Shared“ pavadinimas yra rezervuotas.", "%s could not be renamed" => "%s negali būti pervadintas", -"Upload" => "Įkelti", "File handling" => "Failų tvarkymas", "Maximum upload size" => "Maksimalus įkeliamo failo dydis", "max. possible: " => "maks. galima:", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index fcb1a59aa38..71f3976816d 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -36,7 +36,6 @@ $TRANSLATIONS = array( "Size" => "Izmērs", "Modified" => "Mainīts", "%s could not be renamed" => "%s nevar tikt pārsaukts", -"Upload" => "Augšupielādēt", "File handling" => "Datņu pārvaldība", "Maximum upload size" => "Maksimālais datņu augšupielādes apjoms", "max. possible: " => "maksimālais iespējamais:", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index fa6efd1aff3..c303e51511b 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -49,7 +49,6 @@ $TRANSLATIONS = array( "Size" => "Големина", "Modified" => "Променето", "%s could not be renamed" => "%s не може да биде преименуван", -"Upload" => "Подигни", "File handling" => "Ракување со датотеки", "Maximum upload size" => "Максимална големина за подигање", "max. possible: " => "макс. можно:", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index df0054c3d00..af42a3838b6 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "Name" => "Nama", "Size" => "Saiz", "Modified" => "Dimodifikasi", -"Upload" => "Muat naik", "File handling" => "Pengendalian fail", "Maximum upload size" => "Saiz maksimum muat naik", "max. possible: " => "maksimum:", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index f1e2c2edeeb..878d4df8221 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Endret", "Invalid folder name. Usage of 'Shared' is reserved." => "Ulovlig mappenavn. Bruken av 'Shared' er reservert.", "%s could not be renamed" => "Kunne ikke gi nytt navn til %s", -"Upload" => "Last opp", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimum opplastingsstørrelse", "max. possible: " => "max. mulige:", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 946c7905b23..779a651602d 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Aangepast", "Invalid folder name. Usage of 'Shared' is reserved." => "Ongeldige mapnaam. Gebruik van 'Shared' is gereserveerd.", "%s could not be renamed" => "%s kon niet worden hernoemd", -"Upload" => "Uploaden", "File handling" => "Bestand", "Maximum upload size" => "Maximale bestandsgrootte voor uploads", "max. possible: " => "max. mogelijk: ", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index bd17fa3386a..693bfccb093 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -42,7 +42,6 @@ $TRANSLATIONS = array( "Size" => "Storleik", "Modified" => "Endra", "%s could not be renamed" => "Klarte ikkje å omdøypa på %s", -"Upload" => "Last opp", "File handling" => "Filhandtering", "Maximum upload size" => "Maksimal opplastingsstorleik", "max. possible: " => "maks. moglege:", diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index 7a24c81974e..f3d790a533f 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "Name" => "Nom", "Size" => "Talha", "Modified" => "Modificat", -"Upload" => "Amontcarga", "File handling" => "Manejament de fichièr", "Maximum upload size" => "Talha maximum d'amontcargament", "max. possible: " => "max. possible: ", diff --git a/apps/files/l10n/or_IN.php b/apps/files/l10n/or_IN.php new file mode 100644 index 00000000000..0157af093e9 --- /dev/null +++ b/apps/files/l10n/or_IN.php @@ -0,0 +1,7 @@ + array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/pa.php b/apps/files/l10n/pa.php index b18d2071e08..3cf87242491 100644 --- a/apps/files/l10n/pa.php +++ b/apps/files/l10n/pa.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Upload" => "ਅੱਪਲੋਡ", "Cancel upload" => "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ", "Download" => "ਡਾਊਨਲੋਡ", "Delete" => "ਹਟਾਓ" diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 83126b3ea03..5a5b057e633 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modyfikacja", "Invalid folder name. Usage of 'Shared' is reserved." => "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane.", "%s could not be renamed" => "%s nie można zmienić nazwy", -"Upload" => "Wyślij", "File handling" => "Zarządzanie plikami", "Maximum upload size" => "Maksymalny rozmiar wysyłanego pliku", "max. possible: " => "maks. możliwy:", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 48c32e8887f..35d2d551703 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome da pasta inválido. Uso de 'Shared' é reservado.", "%s could not be renamed" => "%s não pode ser renomeado", -"Upload" => "Upload", "File handling" => "Tratamento de Arquivo", "Maximum upload size" => "Tamanho máximo para carregar", "max. possible: " => "max. possível:", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 0afb6b50157..8c58c6458c0 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome de pasta inválido. Utilização de \"Partilhado\" está reservada.", "%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", "max. possible: " => "max. possivel: ", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 6cda724df43..998e58375e7 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -50,7 +50,6 @@ $TRANSLATIONS = array( "Size" => "Mărime", "Modified" => "Modificat", "%s could not be renamed" => "%s nu a putut fi redenumit", -"Upload" => "Încărcă", "File handling" => "Manipulare fișiere", "Maximum upload size" => "Dimensiune maximă admisă la încărcare", "max. possible: " => "max. posibil:", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 17f06c6a200..4586a73dc3c 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Дата изменения", "Invalid folder name. Usage of 'Shared' is reserved." => "Неправильное имя каталога. Имя 'Shared' зарезервировано.", "%s could not be renamed" => "%s не может быть переименован", -"Upload" => "Загрузка", "File handling" => "Управление файлами", "Maximum upload size" => "Максимальный размер загружаемого файла", "max. possible: " => "макс. возможно: ", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index a2809ee2f5d..ff6672f7112 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "Name" => "නම", "Size" => "ප්‍රමාණය", "Modified" => "වෙනස් කළ", -"Upload" => "උඩුගත කරන්න", "File handling" => "ගොනු පරිහරණය", "Maximum upload size" => "උඩුගත කිරීමක උපරිම ප්‍රමාණය", "max. possible: " => "හැකි උපරිමය:", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index cffb89c294d..2e079b4ce78 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Upravené", "Invalid folder name. Usage of 'Shared' is reserved." => "Názov priečinka je chybný. Použitie názvu 'Shared' nie je povolené.", "%s could not be renamed" => "%s nemohol byť premenovaný", -"Upload" => "Odoslať", "File handling" => "Nastavenie správania sa k súborom", "Maximum upload size" => "Maximálna veľkosť odosielaného súboru", "max. possible: " => "najväčšie možné:", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index fcb358bd7bd..fbd667226c0 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Spremenjeno", "Invalid folder name. Usage of 'Shared' is reserved." => "Neveljavno ime mape. Ime 'Souporaba' je zadržana za javno mapo.", "%s could not be renamed" => "%s ni mogoče preimenovati", -"Upload" => "Pošlji", "File handling" => "Upravljanje z datotekami", "Maximum upload size" => "Največja velikost za pošiljanja", "max. possible: " => "največ mogoče:", diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index ade4f769faa..a7f1cb34133 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Size" => "Madhësia", "Modified" => "Ndryshuar", "%s could not be renamed" => "Nuk është i mundur riemërtimi i %s", -"Upload" => "Ngarko", "File handling" => "Trajtimi i Skedarëve", "Maximum upload size" => "Madhësia maksimale e nagarkimit", "max. possible: " => "maks i mundshëm", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 44669e8167a..866d8dbdd03 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "Name" => "Име", "Size" => "Величина", "Modified" => "Измењено", -"Upload" => "Отпреми", "File handling" => "Управљање датотекама", "Maximum upload size" => "Највећа величина датотеке", "max. possible: " => "највећа величина:", diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index a5c74860f78..38039a19fc1 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -15,7 +15,6 @@ $TRANSLATIONS = array( "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja izmena", -"Upload" => "Pošalji", "Maximum upload size" => "Maksimalna veličina pošiljke", "Save" => "Snimi", "Nothing in here. Upload something!" => "Ovde nema ničeg. Pošaljite nešto!", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index f420216228c..811e568fefc 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Ändrad", "Invalid folder name. Usage of 'Shared' is reserved." => "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud", "%s could not be renamed" => "%s kunde inte namnändras", -"Upload" => "Ladda upp", "File handling" => "Filhantering", "Maximum upload size" => "Maximal storlek att ladda upp", "max. possible: " => "max. möjligt:", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index 257aacf1471..0ab17785b93 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -22,7 +22,6 @@ $TRANSLATIONS = array( "Name" => "பெயர்", "Size" => "அளவு", "Modified" => "மாற்றப்பட்டது", -"Upload" => "பதிவேற்றுக", "File handling" => "கோப்பு கையாளுதல்", "Maximum upload size" => "பதிவேற்றக்கூடிய ஆகக்கூடிய அளவு ", "max. possible: " => "ஆகக் கூடியது:", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 8f5f15f2a34..f0fd29da7e4 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Name" => "ชื่อ", "Size" => "ขนาด", "Modified" => "แก้ไขแล้ว", -"Upload" => "อัพโหลด", "File handling" => "การจัดกาไฟล์", "Maximum upload size" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้", "max. possible: " => "จำนวนสูงสุดที่สามารถทำได้: ", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 1f69dca628d..46f5af30719 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Değiştirilme", "Invalid folder name. Usage of 'Shared' is reserved." => "Geçersiz klasör adı. 'Shared' ismi ayrılmıştır.", "%s could not be renamed" => "%s yeniden adlandırılamadı", -"Upload" => "Yükle", "File handling" => "Dosya işlemleri", "Maximum upload size" => "Maksimum yükleme boyutu", "max. possible: " => "mümkün olan en fazla: ", diff --git a/apps/files/l10n/ug.php b/apps/files/l10n/ug.php index 13354c153b2..58ccba94c13 100644 --- a/apps/files/l10n/ug.php +++ b/apps/files/l10n/ug.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Name" => "ئاتى", "Size" => "چوڭلۇقى", "Modified" => "ئۆزگەرتكەن", -"Upload" => "يۈكلە", "Save" => "ساقلا", "New" => "يېڭى", "Text file" => "تېكىست ھۆججەت", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 905d27c3ee2..5643dedb9d4 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Size" => "Розмір", "Modified" => "Змінено", "%s could not be renamed" => "%s не може бути перейменований", -"Upload" => "Вивантажити", "File handling" => "Робота з файлами", "Maximum upload size" => "Максимальний розмір відвантажень", "max. possible: " => "макс.можливе:", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 55f9bd25942..058add4bb73 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -55,7 +55,6 @@ $TRANSLATIONS = array( "Size" => "Kích cỡ", "Modified" => "Thay đổi", "%s could not be renamed" => "%s không thể đổi tên", -"Upload" => "Tải lên", "File handling" => "Xử lý tập tin", "Maximum upload size" => "Kích thước tối đa ", "max. possible: " => "tối đa cho phép:", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 068f97c1ddf..59623bffd18 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "修改日期", "Invalid folder name. Usage of 'Shared' is reserved." => "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹", "%s could not be renamed" => "%s 不能被重命名", -"Upload" => "上传", "File handling" => "文件处理", "Maximum upload size" => "最大上传大小", "max. possible: " => "最大允许: ", diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php index eaa32cd537a..7a701166e64 100644 --- a/apps/files/l10n/zh_HK.php +++ b/apps/files/l10n/zh_HK.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), "Name" => "名稱", -"Upload" => "上傳", "Save" => "儲存", "Download" => "下載", "Delete" => "刪除" diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 154efd563fd..3668b37d64e 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -55,7 +55,6 @@ $TRANSLATIONS = array( "Size" => "大小", "Modified" => "修改時間", "%s could not be renamed" => "無法重新命名 %s", -"Upload" => "上傳", "File handling" => "檔案處理", "Maximum upload size" => "上傳限制", "max. possible: " => "最大允許:", diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php index 5fcd0a9f060..53ee2bc0303 100644 --- a/apps/files_encryption/l10n/sk_SK.php +++ b/apps/files_encryption/l10n/sk_SK.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Prosím uistite sa, že PHP verzie 5.3.3 alebo novšej je nainštalované a tiež, že OpenSSL knižnica spolu z PHP rozšírením je povolená a konfigurovaná správne. Nateraz bola aplikácia šifrovania zablokovaná.", "Following users are not set up for encryption:" => "Nasledujúci používatelia nie sú nastavení pre šifrovanie:", "Initial encryption started... This can take some time. Please wait." => "Počiatočné šifrovanie započalo ... To môže nejakú dobu trvať. Čakajte prosím.", +"Initial encryption running... Please try again later." => "Počiatočné šifrovanie beží... Skúste to neskôr znovu.", "Go directly to your " => "Choďte priamo do vášho", "personal settings" => "osobné nastavenia", "Encryption" => "Šifrovanie", diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php index de32fb5ffb1..96f6241e5fb 100644 --- a/apps/files_external/l10n/sk_SK.php +++ b/apps/files_external/l10n/sk_SK.php @@ -6,17 +6,25 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Zadajte platný kľúč aplikácie a heslo Dropbox", "Error configuring Google Drive storage" => "Chyba pri konfigurácii úložiska Google drive", "Saved" => "Uložené", +"Note: " => "Poznámka: ", +" and " => "a", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Poznámka: cURL podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Poznámka: FTP podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Poznámka: \"%s\" nie je nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval.", "External Storage" => "Externé úložisko", "Folder name" => "Názov priečinka", "External storage" => "Externé úložisko", "Configuration" => "Nastavenia", "Options" => "Možnosti", +"Available for" => "K dispozícii pre", "Add storage" => "Pridať úložisko", +"No user or group" => "Žiadny používateľ alebo skupina", "All Users" => "Všetci používatelia", "Groups" => "Skupiny", "Users" => "Používatelia", "Delete" => "Zmazať", "Enable User External Storage" => "Povoliť externé úložisko", +"Allow users to mount the following external storage" => "Povoliť používateľom pripojiť tieto externé úložiská", "SSL root certificates" => "Koreňové SSL certifikáty", "Import Root Certificate" => "Importovať koreňový certifikát" ); diff --git a/apps/user_ldap/l10n/en_GB.php b/apps/user_ldap/l10n/en_GB.php index 6dfc3e53f0c..cb0ac1a5497 100644 --- a/apps/user_ldap/l10n/en_GB.php +++ b/apps/user_ldap/l10n/en_GB.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Backup (Replica) Port", "Disable Main Server" => "Disable Main Server", "Only connect to the replica server." => "Only connect to the replica server.", +"Case insensitive LDAP server (Windows)" => "Case insensitive LDAP server (Windows)", "Turn off SSL certificate validation." => "Turn off SSL certificate validation.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server.", "Cache Time-To-Live" => "Cache Time-To-Live", diff --git a/apps/user_ldap/l10n/es_CR.php b/apps/user_ldap/l10n/es_CR.php new file mode 100644 index 00000000000..3a1e002311c --- /dev/null +++ b/apps/user_ldap/l10n/es_CR.php @@ -0,0 +1,6 @@ + array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/or_IN.php b/apps/user_ldap/l10n/or_IN.php new file mode 100644 index 00000000000..3a1e002311c --- /dev/null +++ b/apps/user_ldap/l10n/or_IN.php @@ -0,0 +1,6 @@ + array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/sk_SK.php b/apps/user_ldap/l10n/sk_SK.php index edda4244336..3c6b51824f4 100644 --- a/apps/user_ldap/l10n/sk_SK.php +++ b/apps/user_ldap/l10n/sk_SK.php @@ -33,12 +33,14 @@ $TRANSLATIONS = array( "Save" => "Uložiť", "Test Configuration" => "Test nastavenia", "Help" => "Pomoc", +"Groups meeting these criteria are available in %s:" => "Skupiny spĺňajúce tieto kritériá sú k dispozícii v %s:", "only those object classes:" => "len tieto triedy objektov:", "only from those groups:" => "len z týchto skupín:", "Edit raw filter instead" => "Miesto pre úpravu raw filtra", "Raw LDAP filter" => "Raw LDAP filter", "The filter specifies which LDAP groups shall have access to the %s instance." => "Tento filter LDAP určuje, ktoré skupiny budú mať prístup k %s inštancii.", "groups found" => "nájdené skupiny", +"Users login with this attribute:" => "Používateľov prihlásiť pomocou tohto atribútu:", "LDAP Username:" => "LDAP používateľské meno:", "LDAP Email Address:" => "LDAP emailová adresa:", "Other Attributes:" => "Iné atribúty:", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Pre anonymný prístup ponechajte údaje DN a Heslo prázdne.", "One Base DN per line" => "Jedno základné DN na riadok", "You can specify Base DN for users and groups in the Advanced tab" => "V rozšírenom nastavení môžete zadať základné DN pre používateľov a skupiny", +"Limit %s access to users meeting these criteria:" => "Obmedziť %s prístup na používateľov spĺňajúcich tieto kritériá:", "The filter specifies which LDAP users shall have access to the %s instance." => "Tento filter LDAP určuje, ktorí používatelia majú prístup k %s inštancii.", "users found" => "nájdení používatelia", "Back" => "Späť", @@ -67,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Záložný server (kópia) port", "Disable Main Server" => "Zakázať hlavný server", "Only connect to the replica server." => "Pripojiť sa len k záložnému serveru.", +"Case insensitive LDAP server (Windows)" => "LDAP server je citlivý na veľkosť písmen (Windows)", "Turn off SSL certificate validation." => "Vypnúť overovanie SSL certifikátu.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Neodporúčané, použite iba pri testovaní! Pokiaľ spojenie funguje iba z daným nastavením, importujte SSL certifikát LDAP servera do vášho %s servera.", "Cache Time-To-Live" => "Životnosť objektov vo vyrovnávacej pamäti", @@ -84,6 +88,7 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Jedna skupinová základná DN na riadok", "Group Search Attributes" => "Atribúty vyhľadávania skupín", "Group-Member association" => "Priradenie člena skupiny", +"Nested Groups" => "Vnorené skupiny", "Special Attributes" => "Špeciálne atribúty", "Quota Field" => "Pole kvóty", "Quota Default" => "Predvolená kvóta", diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index a04cc40c7cc..c19edebc260 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "verlede maand", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "maande gelede", "last year" => "verlede jaar", "years ago" => "jare gelede", "Choose" => "Kies", diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 8c1d5ec3076..b29a661ec66 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","","","","",""), "last month" => "الشهر الماضي", "_%n month ago_::_%n months ago_" => array("","","","","",""), -"months ago" => "شهر مضى", "last year" => "السنةالماضية", "years ago" => "سنة مضت", "Choose" => "اختيار", diff --git a/core/l10n/ast.php b/core/l10n/ast.php index 667e452a0de..fd4a539c0ba 100644 --- a/core/l10n/ast.php +++ b/core/l10n/ast.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("fai %n día","fai %n díes"), "last month" => "mes caberu", "_%n month ago_::_%n months ago_" => array("fai %n mes","fai %n meses"), -"months ago" => "fai meses", "last year" => "añu caberu", "years ago" => "fai años", "Choose" => "Esbillar", diff --git a/core/l10n/be.php b/core/l10n/be.php index 56f08cccc3c..383d2494d2c 100644 --- a/core/l10n/be.php +++ b/core/l10n/be.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","","",""), "last month" => "У мінулым месяцы", "_%n month ago_::_%n months ago_" => array("","","",""), -"months ago" => "Месяцаў таму", "last year" => "У мінулым годзе", "years ago" => "Гадоў таму", "Choose" => "Выбар", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 397440bea2b..861d7370ed1 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "последният месец", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "Преди месеци", "last year" => "последната година", "years ago" => "последните години", "Choose" => "Избери", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index 7c74a9d8af5..e9f46d686c1 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "গত মাস", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "মাস পূর্বে", "last year" => "গত বছর", "years ago" => "বছর পূর্বে", "Choose" => "বেছে নিন", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 65c28fa0a68..d4adb682f8a 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("fa %n dies","fa %n dies"), "last month" => "el mes passat", "_%n month ago_::_%n months ago_" => array("fa %n mes","fa %n mesos"), -"months ago" => "mesos enrere", "last year" => "l'any passat", "years ago" => "anys enrere", "Choose" => "Escull", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 45c92406bff..46b8de6bac5 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("před %n dnem","před %n dny","před %n dny"), "last month" => "minulý měsíc", "_%n month ago_::_%n months ago_" => array("před %n měsícem","před %n měsíci","před %n měsíci"), -"months ago" => "před měsíci", "last year" => "minulý rok", "years ago" => "před lety", "Choose" => "Vybrat", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index f73f60d069c..b79c1d5df59 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","","",""), "last month" => "mis diwethaf", "_%n month ago_::_%n months ago_" => array("","","",""), -"months ago" => "misoedd yn ôl", "last year" => "y llynedd", "years ago" => "blwyddyn yn ôl", "Choose" => "Dewisiwch", diff --git a/core/l10n/da.php b/core/l10n/da.php index c7bda6fd365..9991e3e4907 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dag siden","%n dage siden"), "last month" => "sidste måned", "_%n month ago_::_%n months ago_" => array("%n måned siden","%n måneder siden"), -"months ago" => "måneder siden", "last year" => "sidste år", "years ago" => "år siden", "Choose" => "Vælg", diff --git a/core/l10n/de.php b/core/l10n/de.php index fabf35440cb..7a0aecf4d5f 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Choose" => "Auswählen", diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php index eb2cfd233d3..1a2c56635cf 100644 --- a/core/l10n/de_CH.php +++ b/core/l10n/de_CH.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Choose" => "Auswählen", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index a65714f26f6..b8bce778f87 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Choose" => "Auswählen", diff --git a/core/l10n/el.php b/core/l10n/el.php index e6a53c54d3c..c9506fda05a 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n ημέρα πριν","%n ημέρες πριν"), "last month" => "τελευταίο μήνα", "_%n month ago_::_%n months ago_" => array("%n μήνας πριν","%n μήνες πριν"), -"months ago" => "μήνες πριν", "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν", "Choose" => "Επιλέξτε", diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index 215bae92d1c..016bf23e8e1 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n day ago","%n days ago"), "last month" => "last month", "_%n month ago_::_%n months ago_" => array("%n month ago","%n months ago"), -"months ago" => "months ago", "last year" => "last year", "years ago" => "years ago", "Choose" => "Choose", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 05d28efb66b..19d330e5c26 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("antaŭ %n tago","antaŭ %n tagoj"), "last month" => "lastamonate", "_%n month ago_::_%n months ago_" => array("antaŭ %n monato","antaŭ %n monatoj"), -"months ago" => "monatoj antaŭe", "last year" => "lastajare", "years ago" => "jaroj antaŭe", "Choose" => "Elekti", diff --git a/core/l10n/es.php b/core/l10n/es.php index cb2d09d60fe..53d2a9f4c2b 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), "last month" => "el mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), -"months ago" => "meses antes", "last year" => "el año pasado", "years ago" => "años antes", "Choose" => "Seleccionar", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index c9d270edefa..59e0afbdbe6 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), "last month" => "el mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), -"months ago" => "meses atrás", "last year" => "el año pasado", "years ago" => "años atrás", "Choose" => "Elegir", diff --git a/core/l10n/es_CL.php b/core/l10n/es_CL.php index b89e6575c5e..cab130cbd3c 100644 --- a/core/l10n/es_CL.php +++ b/core/l10n/es_CL.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "mes anterior", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "meses antes", "last year" => "último año", "years ago" => "años anteriores", "Choose" => "Choose", diff --git a/core/l10n/es_CR.php b/core/l10n/es_CR.php new file mode 100644 index 00000000000..ffcdde48d47 --- /dev/null +++ b/core/l10n/es_CR.php @@ -0,0 +1,9 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_MX.php b/core/l10n/es_MX.php index 6a90e3d7783..dca69ebaa33 100644 --- a/core/l10n/es_MX.php +++ b/core/l10n/es_MX.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), "last month" => "el mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), -"months ago" => "meses antes", "last year" => "el año pasado", "years ago" => "años antes", "Choose" => "Seleccionar", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 422caac9c15..f0e05e571ee 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n päev tagasi","%n päeva tagasi"), "last month" => "viimasel kuul", "_%n month ago_::_%n months ago_" => array("%n kuu tagasi","%n kuud tagasi"), -"months ago" => "kuu tagasi", "last year" => "viimasel aastal", "years ago" => "aastat tagasi", "Choose" => "Vali", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 8fd554485db..3b59fcdddb7 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("orain dela egun %n","orain dela %n egun"), "last month" => "joan den hilabetean", "_%n month ago_::_%n months ago_" => array("orain dela hilabete %n","orain dela %n hilabete"), -"months ago" => "hilabete", "last year" => "joan den urtean", "years ago" => "urte", "Choose" => "Aukeratu", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index a349d3b7704..ee634f466c8 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array(""), "last month" => "ماه قبل", "_%n month ago_::_%n months ago_" => array(""), -"months ago" => "ماه‌های قبل", "last year" => "سال قبل", "years ago" => "سال‌های قبل", "Choose" => "انتخاب کردن", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 7797d17c872..9188469abc2 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n päivä sitten","%n päivää sitten"), "last month" => "viime kuussa", "_%n month ago_::_%n months ago_" => array("%n kuukausi sitten","%n kuukautta sitten"), -"months ago" => "kuukautta sitten", "last year" => "viime vuonna", "years ago" => "vuotta sitten", "Choose" => "Valitse", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 623f129c860..49be57abf37 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("il y a %n jour","il y a %n jours"), "last month" => "le mois dernier", "_%n month ago_::_%n months ago_" => array("Il y a %n mois","Il y a %n mois"), -"months ago" => "il y a plusieurs mois", "last year" => "l'année dernière", "years ago" => "il y a plusieurs années", "Choose" => "Choisir", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index fac17a5c230..9509446ec7c 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("hai %n día","vai %n días"), "last month" => "último mes", "_%n month ago_::_%n months ago_" => array("hai %n mes","hai %n meses"), -"months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", "Choose" => "Escoller", diff --git a/core/l10n/he.php b/core/l10n/he.php index 8fb7373a143..d629ac66213 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("לפני %n יום","לפני %n ימים"), "last month" => "חודש שעבר", "_%n month ago_::_%n months ago_" => array("לפני %n חודש","לפני %n חודשים"), -"months ago" => "חודשים", "last year" => "שנה שעברה", "years ago" => "שנים", "Choose" => "בחירה", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 46cc802df9f..60b82a22ad7 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","",""), "last month" => "prošli mjesec", "_%n month ago_::_%n months ago_" => array("","",""), -"months ago" => "mjeseci", "last year" => "prošlu godinu", "years ago" => "godina", "Choose" => "Izaberi", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 096b28e2d9b..529eed687c6 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n nappal ezelőtt","%n nappal ezelőtt"), "last month" => "múlt hónapban", "_%n month ago_::_%n months ago_" => array("%n hónappal ezelőtt","%n hónappal ezelőtt"), -"months ago" => "több hónapja", "last year" => "tavaly", "years ago" => "több éve", "Choose" => "Válasszon", diff --git a/core/l10n/id.php b/core/l10n/id.php index 5038d0d6c82..8d18cc60a97 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n hari yang lalu"), "last month" => "bulan kemarin", "_%n month ago_::_%n months ago_" => array("%n bulan yang lalu"), -"months ago" => "beberapa bulan lalu", "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", "Choose" => "Pilih", diff --git a/core/l10n/is.php b/core/l10n/is.php index f0bb8b94ff5..254c4b38689 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "síðasta mánuði", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "mánuðir síðan", "last year" => "síðasta ári", "years ago" => "einhverjum árum", "Choose" => "Veldu", diff --git a/core/l10n/it.php b/core/l10n/it.php index 98d0d5e3b0e..dfcc0a480ac 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n giorno fa","%n giorni fa"), "last month" => "mese scorso", "_%n month ago_::_%n months ago_" => array("%n mese fa","%n mesi fa"), -"months ago" => "mesi fa", "last year" => "anno scorso", "years ago" => "anni fa", "Choose" => "Scegli", diff --git a/core/l10n/ja.php b/core/l10n/ja.php index 3a99f0e598b..ea8b44ff60a 100644 --- a/core/l10n/ja.php +++ b/core/l10n/ja.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n日前"), "last month" => "1ヶ月前", "_%n month ago_::_%n months ago_" => array("%nヶ月前"), -"months ago" => "数ヶ月前", "last year" => "1年前", "years ago" => "数年前", "Choose" => "選択", diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index a76a8866541..3389bafa7a2 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array(""), "last month" => "გასულ თვეში", "_%n month ago_::_%n months ago_" => array(""), -"months ago" => "თვის წინ", "last year" => "ბოლო წელს", "years ago" => "წლის წინ", "Choose" => "არჩევა", diff --git a/core/l10n/km.php b/core/l10n/km.php index f6de962a9c6..0eac818c578 100644 --- a/core/l10n/km.php +++ b/core/l10n/km.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n ថ្ងៃ​មុន"), "last month" => "ខែមុន", "_%n month ago_::_%n months ago_" => array("%n ខែ​មុន"), -"months ago" => "ខែ​មុន", "last year" => "ឆ្នាំ​មុន", "years ago" => "ឆ្នាំ​មុន", "Choose" => "ជ្រើស", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 6020777f874..d8c32e070d3 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n일 전 "), "last month" => "지난 달", "_%n month ago_::_%n months ago_" => array("%n달 전 "), -"months ago" => "개월 전", "last year" => "작년", "years ago" => "년 전", "Choose" => "선택", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index b60f6c7c5f5..30337c5fc8f 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "leschte Mount", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "Méint hir", "last year" => "Lescht Joer", "years ago" => "Joren hir", "Choose" => "Auswielen", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 776cde74fe7..e3b612df3fa 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("prieš %n dieną","prieš %n dienas","prieš %n dienų"), "last month" => "praeitą mėnesį", "_%n month ago_::_%n months ago_" => array("prieš %n mėnesį","prieš %n mėnesius","prieš %n mėnesių"), -"months ago" => "prieš mėnesį", "last year" => "praeitais metais", "years ago" => "prieš metus", "Choose" => "Pasirinkite", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 683ff2c129a..37cde915c5e 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Šodien, %n dienas","Pirms %n dienas","Pirms %n dienām"), "last month" => "pagājušajā mēnesī", "_%n month ago_::_%n months ago_" => array("Šomēnes, %n mēneši","Pirms %n mēneša","Pirms %n mēnešiem"), -"months ago" => "mēnešus atpakaļ", "last year" => "gājušajā gadā", "years ago" => "gadus atpakaļ", "Choose" => "Izvēlieties", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index c56ae32bf2a..64c6671abf8 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "минатиот месец", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "пред месеци", "last year" => "минатата година", "years ago" => "пред години", "Choose" => "Избери", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index c47599f5a17..2a9873f4815 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dag siden","%n dager siden"), "last month" => "forrige måned", "_%n month ago_::_%n months ago_" => array("%n dag siden","%n dager siden"), -"months ago" => "måneder siden", "last year" => "i fjor", "years ago" => "år siden", "Choose" => "Velg", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index b09509e6290..43748352a7b 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","%n dagen geleden"), "last month" => "vorige maand", "_%n month ago_::_%n months ago_" => array("","%n maanden geleden"), -"months ago" => "maanden geleden", "last year" => "vorig jaar", "years ago" => "jaar geleden", "Choose" => "Kies", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index e6a80262a23..8d7e3c37881 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -37,7 +37,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dag sidan","%n dagar sidan"), "last month" => "førre månad", "_%n month ago_::_%n months ago_" => array("%n månad sidan","%n månadar sidan"), -"months ago" => "månadar sidan", "last year" => "i fjor", "years ago" => "år sidan", "Choose" => "Vel", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index 102514a4624..b13275822bd 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "mes passat", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "meses a", "last year" => "an passat", "years ago" => "ans a", "Choose" => "Causís", diff --git a/core/l10n/or_IN.php b/core/l10n/or_IN.php new file mode 100644 index 00000000000..ffcdde48d47 --- /dev/null +++ b/core/l10n/or_IN.php @@ -0,0 +1,9 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/pa.php b/core/l10n/pa.php index 395928dc35a..021452d0b31 100644 --- a/core/l10n/pa.php +++ b/core/l10n/pa.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "ਪਿਛਲੇ ਮਹੀਨੇ", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "ਮਹੀਨੇ ਪਹਿਲਾਂ", "last year" => "ਪਿਛਲੇ ਸਾਲ", "years ago" => "ਸਾਲਾਂ ਪਹਿਲਾਂ", "Choose" => "ਚੁਣੋ", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index fe0cf145832..0e9860b4bf9 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dzień temu","%n dni temu","%n dni temu"), "last month" => "w zeszłym miesiącu", "_%n month ago_::_%n months ago_" => array("%n miesiąc temu","%n miesięcy temu","%n miesięcy temu"), -"months ago" => "miesięcy temu", "last year" => "w zeszłym roku", "years ago" => "lat temu", "Choose" => "Wybierz", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 3545426b670..a7b671b4408 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("ha %n dia","ha %n dias"), "last month" => "último mês", "_%n month ago_::_%n months ago_" => array("ha %n mês","ha %n meses"), -"months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", "Choose" => "Escolha", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index bb1b6011a6b..9015dfd22b0 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dia atrás","%n dias atrás"), "last month" => "ultímo mês", "_%n month ago_::_%n months ago_" => array("%n mês atrás","%n meses atrás"), -"months ago" => "meses atrás", "last year" => "ano passado", "years ago" => "anos atrás", "Choose" => "Escolha", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 306c181bfd8..634ef3b764d 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("acum %n zi","acum %n zile","acum %n zile"), "last month" => "ultima lună", "_%n month ago_::_%n months ago_" => array("","",""), -"months ago" => "luni în urmă", "last year" => "ultimul an", "years ago" => "ani în urmă", "Choose" => "Alege", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index aa784088f7a..a09178a6cd1 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n день назад","%n дня назад","%n дней назад"), "last month" => "в прошлом месяце", "_%n month ago_::_%n months ago_" => array("%n месяц назад","%n месяца назад","%n месяцев назад"), -"months ago" => "несколько месяцев назад", "last year" => "в прошлом году", "years ago" => "несколько лет назад", "Choose" => "Выбрать", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index bcfb18520a8..bb125cc6af7 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "පෙර මාසයේ", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "මාස කීපයකට පෙර", "last year" => "පෙර අවුරුද්දේ", "years ago" => "අවුරුදු කීපයකට පෙර", "Choose" => "තෝරන්න", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 1b717bc412e..80d816a461d 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("pred %n dňom","pred %n dňami","pred %n dňami"), "last month" => "minulý mesiac", "_%n month ago_::_%n months ago_" => array("pred %n mesiacom","pred %n mesiacmi","pred %n mesiacmi"), -"months ago" => "pred mesiacmi", "last year" => "minulý rok", "years ago" => "pred rokmi", "Choose" => "Vybrať", @@ -51,6 +50,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} konflikt súboru","{count} konflikty súboru","{count} konfliktov súboru"), "One file conflict" => "Jeden konflikt súboru", "New Files" => "Nové súbory", +"Already existing files" => "Už existujúce súbory", "Which files do you want to keep?" => "Ktoré súbory chcete ponechať?", "If you select both versions, the copied file will have a number added to its name." => "Ak zvolíte obe verzie, názov nakopírovaného súboru bude doplnený o číslo.", "Cancel" => "Zrušiť", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 7da6a81086c..c87a8d8d8f3 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("pred %n dnevom","pred %n dnevoma","pred %n dnevi","pred %n dnevi"), "last month" => "zadnji mesec", "_%n month ago_::_%n months ago_" => array("pred %n mesecem","pred %n mesecema","pred %n meseci","pred %n meseci"), -"months ago" => "mesecev nazaj", "last year" => "lansko leto", "years ago" => "let nazaj", "Choose" => "Izbor", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index bfb7b0903f6..b3221dc75f3 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n ditë më parë","%n ditë më parë"), "last month" => "muajin e shkuar", "_%n month ago_::_%n months ago_" => array("%n muaj më parë","%n muaj më parë"), -"months ago" => "muaj më parë", "last year" => "vitin e shkuar", "years ago" => "vite më parë", "Choose" => "Zgjidh", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 55eee982a6e..388ebb0df92 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","",""), "last month" => "прошлог месеца", "_%n month ago_::_%n months ago_" => array("","",""), -"months ago" => "месеци раније", "last year" => "прошле године", "years ago" => "година раније", "Choose" => "Одабери", diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index e7eb2b499a3..e7783b3c023 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Prije %n dan.","Prije %n dana.","Prije %n dana."), "last month" => "prošlog meseca", "_%n month ago_::_%n months ago_" => array("","",""), -"months ago" => "pre nekoliko meseci", "last year" => "prošle godine", "years ago" => "pre nekoliko godina", "Choose" => "Izaberi", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index d46c204d7c3..d198b0d77c8 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dag sedan","%n dagar sedan"), "last month" => "förra månaden", "_%n month ago_::_%n months ago_" => array("%n månad sedan","%n månader sedan"), -"months ago" => "månader sedan", "last year" => "förra året", "years ago" => "år sedan", "Choose" => "Välj", diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 95468a9d7ac..c0b4dce7cf4 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "கடந்த மாதம்", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "மாதங்களுக்கு முன்", "last year" => "கடந்த வருடம்", "years ago" => "வருடங்களுக்கு முன்", "Choose" => "தெரிவுசெய்க ", diff --git a/core/l10n/te.php b/core/l10n/te.php index 9c22a61aa7d..7b76349b852 100644 --- a/core/l10n/te.php +++ b/core/l10n/te.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n రోజు క్రితం","%n రోజుల క్రితం"), "last month" => "పోయిన నెల", "_%n month ago_::_%n months ago_" => array("%n నెల క్రితం","%n నెలల క్రితం"), -"months ago" => "నెలల క్రితం", "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం", "Yes" => "అవును", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 9ee3c60f947..61a67f78026 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array(""), "last month" => "เดือนที่แล้ว", "_%n month ago_::_%n months ago_" => array(""), -"months ago" => "เดือน ที่ผ่านมา", "last year" => "ปีที่แล้ว", "years ago" => "ปี ที่ผ่านมา", "Choose" => "เลือก", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 2b0d952a34b..d5880d8a09d 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n gün önce","%n gün önce"), "last month" => "geçen ay", "_%n month ago_::_%n months ago_" => array("%n ay önce","%n ay önce"), -"months ago" => "aylar önce", "last year" => "geçen yıl", "years ago" => "yıllar önce", "Choose" => "Seç", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index f6bcfdcdc8d..2bbfb6cd981 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n день тому","%n дні тому","%n днів тому"), "last month" => "минулого місяця", "_%n month ago_::_%n months ago_" => array("%n місяць тому","%n місяці тому","%n місяців тому"), -"months ago" => "місяці тому", "last year" => "минулого року", "years ago" => "роки тому", "Choose" => "Обрати", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 319f68b6355..fe24cb385e5 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n ngày trước"), "last month" => "tháng trước", "_%n month ago_::_%n months ago_" => array("%n tháng trước"), -"months ago" => "tháng trước", "last year" => "năm trước", "years ago" => "năm trước", "Choose" => "Chọn", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 68f50baf98f..b068d425676 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n 天前"), "last month" => "上月", "_%n month ago_::_%n months ago_" => array("%n 月前"), -"months ago" => "月前", "last year" => "去年", "years ago" => "年前", "Choose" => "选择(&C)...", diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index 51d78a09796..294fa7d6fe6 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -27,7 +27,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array(""), "last month" => "前一月", "_%n month ago_::_%n months ago_" => array(""), -"months ago" => "個月之前", "Yes" => "Yes", "No" => "No", "Ok" => "OK", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 0799344697a..600c8df9bdc 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n 天前"), "last month" => "上個月", "_%n month ago_::_%n months ago_" => array("%n 個月前"), -"months ago" => "幾個月前", "last year" => "去年", "years ago" => "幾年前", "Choose" => "選擇", diff --git a/l10n/ach/core.po b/l10n/ach/core.po index ca25a26988f..508df40e1df 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ach/files.po b/l10n/ach/files.po index 2ec8af4d0e2..3feea8b76a1 100644 --- a/l10n/ach/files.po +++ b/l10n/ach/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index 155b27a4f72..06f42ada91f 100644 --- a/l10n/ach/settings.po +++ b/l10n/ach/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ady/core.po b/l10n/ady/core.po index 3c1f515e05a..2641da3bfc3 100644 --- a/l10n/ady/core.po +++ b/l10n/ady/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ady/files.po b/l10n/ady/files.po index 12f59cbc7bc..e0960d692e9 100644 --- a/l10n/ady/files.po +++ b/l10n/ady/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ady/settings.po b/l10n/ady/settings.po index 4a8e95a3bed..64fe376c032 100644 --- a/l10n/ady/settings.po +++ b/l10n/ady/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 6c03061dbea..fe2264f61e4 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-17 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 19:39+0000\n" -"Last-Translator: kalliet \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,63 +135,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Instellings" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekondes gelede" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute gelede" msgstr[1] "%n minute gelede" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "vandag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "gister" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "verlede maand" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "maande gelede" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "verlede jaar" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "jare gelede" @@ -295,12 +291,12 @@ msgstr "Gedeel" msgid "Share" msgstr "Deel" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:732 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fout" -#: js/share.js:160 js/share.js:788 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan wysig" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:719 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:732 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:750 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:775 +#: js/share.js:777 msgid "Sending ..." msgstr "Stuur ..." -#: js/share.js:786 +#: js/share.js:788 msgid "Email sent" msgstr "E-pos gestuur" -#: js/share.js:810 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 24833c8a10e..30b5a5ae9ae 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index de9915079a2..b8e7b43bf5d 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ak/core.po b/l10n/ak/core.po index 1fd891dc6ef..2314857d23a 100644 --- a/l10n/ak/core.po +++ b/l10n/ak/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ak/files.po b/l10n/ak/files.po index 73d266f53a1..d566e8e3cbf 100644 --- a/l10n/ak/files.po +++ b/l10n/ak/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ak/settings.po b/l10n/ak/settings.po index 27711c91512..92e383c7012 100644 --- a/l10n/ak/settings.po +++ b/l10n/ak/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/am_ET/core.po b/l10n/am_ET/core.po index e66052cc04c..3d756941bf5 100644 --- a/l10n/am_ET/core.po +++ b/l10n/am_ET/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/am_ET/files.po b/l10n/am_ET/files.po index 22104ecccff..09ff9217d1f 100644 --- a/l10n/am_ET/files.po +++ b/l10n/am_ET/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/am_ET/settings.po b/l10n/am_ET/settings.po index 6aa770b32ef..6c609cd16f8 100644 --- a/l10n/am_ET/settings.po +++ b/l10n/am_ET/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 13b1456ee6c..2f3200cf40e 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,19 +136,19 @@ msgstr "تشرين الثاني" msgid "December" msgstr "كانون الاول" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "إعدادات" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "جاري الحفظ..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -158,7 +158,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -168,15 +168,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "اليوم" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -186,11 +186,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -200,15 +200,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "شهر مضى" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "سنة مضت" @@ -316,12 +312,12 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "خطأ" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" @@ -385,71 +381,71 @@ msgstr "مشاركة عبر البريد الإلكتروني:" msgid "No people found" msgstr "لم يتم العثور على أي شخص" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "مجموعة" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "لا يسمح بعملية إعادة المشاركة" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "شورك في {item} مع {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "التحرير مسموح" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "ضبط الوصول" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "إنشاء" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "تحديث" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "حذف" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "مشاركة" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "تحذير" @@ -477,7 +473,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index bba1a48aebc..cf267ac9f2b 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -320,8 +320,9 @@ msgid "%s could not be renamed" msgstr "%s لا يمكن إعادة تسميته. " #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "رفع" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 51b0b345d5a..d8954db88ce 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "السماح بتنبيهات البريد الالكتروني." #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "السماح للمستخدم الى ارسال تنبيه البريد الالكتروني للملفات المشتركة " +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ast/core.po b/l10n/ast/core.po index 2a19c06bdcb..5fb6629ee39 100644 --- a/l10n/ast/core.po +++ b/l10n/ast/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: Tornes Llume \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,63 +135,59 @@ msgstr "Payares" msgid "December" msgstr "Avientu" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Axustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "fai segundos" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fai %n minutu" msgstr[1] "fai %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fai %n hora" msgstr[1] "fai %n hores" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "güei" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayeri" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "fai %n día" msgstr[1] "fai %n díes" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mes caberu" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fai %n mes" msgstr[1] "fai %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "fai meses" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "añu caberu" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "fai años" @@ -456,7 +452,7 @@ msgstr "Editar etiquetes" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ast/files.po b/l10n/ast/files.po index 89e4cae67dc..5a1b65708b2 100644 --- a/l10n/ast/files.po +++ b/l10n/ast/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 17:44+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Xubir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index 800d6e3ec20..ee7ed5a49c9 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 17:44+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/az/core.po b/l10n/az/core.po index 16e53892b8e..f61bb1c4aa4 100644 --- a/l10n/az/core.po +++ b/l10n/az/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/az/files.po b/l10n/az/files.po index 8d82454375a..0713c91424f 100644 --- a/l10n/az/files.po +++ b/l10n/az/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/az/settings.po b/l10n/az/settings.po index fbc31d71164..e9de38850fb 100644 --- a/l10n/az/settings.po +++ b/l10n/az/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/be/core.po b/l10n/be/core.po index b5a06d9d8f4..7b3d997c5f3 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,19 +135,19 @@ msgstr "Лістапад" msgid "December" msgstr "Снежань" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Налады" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Секунд таму" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -155,7 +155,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -163,15 +163,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Сёння" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "Ўчора" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -179,11 +179,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "У мінулым месяцы" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -191,15 +191,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "Месяцаў таму" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "У мінулым годзе" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Гадоў таму" @@ -305,12 +301,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Памылка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -374,71 +370,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -466,7 +462,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/be/files.po b/l10n/be/files.po index 4fd29da1622..6bcbb0a2aa0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -312,7 +312,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 8351820bb2b..1f6747d53d5 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 1927b8fb966..9dd5f13dede 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,63 +135,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Настройки" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Записване..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "днес" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "вчера" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "последният месец" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "Преди месеци" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "последната година" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "последните години" @@ -295,12 +291,12 @@ msgstr "Споделено" msgid "Share" msgstr "Споделяне" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Грешка при споделяне" @@ -364,71 +360,71 @@ msgstr "сподели по поща:" msgid "No people found" msgstr "Не са открити хора" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "група" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Допълнително споделяне не е разрешено" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Споделено в {item} с {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Премахни споделяне" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "може да променя" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "контрол на достъпа" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "създаване" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "Обновяване" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "Изтриване" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "Споделяне" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Защитено с парола" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Грешка при премахване на дата за изтичане" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Грепка при поставяне на дата за изтичане" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Изпращам ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Пощата е изпратена" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Внимание" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 117a237fae8..eac7d479c0b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Качване" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index bfc3c97823f..45e8a22497a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 190c189d639..fc4de2ea840 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "নভেম্বর" msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "আজ" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "গত মাস" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "মাস পূর্বে" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "গত বছর" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "বছর পূর্বে" @@ -294,12 +290,12 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "সমস্যা" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " @@ -363,71 +359,71 @@ msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি msgid "No people found" msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "সম্পাদনা করতে পারবেন" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "অধিগম্যতা নিয়ন্ত্রণ" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "তৈরী করুন" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "পরিবর্ধন কর" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "মুছে ফেল" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "সতর্কবাণী" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 1ddd8d6c744..11c329107ef 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "আপলোড" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index ab60e1d0ceb..8dfd63b8a15 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 0b742954372..3100ac1dedd 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,140 +134,136 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Spašavam..." -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -299,12 +295,12 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -368,71 +364,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -460,7 +456,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 194ec79a386..6f64ff337e5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,37 +213,37 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -309,7 +309,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index 8ec5e987328..b58fd383af9 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ca/core.po b/l10n/ca/core.po index b935d5a08e8..1e564d686fc 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -137,63 +137,59 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configuració" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Desant..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fa %n minut" msgstr[1] "fa %n minuts" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fa %n hora" msgstr[1] "fa %n hores" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "avui" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ahir" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "fa %n dies" msgstr[1] "fa %n dies" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "el mes passat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fa %n mes" msgstr[1] "fa %n mesos" -#: js/js.js:1107 -msgid "months ago" -msgstr "mesos enrere" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "l'any passat" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anys enrere" @@ -297,12 +293,12 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error en compartir" @@ -366,71 +362,71 @@ msgstr "Comparteix per correu electrònic" msgid "No people found" msgstr "No s'ha trobat ningú" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grup" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "No es permet compartir de nou" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartit en {item} amb {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Deixa de compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notifica per correu electrònic" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pot editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control d'accés" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crea" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualitza" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "elimina" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "comparteix" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Avís" @@ -458,7 +454,7 @@ msgstr "Edita etiquetes" msgid "Error loading dialog template: {error}" msgstr "Error en carregar la plantilla de diàleg: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No heu seleccionat les etiquetes a eliminar." diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 59335d109df..72127548ff0 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s no es pot canviar el nom" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Puja" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index fad333300c4..8a8a6b05b80 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "Permet notificacions per correu electrónic" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permet a l'usuari enviar notificacions de fitxers compartits per correu " +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index d5e17f61366..8effd3dc1f1 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 17:44+0000\n" -"Last-Translator: svetlemodry \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -143,67 +143,63 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nastavení" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Ukládám..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "před %n minutou" msgstr[1] "před %n minutami" msgstr[2] "před %n minutami" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "před %n hodinou" msgstr[1] "před %n hodinami" msgstr[2] "před %n hodinami" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "dnes" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "včera" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "před %n dnem" msgstr[1] "před %n dny" msgstr[2] "před %n dny" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "před %n měsícem" msgstr[1] "před %n měsíci" msgstr[2] "před %n měsíci" -#: js/js.js:1107 -msgid "months ago" -msgstr "před měsíci" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "minulý rok" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "před lety" @@ -469,7 +465,7 @@ msgstr "Editovat štítky" msgid "Error loading dialog template: {error}" msgstr "Chyba při načítání šablony dialogu: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Žádné štítky nebyly vybrány ke smazání." diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 8bc567a4dca..70caf9e725b 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -317,8 +317,9 @@ msgid "%s could not be renamed" msgstr "%s nemůže být přejmenován" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Odeslat" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 5618acb9b4e..711ef3ddccc 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -6,6 +6,7 @@ # Twiguard, 2013 # Honza K. , 2013 # liska_, 2013 +# svetlemodry , 2014 # cvanca , 2013 # m23 , 2014 # pstast , 2013-2014 @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -99,11 +100,11 @@ msgstr "" msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Nebylo možno dešifrovat soubory, zkontroluje prosím owncloud.log nebo kontaktujte svého administrátora" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znovu" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -527,8 +528,8 @@ msgid "Allow mail notification" msgstr "Povolit e-mailová upozornění" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index d517e51708a..6df89c597ef 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,19 +135,19 @@ msgstr "Tachwedd" msgid "December" msgstr "Rhagfyr" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Yn cadw..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -155,7 +155,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -163,15 +163,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "heddiw" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ddoe" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -179,11 +179,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -191,15 +191,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "misoedd yn ôl" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "y llynedd" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "blwyddyn yn ôl" @@ -305,12 +301,12 @@ msgstr "Rhannwyd" msgid "Share" msgstr "Rhannu" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Gwall" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Gwall wrth rannu" @@ -374,71 +370,71 @@ msgstr "Rhannu drwy e-bost:" msgid "No people found" msgstr "Heb ganfod pobl" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grŵp" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Does dim hawl ail-rannu" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Rhannwyd yn {item} â {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Dad-rannu" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "yn gallu golygu" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "rheolaeth mynediad" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "creu" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "diweddaru" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "dileu" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "rhannu" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Diogelwyd â chyfrinair" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Anfonwyd yr e-bost" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Rhybudd" @@ -466,7 +462,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index ef9494360a7..6d40efa1f12 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -312,8 +312,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Llwytho i fyny" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 8423265aa9d..21bd860c848 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/da/core.po b/l10n/da/core.po index fe32f8309ed..62a96c69be7 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -141,63 +141,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Gemmer..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "i dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "i går" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "sidste måned" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: js/js.js:1107 -msgid "months ago" -msgstr "måneder siden" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "sidste år" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "år siden" @@ -301,12 +297,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fejl" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fejl under deling" @@ -370,71 +366,71 @@ msgstr "Del via email:" msgid "No people found" msgstr "Ingen personer fundet" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Videredeling ikke tilladt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Fjern deling" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Giv besked med mail" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan redigere" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Adgangskontrol" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "opret" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "opdater" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "slet" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "del" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail afsendt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Advarsel" @@ -462,7 +458,7 @@ msgstr "Rediger tags" msgid "Error loading dialog template: {error}" msgstr "Fejl ved indlæsning dialog skabelon: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Ingen tags markeret til sletning." diff --git a/l10n/da/files.po b/l10n/da/files.po index 7308b092369..85e9030ae9d 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -311,8 +311,9 @@ msgid "%s could not be renamed" msgstr "%s kunne ikke omdøbes" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Upload" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index c1d8a6bf472..4d63d7d4278 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Tillad mail underretninger" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Tillad brugere at sende mail underretninger for delte filer" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/de/core.po b/l10n/de/core.po index ab11d78159e..91537915a8c 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -145,63 +145,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Heute" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1107 -msgid "months ago" -msgstr "Vor Monaten" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Vor Jahren" @@ -305,12 +301,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -374,71 +370,71 @@ msgstr "Über eine E-Mail teilen:" msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Weiterverteilen ist nicht erlaubt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Für {user} in {item} freigegeben" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Per E-Mail informieren" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "erstellen" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualisieren" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "löschen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "teilen" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-Mail wurde verschickt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warnung" @@ -466,7 +462,7 @@ msgstr "Schlagwörter bearbeiten" msgid "Error loading dialog template: {error}" msgstr "Fehler beim Laden der Dialogvorlage: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Es wurden keine Schlagwörter zum Löschen ausgewählt." diff --git a/l10n/de/files.po b/l10n/de/files.po index 9d5ef4125ea..973943e7a26 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -314,8 +314,9 @@ msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Hochladen" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 9dcd7cf9ea6..573b92899fd 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -529,8 +529,8 @@ msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index 9d060609c66..b09cbf82be3 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -135,135 +135,131 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -295,12 +291,12 @@ msgstr "" msgid "Share" msgstr "Freigeben" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Gruppe" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "Teilung zurücknehmen" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 4aad8f931dd..bb860e55b37 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index 83997bae597..d91974e8a4b 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index a8afc9f0cae..584e5b7af39 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -144,63 +144,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Heute" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1107 -msgid "months ago" -msgstr "Vor Monaten" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Vor Jahren" @@ -304,12 +300,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -373,71 +369,71 @@ msgstr "Mittels einer E-Mail teilen:" msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "erstellen" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualisieren" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "löschen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "teilen" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warnung" @@ -465,7 +461,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 3fb889a1c4c..36673d798da 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -315,8 +315,9 @@ msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Hochladen" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index b3db66ec50b..4165f28b4be 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -529,7 +529,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 665ae3cc103..ef3240473ed 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -145,63 +145,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Heute" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1107 -msgid "months ago" -msgstr "Vor Monaten" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Vor Jahren" @@ -305,12 +301,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -374,71 +370,71 @@ msgstr "Mittels einer E-Mail teilen:" msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Per E-Mail informieren" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "erstellen" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualisieren" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "löschen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "teilen" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warnung" @@ -466,7 +462,7 @@ msgstr "Schlagwörter bearbeiten" msgid "Error loading dialog template: {error}" msgstr "Fehler beim Laden der Dialogvorlage: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Es wurden keine Schlagwörter zum Löschen ausgewählt." diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index ad69e037e62..843016e5ae1 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -317,8 +317,9 @@ msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Hochladen" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index e70b8d6afd2..e769fdb0a04 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -529,8 +529,8 @@ msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/el/core.po b/l10n/el/core.po index 9b44871cb23..8b2799cf506 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 22:00+0000\n" -"Last-Translator: Γιάννης Ανθυμίδης \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -145,63 +145,59 @@ msgstr "Νοέμβριος" msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Γίνεται αποθήκευση..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n λεπτό πριν" msgstr[1] "%n λεπτά πριν" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ώρα πριν" msgstr[1] "%n ώρες πριν" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "σήμερα" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "χτες" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ημέρα πριν" msgstr[1] "%n ημέρες πριν" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n μήνας πριν" msgstr[1] "%n μήνες πριν" -#: js/js.js:1107 -msgid "months ago" -msgstr "μήνες πριν" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "χρόνια πριν" @@ -466,7 +462,7 @@ msgstr "Επεξεργασία ετικετών" msgid "Error loading dialog template: {error}" msgstr "Σφάλμα φόρτωσης προτύπου διαλόγων: {σφάλμα}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Καμμία ετικέτα δεν επιλέχθηκε για διαγραφή." diff --git a/l10n/el/files.po b/l10n/el/files.po index b2cbbde59fa..d35a622a951 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 21:50+0000\n" -"Last-Translator: Γιάννης Ανθυμίδης \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -313,8 +313,9 @@ msgid "%s could not be renamed" msgstr "Αδυναμία μετονομασίας του %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Μεταφόρτωση" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 667c9d73d98..72799b9f58e 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 22:10+0000\n" -"Last-Translator: Γιάννης Ανθυμίδης \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -529,8 +529,8 @@ msgid "Allow mail notification" msgstr "Επιτρέπονται ειδοποιήσεις ηλεκτρονικού ταχυδρομείου" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Επιτρέπει τους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index ccdc20247b6..3138530f0df 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,135 +135,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -295,12 +291,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index eff254ddd36..d0ab951ca9d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index a654ee294bc..718ec237746 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index c1d3f0e57d9..046deb41351 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,63 +135,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Settings" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Saving..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "seconds ago" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "today" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "yesterday" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n day ago" msgstr[1] "%n days ago" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "last month" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: js/js.js:1107 -msgid "months ago" -msgstr "months ago" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "last year" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "years ago" @@ -295,12 +291,12 @@ msgstr "Shared" msgid "Share" msgstr "Share" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error whilst sharing" @@ -364,71 +360,71 @@ msgstr "Share via email:" msgid "No people found" msgstr "No people found" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "group" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Resharing is not allowed" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Shared in {item} with {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Unshare" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notify by email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "can edit" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "access control" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "create" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "update" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "delete" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "share" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Password protected" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error unsetting expiration date" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sending ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email sent" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warning" @@ -456,7 +452,7 @@ msgstr "Edit tags" msgid "Error loading dialog template: {error}" msgstr "Error loading dialog template: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No tags selected for deletion." diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 7f557cc15ab..8d455ef98fa 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s could not be renamed" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Upload" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index bb29a772bc7..0cc06ec6007 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 14:20+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 09:37+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -49,7 +49,7 @@ msgstr "Users" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Failed to upgrade \"%s\"." @@ -74,7 +74,7 @@ msgstr "ZIP download is turned off." msgid "Files need to be downloaded one by one." msgstr "Files need to be downloaded one by one." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Back to Files" @@ -148,15 +148,15 @@ msgstr "Can't create app folder. Please fix permissions. %s" msgid "Application is not enabled" msgstr "Application is not enabled" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authentication error" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expired. Please reload page." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Unknown user" @@ -290,68 +290,68 @@ msgstr "%s shared \"%s\" with you" msgid "Could not find category \"%s\"" msgstr "Could not find category \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "seconds ago" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "today" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "yesterday" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n day go" msgstr[1] "%n days ago" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "last month" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "last year" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "years ago" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "A valid username must be provided" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "A valid password must be provided" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "The username is already being used" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index cc2da5a6ff1..c09c1b3e9c2 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -87,17 +87,17 @@ msgstr "Unable to add group" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Files decrypted successfully" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Couldn't decrypt your files, check your password and try again" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -521,8 +521,8 @@ msgid "Allow mail notification" msgstr "Allow mail notification" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index ff4d53a9b77..f3cc6ffede2 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 09:40+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -337,7 +337,7 @@ msgstr "Only connect to the replica server." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Case insensitive LDAP server (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/eo/core.po b/l10n/eo/core.po index b8d7904c2ab..50da857e625 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Agordo" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Konservante..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "antaŭ %n minuto" msgstr[1] "antaŭ %n minutoj" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "antaŭ %n horo" msgstr[1] "antaŭ %n horoj" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hodiaŭ" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "antaŭ %n tago" msgstr[1] "antaŭ %n tagoj" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "lastamonate" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "antaŭ %n monato" msgstr[1] "antaŭ %n monatoj" -#: js/js.js:1107 -msgid "months ago" -msgstr "monatoj antaŭe" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "lastajare" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "jaroj antaŭe" @@ -296,12 +292,12 @@ msgstr "Dividita" msgid "Share" msgstr "Kunhavigi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Eraro" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -365,71 +361,71 @@ msgstr "Kunhavigi per retpoŝto:" msgid "No people found" msgstr "Ne troviĝis gento" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Rekunhavigo ne permesatas" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Kunhavigita en {item} kun {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Malkunhavigi" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "avizi per retpoŝto" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "povas redakti" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "alirkontrolo" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "krei" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ĝisdatigi" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "forigi" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "kunhavigi" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Averto" @@ -457,7 +453,7 @@ msgstr "Redakti etikedojn" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Neniu etikedo elektitas por forigo." diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 76864720d2a..73a096c2838 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s ne povis alinomiĝi" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Alŝuti" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 4956bdbd6f3..b5865f264bc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/es/core.po b/l10n/es/core.po index 7d5a15c84f2..621c192338e 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -148,63 +148,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ajustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoy" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses antes" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "el año pasado" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "años antes" @@ -308,12 +304,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error al compartir" @@ -377,71 +373,71 @@ msgstr "Compartir por correo electrónico:" msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notificar por correo electrónico" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "puede editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control de acceso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crear" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "eliminar" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "compartir" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Correo electrónico enviado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Precaución" @@ -469,7 +465,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Error cargando plantilla de diálogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No hay etiquetas seleccionadas para borrar." diff --git a/l10n/es/files.po b/l10n/es/files.po index e58112bd597..9ea5a0b1796 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -316,8 +316,9 @@ msgid "%s could not be renamed" msgstr "%s no pudo ser renombrado" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Subir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 96c24139d36..e9254d48a3f 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -534,8 +534,8 @@ msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 2fd6e336532..aa1b502cbe3 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configuración" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoy" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses atrás" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "el año pasado" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "años atrás" @@ -296,12 +292,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error al compartir" @@ -365,71 +361,71 @@ msgstr "Compartir a través de e-mail:" msgid "No people found" msgstr "No se encontraron usuarios" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "No se permite volver a compartir" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notificar por correo" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "podés editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control de acceso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crear" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "borrar" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "compartir" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "e-mail mandado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Atención" @@ -457,7 +453,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Error cargando la plantilla de dialogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No se han seleccionado etiquetas para eliminar." diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index fdd48c933e9..490d277f87d 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "No se pudo renombrar %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Subir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 748f37b09e6..ec1a2c9acc8 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "Permitir notificaciones por correo" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir al usuario enviar notificaciones por correo para archivos compartidos" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index 34129f3ca73..0ea25ef3cb0 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -135,63 +135,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configuración" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoy" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mes anterior" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses antes" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "último año" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "años anteriores" @@ -295,12 +291,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Ocurrió un error mientras compartía" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/es_CL/files.po b/l10n/es_CL/files.po index 72fa40ee9c2..275606fec55 100644 --- a/l10n/es_CL/files.po +++ b/l10n/es_CL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Subir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po index c490d88121d..89776c457b6 100644 --- a/l10n/es_CL/settings.po +++ b/l10n/es_CL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/es_CR/core.po b/l10n/es_CR/core.po new file mode 100644 index 00000000000..bc873a13136 --- /dev/null +++ b/l10n/es_CR/core.po @@ -0,0 +1,805 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:87 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:119 ajax/share.php:161 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:10 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:13 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:16 +msgid "Updated database" +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:36 +msgid "Sunday" +msgstr "" + +#: js/config.php:37 +msgid "Monday" +msgstr "" + +#: js/config.php:38 +msgid "Tuesday" +msgstr "" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "" + +#: js/config.php:40 +msgid "Thursday" +msgstr "" + +#: js/config.php:41 +msgid "Friday" +msgstr "" + +#: js/config.php:42 +msgid "Saturday" +msgstr "" + +#: js/config.php:47 +msgid "January" +msgstr "" + +#: js/config.php:48 +msgid "February" +msgstr "" + +#: js/config.php:49 +msgid "March" +msgstr "" + +#: js/config.php:50 +msgid "April" +msgstr "" + +#: js/config.php:51 +msgid "May" +msgstr "" + +#: js/config.php:52 +msgid "June" +msgstr "" + +#: js/config.php:53 +msgid "July" +msgstr "" + +#: js/config.php:54 +msgid "August" +msgstr "" + +#: js/config.php:55 +msgid "September" +msgstr "" + +#: js/config.php:56 +msgid "October" +msgstr "" + +#: js/config.php:57 +msgid "November" +msgstr "" + +#: js/config.php:58 +msgid "December" +msgstr "" + +#: js/js.js:489 +msgid "Settings" +msgstr "" + +#: js/js.js:589 +msgid "Saving..." +msgstr "" + +#: js/js.js:1246 +msgid "seconds ago" +msgstr "" + +#: js/js.js:1247 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1248 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1249 +msgid "today" +msgstr "" + +#: js/js.js:1250 +msgid "yesterday" +msgstr "" + +#: js/js.js:1251 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1252 +msgid "last month" +msgstr "" + +#: js/js.js:1253 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1254 +msgid "last year" +msgstr "" + +#: js/js.js:1255 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:125 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:151 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:177 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:187 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:204 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:224 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:352 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:366 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:372 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:373 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:375 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:384 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:394 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:466 +msgid "Error loading file exists template" +msgstr "" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 +#: templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:790 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:188 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:190 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:214 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:220 +msgid "Share link" +msgstr "" + +#: js/share.js:223 +msgid "Password protect" +msgstr "" + +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 +msgid "Password" +msgstr "" + +#: js/share.js:230 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:234 +msgid "Email link to person" +msgstr "" + +#: js/share.js:235 +msgid "Send" +msgstr "" + +#: js/share.js:240 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:241 +msgid "Expiration date" +msgstr "" + +#: js/share.js:277 +msgid "Share via email:" +msgstr "" + +#: js/share.js:280 +msgid "No people found" +msgstr "" + +#: js/share.js:324 js/share.js:385 +msgid "group" +msgstr "" + +#: js/share.js:357 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:401 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:423 +msgid "Unshare" +msgstr "" + +#: js/share.js:431 +msgid "notify by email" +msgstr "" + +#: js/share.js:434 +msgid "can edit" +msgstr "" + +#: js/share.js:436 +msgid "access control" +msgstr "" + +#: js/share.js:439 +msgid "create" +msgstr "" + +#: js/share.js:442 +msgid "update" +msgstr "" + +#: js/share.js:445 +msgid "delete" +msgstr "" + +#: js/share.js:448 +msgid "share" +msgstr "" + +#: js/share.js:721 +msgid "Password protected" +msgstr "" + +#: js/share.js:734 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:752 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:777 +msgid "Sending ..." +msgstr "" + +#: js/share.js:788 +msgid "Email sent" +msgstr "" + +#: js/share.js:812 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:264 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +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 "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: setup/controller.php:140 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:144 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:116 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" + +#: templates/installation.php:77 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:90 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:94 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:118 +msgid "Database password" +msgstr "" + +#: templates/installation.php:123 +msgid "Database name" +msgstr "" + +#: templates/installation.php:132 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:140 +msgid "Database host" +msgstr "" + +#: templates/installation.php:150 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:150 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:46 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:51 +msgid "remember" +msgstr "" + +#: templates/login.php:54 +msgid "Log in" +msgstr "" + +#: templates/login.php:60 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/es_CR/files.po b/l10n/es_CR/files.po new file mode 100644 index 00000000000..0a682b7b72c --- /dev/null +++ b/l10n/es_CR/files.po @@ -0,0 +1,409 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:15 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:25 ajax/move.php:28 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:58 js/files.js:98 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:63 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" + +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:97 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:102 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:146 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:22 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:66 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:19 ajax/upload.php:57 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:33 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:75 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:82 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:83 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:85 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:86 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:87 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:88 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:89 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:107 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:169 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:179 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:194 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "" + +#: js/file-upload.js:254 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:266 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:276 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:353 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:398 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:490 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:555 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:559 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:561 js/filelist.js:585 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:613 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:626 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:666 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:164 +msgid "Share" +msgstr "" + +#: js/fileactions.js:177 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:238 +msgid "Rename" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "" + +#: js/filelist.js:251 js/filelist.js:1129 +msgid "Pending" +msgstr "" + +#: js/filelist.js:612 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:775 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:808 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:1037 js/filelist.js:1076 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:138 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:331 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:570 templates/index.php:67 +msgid "Name" +msgstr "" + +#: js/files.js:571 templates/index.php:79 +msgid "Size" +msgstr "" + +#: js/files.js:572 templates/index.php:81 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:93 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:14 templates/index.php:22 +#, php-format +msgid "Upload (max. %s)" +msgstr "" + +#: templates/admin.php:4 +msgid "File handling" +msgstr "" + +#: templates/admin.php:6 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:9 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:14 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:16 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:19 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:21 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:25 +msgid "Save" +msgstr "" + +#: templates/index.php:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "New folder" +msgstr "" + +#: templates/index.php:13 +msgid "Folder" +msgstr "" + +#: templates/index.php:16 +msgid "From link" +msgstr "" + +#: templates/index.php:40 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:45 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:51 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:56 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:73 +msgid "Download" +msgstr "" + +#: templates/index.php:84 templates/index.php:85 +msgid "Delete" +msgstr "" + +#: templates/index.php:96 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:98 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:103 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:106 +msgid "Current scanning" +msgstr "" diff --git a/l10n/es_CR/files_encryption.po b/l10n/es_CR/files_encryption.po new file mode 100644 index 00000000000..c2e3a2ba8c6 --- /dev/null +++ b/l10n/es_CR/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:65 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:2 templates/settings-personal.php:2 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:5 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:9 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:12 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:19 templates/settings-personal.php:50 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:27 templates/settings-personal.php:58 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:32 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:38 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:45 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:51 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:56 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:8 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:13 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:21 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:27 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:32 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:41 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:43 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:59 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/es_CR/files_external.po b/l10n/es_CR/files_external.po new file mode 100644 index 00000000000..267cf48a036 --- /dev/null +++ b/l10n/es_CR/files_external.po @@ -0,0 +1,136 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:68 js/google.js:89 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:102 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:45 js/google.js:122 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: js/settings.js:318 js/settings.js:325 +msgid "Saved" +msgstr "" + +#: lib/config.php:598 +msgid "Note: " +msgstr "" + +#: lib/config.php:608 +msgid " and " +msgstr "" + +#: lib/config.php:630 +#, php-format +msgid "" +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:632 +#, php-format +msgid "" +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:634 +#, php-format +msgid "" +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:2 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:27 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:9 +msgid "External storage" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Available for" +msgstr "" + +#: templates/settings.php:32 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:92 +msgid "No user or group" +msgstr "" + +#: templates/settings.php:95 +msgid "All Users" +msgstr "" + +#: templates/settings.php:97 +msgid "Groups" +msgstr "" + +#: templates/settings.php:105 +msgid "Users" +msgstr "" + +#: templates/settings.php:118 templates/settings.php:119 +#: templates/settings.php:158 templates/settings.php:159 +msgid "Delete" +msgstr "" + +#: templates/settings.php:132 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:135 +msgid "Allow users to mount the following external storage" +msgstr "" + +#: templates/settings.php:150 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:168 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/es_CR/files_sharing.po b/l10n/es_CR/files_sharing.po new file mode 100644 index 00000000000..904ff6bff9f --- /dev/null +++ b/l10n/es_CR/files_sharing.po @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/share.js:33 +msgid "Shared by {owner}" +msgstr "" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" +msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "" diff --git a/l10n/es_CR/files_trashbin.po b/l10n/es_CR/files_trashbin.po new file mode 100644 index 00000000000..4b692737a29 --- /dev/null +++ b/l10n/es_CR/files_trashbin.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/filelist.js:3 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 +msgid "Error" +msgstr "" + +#: js/trash.js:62 templates/index.php:22 templates/index.php:24 +msgid "Restore" +msgstr "" + +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:861 lib/trashbin.php:863 +msgid "restored" +msgstr "" + +#: templates/index.php:6 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:19 +msgid "Name" +msgstr "" + +#: templates/index.php:30 +msgid "Deleted" +msgstr "" + +#: templates/index.php:33 templates/index.php:34 +msgid "Delete" +msgstr "" diff --git a/l10n/es_CR/files_versions.po b/l10n/es_CR/files_versions.po new file mode 100644 index 00000000000..c057c867687 --- /dev/null +++ b/l10n/es_CR/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:39 +msgid "Versions" +msgstr "" + +#: js/versions.js:61 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:88 +msgid "More versions..." +msgstr "" + +#: js/versions.js:126 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:156 +msgid "Restore" +msgstr "" diff --git a/l10n/es_CR/lib.po b/l10n/es_CR/lib.po new file mode 100644 index 00000000000..e4276b217ee --- /dev/null +++ b/l10n/es_CR/lib.po @@ -0,0 +1,356 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:353 +msgid "Help" +msgstr "" + +#: private/app.php:366 +msgid "Personal" +msgstr "" + +#: private/app.php:377 +msgid "Settings" +msgstr "" + +#: private/app.php:389 +msgid "Users" +msgstr "" + +#: private/app.php:402 +msgid "Admin" +msgstr "" + +#: private/app.php:880 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: private/files.php:232 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:233 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:234 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:259 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:260 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:160 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:170 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:29 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:40 private/json.php:62 private/json.php:87 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/json.php:74 +msgid "Unknown user" +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:202 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:203 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:134 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:135 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:136 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:137 +msgid "today" +msgstr "" + +#: private/template/functions.php:138 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:140 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:142 +msgid "last month" +msgstr "" + +#: private/template/functions.php:143 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:145 +msgid "last year" +msgstr "" + +#: private/template/functions.php:146 +msgid "years ago" +msgstr "" + +#: private/user/manager.php:232 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:237 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:241 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:246 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/es_CR/settings.po b/l10n/es_CR/settings.po new file mode 100644 index 00000000000..a49c9deae0b --- /dev/null +++ b/l10n/es_CR/settings.po @@ -0,0 +1,838 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:299 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:336 +msgid "Authentication method" +msgstr "" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:17 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:36 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:68 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:73 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:81 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:86 changepassword/controller.php:97 +msgid "Unable to change password" +msgstr "" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 +msgid "Disable" +msgstr "" + +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 +msgid "Enable" +msgstr "" + +#: js/apps.js:95 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "" + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:152 +msgid "Error" +msgstr "" + +#: js/apps.js:153 templates/apps.php:55 +msgid "Update" +msgstr "" + +#: js/apps.js:156 +msgid "Updated" +msgstr "" + +#: js/personal.js:243 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:313 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "" + +#: js/users.js:310 +msgid "add group" +msgstr "" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:48 personal.php:49 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:47 templates/admin.php:61 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:50 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:64 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." +msgstr "" + +#: templates/admin.php:75 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:79 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:90 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:93 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:104 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:107 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:118 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:123 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:127 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:131 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:143 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:146 +msgid "" +"This 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." +msgstr "" + +#: templates/admin.php:160 +msgid "Cron" +msgstr "" + +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:192 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:200 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:205 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:211 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:212 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:219 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:220 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:227 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:228 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:235 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:236 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:243 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:246 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:253 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:254 +msgid "Allow users to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:261 +msgid "Security" +msgstr "" + +#: templates/admin.php:274 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:276 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:282 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:294 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:296 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:327 +msgid "From address" +msgstr "" + +#: templates/admin.php:349 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:353 +msgid "Server address" +msgstr "" + +#: templates/admin.php:357 +msgid "Port" +msgstr "" + +#: templates/admin.php:362 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:363 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:366 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:370 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:371 +msgid "Send email" +msgstr "" + +#: templates/admin.php:376 +msgid "Log" +msgstr "" + +#: templates/admin.php:377 +msgid "Log level" +msgstr "" + +#: templates/admin.php:409 +msgid "More" +msgstr "" + +#: templates/admin.php:410 +msgid "Less" +msgstr "" + +#: templates/admin.php:416 templates/personal.php:171 +msgid "Version" +msgstr "" + +#: templates/admin.php:420 templates/personal.php:174 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:14 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:31 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:38 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:43 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:49 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:51 +msgid "See application website" +msgstr "" + +#: templates/apps.php:53 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 +msgid "Password" +msgstr "" + +#: templates/personal.php:39 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:40 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:45 +msgid "New password" +msgstr "" + +#: templates/personal.php:49 +msgid "Change password" +msgstr "" + +#: templates/personal.php:61 templates/users.php:86 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:76 +msgid "Email" +msgstr "" + +#: templates/personal.php:78 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:81 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:89 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:94 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:96 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:97 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:98 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:100 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:104 +msgid "Cancel" +msgstr "" + +#: templates/personal.php:105 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:111 templates/personal.php:112 +msgid "Language" +msgstr "" + +#: templates/personal.php:131 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:151 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:157 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:162 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "" + +#: templates/users.php:28 +msgid "Create" +msgstr "" + +#: templates/users.php:34 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:64 templates/users.php:161 +msgid "Other" +msgstr "" + +#: templates/users.php:85 +msgid "Username" +msgstr "" + +#: templates/users.php:92 +msgid "Storage" +msgstr "" + +#: templates/users.php:106 +msgid "change full name" +msgstr "" + +#: templates/users.php:110 +msgid "set new password" +msgstr "" + +#: templates/users.php:141 +msgid "Default" +msgstr "" diff --git a/l10n/es_CR/user_ldap.po b/l10n/es_CR/user_ldap.po new file mode 100644 index 00000000000..851e23536fe --- /dev/null +++ b/l10n/es_CR/user_ldap.po @@ -0,0 +1,534 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:983 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitive LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:44 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:45 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:45 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:46 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:47 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:47 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:53 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:54 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:55 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:56 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:57 +msgid "" +"By default, the UUID attribute is automatically detected. 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 behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:58 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:59 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:60 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:61 +msgid "" +"Usernames are used 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 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. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/es_CR/user_webdavauth.po b/l10n/es_CR/user_webdavauth.po new file mode 100644 index 00000000000..479fa6b5460 --- /dev/null +++ b/l10n/es_CR/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:2 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:3 +msgid "Address: " +msgstr "" + +#: templates/settings.php:6 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 0bd714df555..50fd808eba7 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -134,63 +134,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ajustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoy" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses antes" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "el año pasado" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "años antes" @@ -294,12 +290,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error al compartir" @@ -363,71 +359,71 @@ msgstr "Compartir por correo electrónico:" msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notificar al usuario por correo electrónico" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "puede editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control de acceso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crear" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "eliminar" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "compartir" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Correo electrónico enviado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Precaución" @@ -455,7 +451,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Error cargando plantilla de diálogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No hay etiquetas seleccionadas para borrar." diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index aeb5e6cc2e5..76bbff5f42c 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "%s no pudo ser renombrado" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Subir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 35e71a9ae31..d94130c8657 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -520,8 +520,8 @@ msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 4a36dbbeeac..568a8dd44af 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Seaded" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Salvestamine..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut tagasi" msgstr[1] "%n minutit tagasi" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tund tagasi" msgstr[1] "%n tundi tagasi" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "täna" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "eile" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päev tagasi" msgstr[1] "%n päeva tagasi" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuu tagasi" msgstr[1] "%n kuud tagasi" -#: js/js.js:1107 -msgid "months ago" -msgstr "kuu tagasi" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "aastat tagasi" @@ -296,12 +292,12 @@ msgstr "Jagatud" msgid "Share" msgstr "Jaga" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Viga" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -365,71 +361,71 @@ msgstr "Jaga e-postiga:" msgid "No people found" msgstr "Ühtegi inimest ei leitud" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupp" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Edasijagamine pole lubatud" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Jagatud {item} kasutajaga {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "teavita e-postiga" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "saab muuta" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "ligipääsukontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "loo" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "uuenda" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "kustuta" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "jaga" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-kiri on saadetud" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Hoiatus" @@ -457,7 +453,7 @@ msgstr "Muuda silte" msgid "Error loading dialog template: {error}" msgstr "Viga dialoogi malli laadimisel: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Kustutamiseks pole ühtegi silti valitud." diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index dd21c64115f..6dd46cb0f2c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s ümbernimetamine ebaõnnestus" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Lae üles" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 3a21e4d2e57..8aa434c9821 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Luba teavitused e-postiga" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index f13fab969cd..118be3c55c7 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Gordetzen..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundu" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "gaur" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "atzo" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: js/js.js:1107 -msgid "months ago" -msgstr "hilabete" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "joan den urtean" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "urte" @@ -296,12 +292,12 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Errorea" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -365,71 +361,71 @@ msgstr "Elkarbanatu eposta bidez:" msgid "No people found" msgstr "Ez da inor aurkitu" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "taldea" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Berriz elkarbanatzea ez dago baimendua" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{user}ekin {item}-n elkarbanatuta" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "jakinarazi eposta bidez" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "editatu dezake" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "sarrera kontrola" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "sortu" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "eguneratu" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ezabatu" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "elkarbanatu" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Eposta bidalia" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Abisua" @@ -457,7 +453,7 @@ msgstr "Editatu etiketak" msgid "Error loading dialog template: {error}" msgstr "Errorea elkarrizketa txantiloia kargatzean: {errorea}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Ez dira ezabatzeko etiketak hautatu." diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 139d567f5f5..281fc74b73d 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s ezin da berrizendatu" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Igo" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index a66de5fe05a..68512ff41a1 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "Baimendu posta bidezko jakinarazpenak" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Baimendu erabiltzailea posta bidezko jakinarazpenak bidaltzen partekatutako fitxategietarako" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index 767e8da8b59..dff837b3f78 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Ezeztatu" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index ee74198632a..2d1e2e9f998 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index e0571110ac9..95737685dab 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 1eb4ee73498..3011d8ffd55 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,59 +135,55 @@ msgstr "نوامبر" msgid "December" msgstr "دسامبر" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "در حال ذخیره سازی..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "امروز" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "دیروز" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ماه قبل" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "ماه‌های قبل" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "سال قبل" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "سال‌های قبل" @@ -290,12 +286,12 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراک‌گذاری" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "خطا" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" @@ -359,71 +355,71 @@ msgstr "از طریق ایمیل به اشتراک بگذارید :" msgid "No people found" msgstr "کسی یافت نشد" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "گروه" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "اشتراک گذاری مجدد مجاز نمی باشد" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "لغو اشتراک" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "می توان ویرایش کرد" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "کنترل دسترسی" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "ایجاد" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "به روز" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "پاک کردن" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "ایمیل ارسال شد" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "اخطار" @@ -451,7 +447,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 969a816852d..938b248e100 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -305,8 +305,9 @@ msgid "%s could not be renamed" msgstr "%s نمیتواند تغییر نام دهد." #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "بارگزاری" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 6a301250d5c..52107ad5133 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "مجاز نمودن اطلاع رسانی توسط ایمیل" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "مجاز نمودن ارسال ایمیل توسط کاربر برای فایل‌های به اشتراک گذاشته شده" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 766a2aee427..85365774190 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -137,63 +137,59 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Asetukset" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Tallennetaan..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "tänään" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "eilen" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "viime kuussa" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: js/js.js:1107 -msgid "months ago" -msgstr "kuukautta sitten" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "viime vuonna" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "vuotta sitten" @@ -297,12 +293,12 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Virhe" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -366,71 +362,71 @@ msgstr "Jaa sähköpostilla:" msgid "No people found" msgstr "Henkilöitä ei löytynyt" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "ryhmä" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Jakaminen uudelleen ei ole salittu" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{item} on jaettu {user} kanssa" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Peru jakaminen" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "ilmoita sähköpostitse" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "voi muokata" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Pääsyn hallinta" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "luo" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "päivitä" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "poista" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "jaa" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Sähköposti lähetetty" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Varoitus" @@ -458,7 +454,7 @@ msgstr "Muokkaa tunnisteita" msgid "Error loading dialog template: {error}" msgstr "Virhe ladatessa keskustelupohja: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Tunnisteita ei valittu poistettavaksi." diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index aebd22bd7fd..6cf56c8282b 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "kohteen %s nimeäminen uudelleen epäonnistui" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Lähetä" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index c1d806b8df3..a29b87e036b 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,8 +521,8 @@ msgid "Allow mail notification" msgstr "Salli sähköposti-ilmoitukset" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 177563180d1..bf908d51b70 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -142,63 +142,59 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Paramètres" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Enregistrement..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "il y a %n minute" msgstr[1] "il y a %n minutes" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Il y a %n heure" msgstr[1] "Il y a %n heures" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "aujourd'hui" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "hier" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "il y a %n jour" msgstr[1] "il y a %n jours" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "le mois dernier" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Il y a %n mois" msgstr[1] "Il y a %n mois" -#: js/js.js:1107 -msgid "months ago" -msgstr "il y a plusieurs mois" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "l'année dernière" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "il y a plusieurs années" @@ -302,12 +298,12 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Erreur" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -371,71 +367,71 @@ msgstr "Partager via e-mail :" msgid "No people found" msgstr "Aucun utilisateur trouvé" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "groupe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Le repartage n'est pas autorisé" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Partagé dans {item} avec {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Ne plus partager" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Notifier par email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "édition autorisée" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "contrôle des accès" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "créer" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "mettre à jour" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "supprimer" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "partager" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email envoyé" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Attention" @@ -463,7 +459,7 @@ msgstr "Modifier les balises" msgid "Error loading dialog template: {error}" msgstr "Erreur de chargement du modèle de dialogue : {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Aucune balise sélectionnée pour la suppression." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index f82038376f9..84a033faa67 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -311,8 +311,9 @@ msgid "%s could not be renamed" msgstr "%s ne peut être renommé" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Envoyer" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index f2b3a03c20b..ab5c1b50a56 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: RyDroid \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -531,8 +531,8 @@ msgid "Allow mail notification" msgstr "Autoriser les notifications par couriel" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/fr_CA/core.po b/l10n/fr_CA/core.po index cc4a62b68dd..53de5d6a0db 100644 --- a/l10n/fr_CA/core.po +++ b/l10n/fr_CA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/fr_CA/files.po b/l10n/fr_CA/files.po index 72448b63f63..892e66ce56c 100644 --- a/l10n/fr_CA/files.po +++ b/l10n/fr_CA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/fr_CA/settings.po b/l10n/fr_CA/settings.po index dab733306ef..f1172880703 100644 --- a/l10n/fr_CA/settings.po +++ b/l10n/fr_CA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 75ebd80fdfc..4485652cebc 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-19 01:55-0400\n" -"PO-Revision-Date: 2014-04-18 11:20+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Axustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Gardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "hai %n minuto" msgstr[1] "hai %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "hai %n hora" msgstr[1] "hai %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoxe" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "onte" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "hai %n día" msgstr[1] "vai %n días" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "último mes" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "hai %n mes" msgstr[1] "hai %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses atrás" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "último ano" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anos atrás" @@ -457,7 +453,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Produciuse un erro ao cargar o modelo do dialogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Non se seleccionaron etiquetas para borrado." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 6d21e746148..a7930014cc1 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s non pode cambiar de nome" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Enviar" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 2b8f1ed4fb3..03e60c26d9c 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Permitir o envío de notificacións por correo" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir que os usuarios envíen notificacións por correo dos ficheiros compartidos" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/he/core.po b/l10n/he/core.po index 0d82a12dc92..e1f1cdc21e1 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "נובמבר" msgid "December" msgstr "דצמבר" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "הגדרות" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "שמירה…" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "שניות" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "לפני %n דקה" msgstr[1] "לפני %n דקות" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "לפני %n שעה" msgstr[1] "לפני %n שעות" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "היום" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "אתמול" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "לפני %n יום" msgstr[1] "לפני %n ימים" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "לפני %n חודש" msgstr[1] "לפני %n חודשים" -#: js/js.js:1107 -msgid "months ago" -msgstr "חודשים" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "שנים" @@ -296,12 +292,12 @@ msgstr "שותף" msgid "Share" msgstr "שתף" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "שגיאה" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -365,71 +361,71 @@ msgstr "שיתוף באמצעות דוא״ל:" msgid "No people found" msgstr "לא נמצאו אנשים" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "קבוצה" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "אסור לעשות שיתוף מחדש" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "שותף תחת {item} עם {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "הסר שיתוף" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "ניתן לערוך" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "בקרת גישה" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "יצירה" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "עדכון" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "מחיקה" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "שיתוף" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "אזהרה" @@ -457,7 +453,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/he/files.po b/l10n/he/files.po index ad260a38e13..bb48eacb83f 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "העלאה" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 3445981b768..a28368def9c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 571197dfa46..2ec39b52353 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "नवंबर" msgid "December" msgstr "दिसम्बर" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -296,12 +292,12 @@ msgstr "" msgid "Share" msgstr "साझा करें" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "त्रुटि" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -365,71 +361,71 @@ msgstr "" msgid "No people found" msgstr "कोई व्यक्ति नहीं मिले " -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "भेजा जा रहा है" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "ईमेल भेज दिया गया है " -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "चेतावनी " @@ -457,7 +453,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index e67b344c20e..96c95a364f7 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "अपलोड " +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index e529f84564b..359c0fbdfd4 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 739b25a88d9..b8629d3634f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,67 +134,63 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Postavke" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Spremanje..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "danas" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "jučer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "mjeseci" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "godina" @@ -299,12 +295,12 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Greška" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -368,71 +364,71 @@ msgstr "Dijeli preko email-a:" msgid "No people found" msgstr "Osobe nisu pronađene" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Ponovo dijeljenje nije dopušteno" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Makni djeljenje" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "može mjenjat" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "kreiraj" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ažuriraj" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "izbriši" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "djeli" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -460,7 +456,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 0074b6dec57..530f648abb4 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Učitaj" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 16655c2363c..7701040cd59 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index b37aaff518e..1169062c0ed 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -137,63 +137,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Beállítások" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Mentés..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n perccel ezelőtt" msgstr[1] "%n perccel ezelőtt" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n órával ezelőtt" msgstr[1] "%n órával ezelőtt" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "ma" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "tegnap" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n nappal ezelőtt" msgstr[1] "%n nappal ezelőtt" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n hónappal ezelőtt" msgstr[1] "%n hónappal ezelőtt" -#: js/js.js:1107 -msgid "months ago" -msgstr "több hónapja" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "tavaly" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "több éve" @@ -297,12 +293,12 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Hiba" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" @@ -366,71 +362,71 @@ msgstr "Megosztás emaillel:" msgid "No people found" msgstr "Nincs találat" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "csoport" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Megosztva {item}-ben {user}-rel" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "A megosztás visszavonása" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "email értesítés" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "módosíthat" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "jogosultság" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "létrehoz" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "szerkeszt" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "töröl" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "megoszt" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Az emailt elküldtük" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Figyelmeztetés" @@ -458,7 +454,7 @@ msgstr "Címkék szerkesztése" msgid "Error loading dialog template: {error}" msgstr "Hiba a párbeszédpanel-sablon betöltésekor: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nincs törlésre kijelölt címke." diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 1dc8cba47ab..b3717afaecf 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s átnevezése nem sikerült" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Feltöltés" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index ca7929dce22..8fadff9a291 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "E-mail értesítések engedélyezése" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Engedélyezi, hogy a felhasználók e-mail értesítést küldhessenek a megosztott fájlokról." +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 92b8b8c3854..dc7320cd4d5 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,135 +134,131 @@ msgstr "Նոյեմբեր" msgid "December" msgstr "Դեկտեմբեր" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 83025c434df..4a376c61895 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index b2d395b9e79..ff928e69b36 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ia/core.po b/l10n/ia/core.po index a269263e659..4df7c41aab0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configurationes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Leva compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pote modificar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 3110f2fd877..8d845151f71 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Incargar" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 96587324349..4d49d8b7bd6 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/id/core.po b/l10n/id/core.po index 2ba78033e39..b0a81a4b5b6 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Pengaturan" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Menyimpan..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n menit yang lalu" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n jam yang lalu" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hari ini" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "kemarin" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n hari yang lalu" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n bulan yang lalu" -#: js/js.js:1107 -msgid "months ago" -msgstr "beberapa bulan lalu" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "beberapa tahun lalu" @@ -289,12 +285,12 @@ msgstr "Dibagikan" msgid "Share" msgstr "Bagikan" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Galat" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Galat ketika membagikan" @@ -358,71 +354,71 @@ msgstr "Bagian lewat email:" msgid "No people found" msgstr "Tidak ada orang ditemukan" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grup" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Berbagi ulang tidak diizinkan" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Dibagikan dalam {item} dengan {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Batalkan berbagi" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notifikasi via email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "dapat sunting" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrol akses" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "buat" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "perbarui" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "hapus" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "bagikan" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Sandi dilindungi" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Galat ketika mengatur tanggal kedaluwarsa" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email terkirim" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Peringatan" @@ -450,7 +446,7 @@ msgstr "Sunting tag" msgid "Error loading dialog template: {error}" msgstr "Galat memuat templat dialog: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Tidak ada tag yang terpilih untuk dihapus." diff --git a/l10n/id/files.po b/l10n/id/files.po index 7b7f991bc78..2344f6033d8 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -304,8 +304,9 @@ msgid "%s could not be renamed" msgstr "%s tidak dapat diubah nama" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Unggah" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 1c9446d3d26..c1fe83f4b4d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,8 +520,8 @@ msgid "Allow mail notification" msgstr "Izinkan pemberitahuan email" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Izinkan pengguna mengirim pemberitahuan email pada berkas yang dibagikan" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/is/core.po b/l10n/is/core.po index e1f48b77a89..fd246d9bcad 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,63 +135,59 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Stillingar" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Er að vista ..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sek." -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "í dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "í gær" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "mánuðir síðan" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "síðasta ári" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "einhverjum árum" @@ -295,12 +291,12 @@ msgstr "Deilt" msgid "Share" msgstr "Deila" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Villa" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Villa við deilingu" @@ -364,71 +360,71 @@ msgstr "Deila með tölvupósti:" msgid "No people found" msgstr "Engir notendur fundust" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Endurdeiling er ekki leyfð" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Deilt með {item} ásamt {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Hætta deilingu" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "getur breytt" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "aðgangsstýring" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "mynda" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "uppfæra" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "eyða" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "deila" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Tölvupóstur sendur" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Aðvörun" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/is/files.po b/l10n/is/files.po index 9453eebd352..cdaed9930ac 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Senda inn" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 3e64391c268..5ed711d9c12 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/it/core.po b/l10n/it/core.po index 02025132f43..1f492f01723 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,63 +138,59 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Salvataggio in corso..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "oggi" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ieri" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mese scorso" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: js/js.js:1107 -msgid "months ago" -msgstr "mesi fa" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "anno scorso" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anni fa" @@ -298,12 +294,12 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Errore" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -367,71 +363,71 @@ msgstr "Condividi tramite email:" msgid "No people found" msgstr "Non sono state trovate altre persone" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "La ri-condivisione non è consentita" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Condiviso in {item} con {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notifica tramite email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "può modificare" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "controllo d'accesso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "creare" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aggiornare" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "elimina" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "condividi" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Messaggio inviato" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Avviso" @@ -459,7 +455,7 @@ msgstr "Modifica etichette" msgid "Error loading dialog template: {error}" msgstr "Errore durante il caricamento del modello di finestra: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nessuna etichetta selezionata per l'eliminazione." diff --git a/l10n/it/files.po b/l10n/it/files.po index 82da73f8ebf..487dde50100 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s non può essere rinominato" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Carica" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 2df8f3a8210..13bbcdee323 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Consenti le notifiche tramite posta elettronica" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ja/core.po b/l10n/ja/core.po index cf2f3a1df32..18f71bf6148 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -140,59 +140,55 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "設定" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "保存中..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分前" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 時間前" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "今日" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "昨日" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n日前" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "1ヶ月前" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%nヶ月前" -#: js/js.js:1107 -msgid "months ago" -msgstr "数ヶ月前" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "1年前" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "数年前" @@ -295,12 +291,12 @@ msgstr "共有中" msgid "Share" msgstr "共有" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "エラー" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -364,71 +360,71 @@ msgstr "メール経由で共有:" msgid "No people found" msgstr "ユーザーが見つかりません" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "グループ" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "再共有は許可されていません" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{item} 内で {user} と共有中" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "共有解除" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "メールで通知" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "編集を許可" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "アクセス権限" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "作成" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "アップデート" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "削除" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "共有" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "メールを送信しました" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "警告" @@ -456,7 +452,7 @@ msgstr "タグを編集" msgid "Error loading dialog template: {error}" msgstr "メッセージテンプレートの読み込みエラー: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "削除するタグが選択されていません。" diff --git a/l10n/ja/files.po b/l10n/ja/files.po index 2b916be565a..cc1723751b1 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%sの名前を変更できませんでした" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "アップロード" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index cf815cf2875..449ce5efff8 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -525,8 +525,8 @@ msgid "Allow mail notification" msgstr "メール通知を許可" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "共有ファイルに関するメール通知の送信をユーザーに許可する" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/jv/core.po b/l10n/jv/core.po index 17dbc1170a8..64f25812fdb 100644 --- a/l10n/jv/core.po +++ b/l10n/jv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/jv/files.po b/l10n/jv/files.po index 010013ec49a..5b2f6e443bb 100644 --- a/l10n/jv/files.po +++ b/l10n/jv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 17:00+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/jv/settings.po b/l10n/jv/settings.po index fad4b719109..fe9b21e6e5c 100644 --- a/l10n/jv/settings.po +++ b/l10n/jv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index c8b1e65a00f..41fcdca0f53 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "ნოემბერი" msgid "December" msgstr "დეკემბერი" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "შენახვა..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "დღეს" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "თვის წინ" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "წლის წინ" @@ -289,12 +285,12 @@ msgstr "გაზიარებული" msgid "Share" msgstr "გაზიარება" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "შეცდომა" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -358,71 +354,71 @@ msgstr "გააზიარე მეილზე" msgid "No people found" msgstr "მომხმარებელი არ არის ნაპოვნი" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "ჯგუფი" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "მეორეჯერ გაზიარება არ არის დაშვებული" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "გაზიარდა {item}–ში {user}–ის მიერ" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "გაუზიარებადი" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "შეგიძლია შეცვლა" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "დაშვების კონტროლი" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "შექმნა" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "განახლება" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "წაშლა" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "გაზიარება" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "იმეილი გაიგზავნა" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "გაფრთხილება" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 9a05853f50b..92c896554ff 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "ატვირთვა" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index f4d3be05884..63260285df5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/km/core.po b/l10n/km/core.po index 15f1347c385..087b7e596ad 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -135,59 +135,55 @@ msgstr "ខែវិច្ឆិកា" msgid "December" msgstr "ខែធ្នូ" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "ការកំណត់" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "កំពុង​រក្សាទុក" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "វិនាទី​មុន" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n នាទី​មុន" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ម៉ោង​មុន" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "ថ្ងៃនេះ" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ម្សិលមិញ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ថ្ងៃ​មុន" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ខែមុន" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ខែ​មុន" -#: js/js.js:1107 -msgid "months ago" -msgstr "ខែ​មុន" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ឆ្នាំ​មុន" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ឆ្នាំ​មុន" @@ -290,12 +286,12 @@ msgstr "បាន​ចែក​រំលែក" msgid "Share" msgstr "ចែក​រំលែក" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "កំហុស" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "កំហុស​ពេល​ចែក​រំលែក" @@ -359,71 +355,71 @@ msgstr "ចែក​រំលែក​តាម​អ៊ីមែល៖" msgid "No people found" msgstr "រក​មិន​ឃើញ​មនុស្ស​ណា​ម្នាក់" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "ក្រុម" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "មិន​អនុញ្ញាត​ឲ្យ​មាន​ការ​ចែក​រំលែក​ឡើង​វិញ" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "បាន​ចែក​រំលែក​ក្នុង {item} ជាមួយ {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "លែង​ចែក​រំលែក" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "អាច​កែប្រែ" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "សិទ្ធិ​បញ្ជា" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "បង្កើត" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ធ្វើ​បច្ចុប្បន្នភាព" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "លុប" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "ចែក​រំលែក" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "បាន​ការ​ពារ​ដោយ​ពាក្យ​សម្ងាត់" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "កំពុង​ផ្ញើ ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "បាន​ផ្ញើ​អ៊ីមែល" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "បម្រាម" @@ -451,7 +447,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/km/files.po b/l10n/km/files.po index 3a2dbcd7c21..16c907800e2 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "ផ្ទុក​ឡើង" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index e4144427d51..23a00b4f698 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -522,7 +522,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 0d2fc8f5d55..77ca23e3f58 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,130 +134,126 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 0476da9576d..2ff94b7e645 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index c8d82c665e4..7249040d4fc 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 3cccdaed7a6..302d5860f1c 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -141,59 +141,55 @@ msgstr "11월" msgid "December" msgstr "12월" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "설정" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "저장 중..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "초 전" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n분 전 " -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "오늘" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "어제" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n일 전 " -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "지난 달" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n달 전 " -#: js/js.js:1107 -msgid "months ago" -msgstr "개월 전" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "작년" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "년 전" @@ -296,12 +292,12 @@ msgstr "공유됨" msgid "Share" msgstr "공유" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "오류" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -365,71 +361,71 @@ msgstr "이메일로 공유:" msgid "No people found" msgstr "발견된 사람 없음" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "그룹" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "다시 공유할 수 없습니다" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{user} 님과 {item}에서 공유 중" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "공유 해제" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "이메일로 알림" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "편집 가능" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "접근 제어" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "생성" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "업데이트" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "삭제" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "공유" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "이메일 발송됨" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "경고" @@ -457,7 +453,7 @@ msgstr "태그 편집" msgid "Error loading dialog template: {error}" msgstr "대화 상자 템플릿을 불러오는 중 오류 발생: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "삭제할 태그를 선택하지 않았습니다." diff --git a/l10n/ko/files.po b/l10n/ko/files.po index a186b4fa9be..d66a039e178 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "%s의 이름을 변경할 수 없습니다" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "업로드" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 8ebaba25f09..2c0186c6f76 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -525,8 +525,8 @@ msgid "Allow mail notification" msgstr "메일 알림 허용" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "사용자에게 공유 파일에 대한 메일 알림을 허용합니다" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 54a062281ae..b27679a5290 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "هاوبەشی کردن" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "هه‌ڵه" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "ئاگاداری" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 854076585ab..48266f0cc6b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "بارکردن" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index fa631b8021f..ac3dc088f0a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/lb/core.po b/l10n/lb/core.po index aae46a0cf88..7b83600de6a 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Astellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Speicheren..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n Minutt hir" msgstr[1] "%n Minutten hir" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "haut" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "gëschter" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "leschte Mount" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "Méint hir" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Joren hir" @@ -296,12 +292,12 @@ msgstr "Gedeelt" msgid "Share" msgstr "Deelen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Feeler" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Feeler beim Deelen" @@ -365,71 +361,71 @@ msgstr "Via E-Mail deelen:" msgid "No people found" msgstr "Keng Persoune fonnt" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Grupp" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Weiderdeelen ass net erlaabt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Gedeelt an {item} mat {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Net méi deelen" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "via e-mail Bescheed ginn" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kann änneren" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Zougrëffskontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "erstellen" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualiséieren" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "läschen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "deelen" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passwuertgeschützt" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email geschéckt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warnung" @@ -457,7 +453,7 @@ msgstr "Tags editéieren" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index c2a3c2079ad..7c7f917f67b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Eroplueden" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 6d37f4bd60a..2f42e135ceb 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 3b56f1e5fa6..43b150af1af 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -139,67 +139,63 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Saugoma..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " prieš %n minutę" msgstr[1] " prieš %n minučių" msgstr[2] " prieš %n minučių" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "prieš %n valandą" msgstr[1] "prieš %n valandų" msgstr[2] "prieš %n valandų" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "šiandien" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "vakar" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "prieš %n dieną" msgstr[1] "prieš %n dienas" msgstr[2] "prieš %n dienų" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "prieš %n mėnesį" msgstr[1] "prieš %n mėnesius" msgstr[2] "prieš %n mėnesių" -#: js/js.js:1107 -msgid "months ago" -msgstr "prieš mėnesį" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "praeitais metais" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "prieš metus" @@ -304,12 +300,12 @@ msgstr "Dalinamasi" msgid "Share" msgstr "Dalintis" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Klaida" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -373,71 +369,71 @@ msgstr "Dalintis per el. paštą:" msgid "No people found" msgstr "Žmonių nerasta" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupė" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Dalijinasis išnaujo negalimas" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Pasidalino {item} su {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Nebesidalinti" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "pranešti el. paštu" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "gali redaguoti" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "priėjimo kontrolė" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "sukurti" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "atnaujinti" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ištrinti" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "dalintis" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Laiškas išsiųstas" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Įspėjimas" @@ -465,7 +461,7 @@ msgstr "Redaguoti žymes" msgid "Error loading dialog template: {error}" msgstr "Klaida įkeliant dialogo ruošinį: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Trynimui nepasirinkta jokia žymė." diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index e6d1e3c0007..c0027ad3215 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -312,8 +312,9 @@ msgid "%s could not be renamed" msgstr "%s negali būti pervadintas" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Įkelti" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 9d6419643c1..1d104c21979 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -525,8 +525,8 @@ msgid "Allow mail notification" msgstr "Leisti el. pašto perspėjimą" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Leisti naudotojui siųsti perspėjimą el. laišku dėl bendrinamų failų" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 2d6b65f4cce..57162fa281f 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,67 +135,63 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Saglabā..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Tagad, %n minūtes" msgstr[1] "Pirms %n minūtes" msgstr[2] "Pirms %n minūtēm" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Šodien, %n stundas" msgstr[1] "Pirms %n stundas" msgstr[2] "Pirms %n stundām" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "šodien" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "vakar" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Šodien, %n dienas" msgstr[1] "Pirms %n dienas" msgstr[2] "Pirms %n dienām" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Šomēnes, %n mēneši" msgstr[1] "Pirms %n mēneša" msgstr[2] "Pirms %n mēnešiem" -#: js/js.js:1107 -msgid "months ago" -msgstr "mēnešus atpakaļ" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "gadus atpakaļ" @@ -300,12 +296,12 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Kļūda" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Kļūda, daloties" @@ -369,71 +365,71 @@ msgstr "Dalīties, izmantojot e-pastu:" msgid "No people found" msgstr "Nav atrastu cilvēku" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupa" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Atkārtota dalīšanās nav atļauta" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Dalījās ar {item} ar {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "var rediģēt" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "piekļuves vadība" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "izveidot" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "atjaunināt" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "dzēst" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "dalīties" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Vēstule nosūtīta" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Brīdinājums" @@ -461,7 +457,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 65a97c0e0f3..d1c39d7bb3e 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s nevar tikt pārsaukts" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Augšupielādēt" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 7f9f66604d2..8a4ea7c52b4 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 2152495b4dc..b46bd8c51e4 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,63 +135,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Подесувања" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Снимам..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "денеска" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "вчера" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "минатиот месец" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "пред месеци" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "минатата година" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "пред години" @@ -295,12 +291,12 @@ msgstr "Споделен" msgid "Share" msgstr "Сподели" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -364,71 +360,71 @@ msgstr "Сподели по е-пошта:" msgid "No people found" msgstr "Не се најдени луѓе" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "група" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Повторно споделување не е дозволено" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Споделено во {item} со {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Не споделувај" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "извести преку електронска пошта" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "може да се измени" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "контрола на пристап" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "креирај" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ажурирај" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "избриши" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "сподели" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Е-порака пратена" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Предупредување" @@ -456,7 +452,7 @@ msgstr "Уреди ги таговите" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Не се селектирани тагови за бришење." diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 1a227389c39..60288a5f0c9 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s не може да биде преименуван" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Подигни" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 1082dea6643..66c5b91e912 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,8 +521,8 @@ msgid "Allow mail notification" msgstr "Овозможи известување по електронска пошта" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Овозможи корисник да испраќа известување по електронска пошта за споделени датотеки" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ml/core.po b/l10n/ml/core.po index 23e35f07f39..bc9734a0751 100644 --- a/l10n/ml/core.po +++ b/l10n/ml/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ml/files.po b/l10n/ml/files.po index 6d8c4b14482..833a2dc55d7 100644 --- a/l10n/ml/files.po +++ b/l10n/ml/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ml/settings.po b/l10n/ml/settings.po index 648904e1221..873ea5feae6 100644 --- a/l10n/ml/settings.po +++ b/l10n/ml/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index fc5ab544f59..bb6ef01bf7c 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index 73eaed182fe..d2182dd3d02 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po index 31883d001e2..8dabc76b3d7 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/mn/core.po b/l10n/mn/core.po index f6d739d99cc..c2ebf099696 100644 --- a/l10n/mn/core.po +++ b/l10n/mn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/mn/files.po b/l10n/mn/files.po index a1d5b8b6598..d42551ca825 100644 --- a/l10n/mn/files.po +++ b/l10n/mn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/mn/settings.po b/l10n/mn/settings.po index 122a7b465ec..aab6d4b79f6 100644 --- a/l10n/mn/settings.po +++ b/l10n/mn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 276b33c5f54..a54952683d0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Tetapan" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Simpan..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "Kongsi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Ralat" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Amaran" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index fca9d7124c0..340a13a8c63 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Muat naik" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index a13c96d9be0..0bb3d17d5dd 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 4c8f0dee364..3d2f6e540d9 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,130 +134,126 @@ msgstr "နိုဝင်ဘာ" msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "ယနေ့" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "နှစ် အရင်က" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "ရွေးချယ်" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "ဟုတ်" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "မဟုတ်ဘူး" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "အိုကေ" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "ပယ်ဖျက်မည်" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "ပြင်ဆင်နိုင်" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "ဖန်တီးမည်" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "ဖျက်မည်" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index d9b7a04a282..97826d20d6d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "ဖိုင်များ" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 0776a88e668..f4a4215acd9 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 6709e9a7d63..4ebea6e5d88 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,63 +138,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Lagrer..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt siden" msgstr[1] "%n minutter siden" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "i dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "i går" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dager siden" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "forrige måned" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n dag siden" msgstr[1] "%n dager siden" -#: js/js.js:1107 -msgid "months ago" -msgstr "måneder siden" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "i fjor" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "år siden" @@ -298,12 +294,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Feil" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Feil under deling" @@ -367,71 +363,71 @@ msgstr "Del på epost" msgid "No people found" msgstr "Ingen personer funnet" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Videredeling er ikke tillatt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Avslutt deling" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Varsle på email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan endre" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "opprett" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "oppdater" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "slett" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "del" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Feil ved nullstilling av utløpsdato" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Advarsel" @@ -459,7 +455,7 @@ msgstr "Rediger merkelapper" msgid "Error loading dialog template: {error}" msgstr "Feil ved lasting av dialogmal: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Ingen merkelapper valgt for sletting." diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 41161d166d8..66c6511bd35 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "Kunne ikke gi nytt navn til %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Last opp" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 1847b9020b4..d109f8b390a 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Tillat påminnelser i e-post" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Tillat at brukere sender epost-påminnelser for delte filer" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/nds/core.po b/l10n/nds/core.po index 93b4795b345..9ce7cea032c 100644 --- a/l10n/nds/core.po +++ b/l10n/nds/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/nds/files.po b/l10n/nds/files.po index 734a69de904..9798a89bf08 100644 --- a/l10n/nds/files.po +++ b/l10n/nds/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/nds/settings.po b/l10n/nds/settings.po index bf175932a29..9ab6b674d29 100644 --- a/l10n/nds/settings.po +++ b/l10n/nds/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ne/core.po b/l10n/ne/core.po index be84d374419..eccb8156098 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index a36e68e7d45..368e981636c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index e84cb840e89..74a3a50b03f 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/nl/core.po b/l10n/nl/core.po index e3fa48b58cc..f79ca47c00c 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -137,63 +137,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Instellingen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Opslaan" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuten geleden" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n uur geleden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "vandaag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "gisteren" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagen geleden" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "vorige maand" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n maanden geleden" -#: js/js.js:1107 -msgid "months ago" -msgstr "maanden geleden" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "vorig jaar" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "jaar geleden" @@ -297,12 +293,12 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fout" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -366,71 +362,71 @@ msgstr "Deel via e-mail:" msgid "No people found" msgstr "Geen mensen gevonden" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "groep" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Verder delen is niet toegestaan" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Gedeeld in {item} met {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Stop met delen" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "melden per e-mail" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan wijzigen" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "toegangscontrole" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "creëer" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "bijwerken" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "verwijderen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "deel" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail verzonden" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Waarschuwing" @@ -458,7 +454,7 @@ msgstr "Bewerken tags" msgid "Error loading dialog template: {error}" msgstr "Fout bij laden dialoog sjabloon: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Geen tags geselecteerd voor verwijdering." diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 07f271d5b96..4a28f3f9cec 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s kon niet worden hernoemd" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Uploaden" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index ee2474973c6..aa5c19bc229 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Toestaan e-mailnotificaties" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index f5053b3197c..ad0c0b98136 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -137,63 +137,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Lagrar …" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt sidan" msgstr[1] "%n minutt sidan" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time sidan" msgstr[1] "%n timar sidan" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "i dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "i går" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sidan" msgstr[1] "%n dagar sidan" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "førre månad" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sidan" msgstr[1] "%n månadar sidan" -#: js/js.js:1107 -msgid "months ago" -msgstr "månadar sidan" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "i fjor" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "år sidan" @@ -297,12 +293,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Feil" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Feil ved deling" @@ -366,71 +362,71 @@ msgstr "Del over e-post:" msgid "No people found" msgstr "Fann ingen personar" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Vidaredeling er ikkje tillate" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {brukar}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Udel" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan endra" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "lag" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "oppdater" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "slett" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "del" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passordverna" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Åtvaring" @@ -458,7 +454,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 279c018f4be..0efab54f712 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "Klarte ikkje å omdøypa på %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Last opp" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 71b46c3fe48..28284ea31b4 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,7 +523,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/nqo/core.po b/l10n/nqo/core.po index ebd63b4cd6b..654b95dd281 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -134,130 +134,126 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/nqo/files.po b/l10n/nqo/files.po index abf737189e4..f07a5aa64b7 100644 --- a/l10n/nqo/files.po +++ b/l10n/nqo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/nqo/settings.po b/l10n/nqo/settings.po index 5dcb3b4cdb9..d59a28ea0d1 100644 --- a/l10n/nqo/settings.po +++ b/l10n/nqo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/oc/core.po b/l10n/oc/core.po index e083a731ff1..fada9753248 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configuracion" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Enregistra..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "uèi" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ièr" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mes passat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses a" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "an passat" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ans a" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "Parteja" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error al partejar" @@ -363,71 +359,71 @@ msgstr "Parteja tras corrièl :" msgid "No people found" msgstr "Deguns trobat" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grop" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Tornar partejar es pas permis" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Pas partejador" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pòt modificar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Contraròtle d'acces" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crea" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "met a jorn" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "escafa" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "parteja" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 2162cf81690..d74ed7c5722 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Amontcarga" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index f7f91820ef4..3678b57ca92 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/or_IN/core.po b/l10n/or_IN/core.po new file mode 100644 index 00000000000..fedef0897a2 --- /dev/null +++ b/l10n/or_IN/core.po @@ -0,0 +1,805 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:87 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:119 ajax/share.php:161 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:10 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:13 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:16 +msgid "Updated database" +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:36 +msgid "Sunday" +msgstr "" + +#: js/config.php:37 +msgid "Monday" +msgstr "" + +#: js/config.php:38 +msgid "Tuesday" +msgstr "" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "" + +#: js/config.php:40 +msgid "Thursday" +msgstr "" + +#: js/config.php:41 +msgid "Friday" +msgstr "" + +#: js/config.php:42 +msgid "Saturday" +msgstr "" + +#: js/config.php:47 +msgid "January" +msgstr "" + +#: js/config.php:48 +msgid "February" +msgstr "" + +#: js/config.php:49 +msgid "March" +msgstr "" + +#: js/config.php:50 +msgid "April" +msgstr "" + +#: js/config.php:51 +msgid "May" +msgstr "" + +#: js/config.php:52 +msgid "June" +msgstr "" + +#: js/config.php:53 +msgid "July" +msgstr "" + +#: js/config.php:54 +msgid "August" +msgstr "" + +#: js/config.php:55 +msgid "September" +msgstr "" + +#: js/config.php:56 +msgid "October" +msgstr "" + +#: js/config.php:57 +msgid "November" +msgstr "" + +#: js/config.php:58 +msgid "December" +msgstr "" + +#: js/js.js:489 +msgid "Settings" +msgstr "" + +#: js/js.js:589 +msgid "Saving..." +msgstr "" + +#: js/js.js:1246 +msgid "seconds ago" +msgstr "" + +#: js/js.js:1247 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1248 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1249 +msgid "today" +msgstr "" + +#: js/js.js:1250 +msgid "yesterday" +msgstr "" + +#: js/js.js:1251 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1252 +msgid "last month" +msgstr "" + +#: js/js.js:1253 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1254 +msgid "last year" +msgstr "" + +#: js/js.js:1255 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:125 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:151 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:177 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:187 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:204 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:224 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:352 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:366 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:372 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:373 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:375 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:384 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:394 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:466 +msgid "Error loading file exists template" +msgstr "" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 +#: templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:790 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:188 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:190 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:214 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:220 +msgid "Share link" +msgstr "" + +#: js/share.js:223 +msgid "Password protect" +msgstr "" + +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 +msgid "Password" +msgstr "" + +#: js/share.js:230 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:234 +msgid "Email link to person" +msgstr "" + +#: js/share.js:235 +msgid "Send" +msgstr "" + +#: js/share.js:240 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:241 +msgid "Expiration date" +msgstr "" + +#: js/share.js:277 +msgid "Share via email:" +msgstr "" + +#: js/share.js:280 +msgid "No people found" +msgstr "" + +#: js/share.js:324 js/share.js:385 +msgid "group" +msgstr "" + +#: js/share.js:357 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:401 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:423 +msgid "Unshare" +msgstr "" + +#: js/share.js:431 +msgid "notify by email" +msgstr "" + +#: js/share.js:434 +msgid "can edit" +msgstr "" + +#: js/share.js:436 +msgid "access control" +msgstr "" + +#: js/share.js:439 +msgid "create" +msgstr "" + +#: js/share.js:442 +msgid "update" +msgstr "" + +#: js/share.js:445 +msgid "delete" +msgstr "" + +#: js/share.js:448 +msgid "share" +msgstr "" + +#: js/share.js:721 +msgid "Password protected" +msgstr "" + +#: js/share.js:734 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:752 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:777 +msgid "Sending ..." +msgstr "" + +#: js/share.js:788 +msgid "Email sent" +msgstr "" + +#: js/share.js:812 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:264 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +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 "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: setup/controller.php:140 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:144 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:116 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" + +#: templates/installation.php:77 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:90 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:94 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:118 +msgid "Database password" +msgstr "" + +#: templates/installation.php:123 +msgid "Database name" +msgstr "" + +#: templates/installation.php:132 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:140 +msgid "Database host" +msgstr "" + +#: templates/installation.php:150 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:150 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:46 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:51 +msgid "remember" +msgstr "" + +#: templates/login.php:54 +msgid "Log in" +msgstr "" + +#: templates/login.php:60 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/or_IN/files.po b/l10n/or_IN/files.po new file mode 100644 index 00000000000..5297c125408 --- /dev/null +++ b/l10n/or_IN/files.po @@ -0,0 +1,409 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:15 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:25 ajax/move.php:28 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:58 js/files.js:98 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:63 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" + +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:97 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:102 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:146 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:22 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:66 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:19 ajax/upload.php:57 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:33 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:75 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:82 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:83 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:85 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:86 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:87 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:88 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:89 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:107 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:169 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:179 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:194 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "" + +#: js/file-upload.js:254 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:266 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:276 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:353 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:398 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:490 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:555 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:559 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:561 js/filelist.js:585 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:613 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:626 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:666 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:164 +msgid "Share" +msgstr "" + +#: js/fileactions.js:177 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:238 +msgid "Rename" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "" + +#: js/filelist.js:251 js/filelist.js:1129 +msgid "Pending" +msgstr "" + +#: js/filelist.js:612 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:775 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:808 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:1037 js/filelist.js:1076 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:138 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:331 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:570 templates/index.php:67 +msgid "Name" +msgstr "" + +#: js/files.js:571 templates/index.php:79 +msgid "Size" +msgstr "" + +#: js/files.js:572 templates/index.php:81 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:93 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:14 templates/index.php:22 +#, php-format +msgid "Upload (max. %s)" +msgstr "" + +#: templates/admin.php:4 +msgid "File handling" +msgstr "" + +#: templates/admin.php:6 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:9 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:14 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:16 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:19 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:21 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:25 +msgid "Save" +msgstr "" + +#: templates/index.php:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "New folder" +msgstr "" + +#: templates/index.php:13 +msgid "Folder" +msgstr "" + +#: templates/index.php:16 +msgid "From link" +msgstr "" + +#: templates/index.php:40 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:45 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:51 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:56 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:73 +msgid "Download" +msgstr "" + +#: templates/index.php:84 templates/index.php:85 +msgid "Delete" +msgstr "" + +#: templates/index.php:96 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:98 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:103 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:106 +msgid "Current scanning" +msgstr "" diff --git a/l10n/or_IN/files_encryption.po b/l10n/or_IN/files_encryption.po new file mode 100644 index 00000000000..3de51d97c54 --- /dev/null +++ b/l10n/or_IN/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:65 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:2 templates/settings-personal.php:2 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:5 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:9 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:12 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:19 templates/settings-personal.php:50 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:27 templates/settings-personal.php:58 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:32 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:38 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:45 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:51 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:56 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:8 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:13 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:21 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:27 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:32 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:41 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:43 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:59 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/or_IN/files_external.po b/l10n/or_IN/files_external.po new file mode 100644 index 00000000000..91e961105d5 --- /dev/null +++ b/l10n/or_IN/files_external.po @@ -0,0 +1,136 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:68 js/google.js:89 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:102 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:45 js/google.js:122 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: js/settings.js:318 js/settings.js:325 +msgid "Saved" +msgstr "" + +#: lib/config.php:598 +msgid "Note: " +msgstr "" + +#: lib/config.php:608 +msgid " and " +msgstr "" + +#: lib/config.php:630 +#, php-format +msgid "" +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:632 +#, php-format +msgid "" +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:634 +#, php-format +msgid "" +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:2 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:27 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:9 +msgid "External storage" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Available for" +msgstr "" + +#: templates/settings.php:32 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:92 +msgid "No user or group" +msgstr "" + +#: templates/settings.php:95 +msgid "All Users" +msgstr "" + +#: templates/settings.php:97 +msgid "Groups" +msgstr "" + +#: templates/settings.php:105 +msgid "Users" +msgstr "" + +#: templates/settings.php:118 templates/settings.php:119 +#: templates/settings.php:158 templates/settings.php:159 +msgid "Delete" +msgstr "" + +#: templates/settings.php:132 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:135 +msgid "Allow users to mount the following external storage" +msgstr "" + +#: templates/settings.php:150 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:168 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/or_IN/files_sharing.po b/l10n/or_IN/files_sharing.po new file mode 100644 index 00000000000..6a3737458a6 --- /dev/null +++ b/l10n/or_IN/files_sharing.po @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/share.js:33 +msgid "Shared by {owner}" +msgstr "" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" +msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "" diff --git a/l10n/or_IN/files_trashbin.po b/l10n/or_IN/files_trashbin.po new file mode 100644 index 00000000000..efddff7ea55 --- /dev/null +++ b/l10n/or_IN/files_trashbin.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/filelist.js:3 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 +msgid "Error" +msgstr "" + +#: js/trash.js:62 templates/index.php:22 templates/index.php:24 +msgid "Restore" +msgstr "" + +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:861 lib/trashbin.php:863 +msgid "restored" +msgstr "" + +#: templates/index.php:6 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:19 +msgid "Name" +msgstr "" + +#: templates/index.php:30 +msgid "Deleted" +msgstr "" + +#: templates/index.php:33 templates/index.php:34 +msgid "Delete" +msgstr "" diff --git a/l10n/or_IN/files_versions.po b/l10n/or_IN/files_versions.po new file mode 100644 index 00000000000..3ad5ed6f514 --- /dev/null +++ b/l10n/or_IN/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:39 +msgid "Versions" +msgstr "" + +#: js/versions.js:61 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:88 +msgid "More versions..." +msgstr "" + +#: js/versions.js:126 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:156 +msgid "Restore" +msgstr "" diff --git a/l10n/or_IN/lib.po b/l10n/or_IN/lib.po new file mode 100644 index 00000000000..b8ef391b221 --- /dev/null +++ b/l10n/or_IN/lib.po @@ -0,0 +1,356 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:353 +msgid "Help" +msgstr "" + +#: private/app.php:366 +msgid "Personal" +msgstr "" + +#: private/app.php:377 +msgid "Settings" +msgstr "" + +#: private/app.php:389 +msgid "Users" +msgstr "" + +#: private/app.php:402 +msgid "Admin" +msgstr "" + +#: private/app.php:880 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: private/files.php:232 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:233 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:234 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:259 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:260 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:160 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:170 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:29 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:40 private/json.php:62 private/json.php:87 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/json.php:74 +msgid "Unknown user" +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:202 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:203 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:134 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:135 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:136 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:137 +msgid "today" +msgstr "" + +#: private/template/functions.php:138 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:140 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:142 +msgid "last month" +msgstr "" + +#: private/template/functions.php:143 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:145 +msgid "last year" +msgstr "" + +#: private/template/functions.php:146 +msgid "years ago" +msgstr "" + +#: private/user/manager.php:232 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:237 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:241 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:246 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/or_IN/settings.po b/l10n/or_IN/settings.po new file mode 100644 index 00000000000..970127c6562 --- /dev/null +++ b/l10n/or_IN/settings.po @@ -0,0 +1,838 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:299 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:336 +msgid "Authentication method" +msgstr "" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:17 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:36 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:68 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:73 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:81 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:86 changepassword/controller.php:97 +msgid "Unable to change password" +msgstr "" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 +msgid "Disable" +msgstr "" + +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 +msgid "Enable" +msgstr "" + +#: js/apps.js:95 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "" + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:152 +msgid "Error" +msgstr "" + +#: js/apps.js:153 templates/apps.php:55 +msgid "Update" +msgstr "" + +#: js/apps.js:156 +msgid "Updated" +msgstr "" + +#: js/personal.js:243 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:313 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "" + +#: js/users.js:310 +msgid "add group" +msgstr "" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:48 personal.php:49 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:47 templates/admin.php:61 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:50 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:64 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file is not working. We strongly suggest that you " +"configure your webserver in a way that the data directory is no longer " +"accessible or you move the data directory outside the webserver document " +"root." +msgstr "" + +#: templates/admin.php:75 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:79 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:90 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:93 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:104 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:107 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:118 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:123 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:127 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:131 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:143 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:146 +msgid "" +"This 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." +msgstr "" + +#: templates/admin.php:160 +msgid "Cron" +msgstr "" + +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:192 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:200 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:205 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:211 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:212 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:219 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:220 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:227 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:228 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:235 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:236 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:243 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:246 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:253 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:254 +msgid "Allow users to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:261 +msgid "Security" +msgstr "" + +#: templates/admin.php:274 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:276 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:282 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:294 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:296 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:327 +msgid "From address" +msgstr "" + +#: templates/admin.php:349 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:353 +msgid "Server address" +msgstr "" + +#: templates/admin.php:357 +msgid "Port" +msgstr "" + +#: templates/admin.php:362 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:363 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:366 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:370 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:371 +msgid "Send email" +msgstr "" + +#: templates/admin.php:376 +msgid "Log" +msgstr "" + +#: templates/admin.php:377 +msgid "Log level" +msgstr "" + +#: templates/admin.php:409 +msgid "More" +msgstr "" + +#: templates/admin.php:410 +msgid "Less" +msgstr "" + +#: templates/admin.php:416 templates/personal.php:171 +msgid "Version" +msgstr "" + +#: templates/admin.php:420 templates/personal.php:174 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:14 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:31 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:38 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:43 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:49 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:51 +msgid "See application website" +msgstr "" + +#: templates/apps.php:53 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 +msgid "Password" +msgstr "" + +#: templates/personal.php:39 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:40 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:45 +msgid "New password" +msgstr "" + +#: templates/personal.php:49 +msgid "Change password" +msgstr "" + +#: templates/personal.php:61 templates/users.php:86 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:76 +msgid "Email" +msgstr "" + +#: templates/personal.php:78 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:81 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:89 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:94 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:96 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:97 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:98 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:100 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:104 +msgid "Cancel" +msgstr "" + +#: templates/personal.php:105 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:111 templates/personal.php:112 +msgid "Language" +msgstr "" + +#: templates/personal.php:131 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:151 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:157 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:162 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "" + +#: templates/users.php:28 +msgid "Create" +msgstr "" + +#: templates/users.php:34 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:64 templates/users.php:161 +msgid "Other" +msgstr "" + +#: templates/users.php:85 +msgid "Username" +msgstr "" + +#: templates/users.php:92 +msgid "Storage" +msgstr "" + +#: templates/users.php:106 +msgid "change full name" +msgstr "" + +#: templates/users.php:110 +msgid "set new password" +msgstr "" + +#: templates/users.php:141 +msgid "Default" +msgstr "" diff --git a/l10n/or_IN/user_ldap.po b/l10n/or_IN/user_ldap.po new file mode 100644 index 00000000000..8e1675057b3 --- /dev/null +++ b/l10n/or_IN/user_ldap.po @@ -0,0 +1,534 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:983 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitive LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:44 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:45 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:45 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:46 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:47 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:47 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:53 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:54 +msgid "" +"By default the internal username will be created from the UUID attribute. It" +" makes sure that the username is unique and characters do not need to be " +"converted. The internal username has the restriction that only these " +"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " +"with their ASCII correspondence or simply omitted. On collisions a number " +"will be added/increased. The internal username is used to identify a user " +"internally. It is also the default name for the user home folder. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:55 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:56 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:57 +msgid "" +"By default, the UUID attribute is automatically detected. 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 behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:58 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:59 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:60 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:61 +msgid "" +"Usernames are used 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 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. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/or_IN/user_webdavauth.po b/l10n/or_IN/user_webdavauth.po new file mode 100644 index 00000000000..9d084c23316 --- /dev/null +++ b/l10n/or_IN/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:2 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:3 +msgid "Address: " +msgstr "" + +#: templates/settings.php:6 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index 16e79ae93f7..532f3787896 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -135,63 +135,59 @@ msgstr "ਨਵੰਬ" msgid "December" msgstr "ਦਸੰਬਰ" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "ਅੱਜ" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ਕੱਲ੍ਹ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "ਮਹੀਨੇ ਪਹਿਲਾਂ" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" @@ -295,12 +291,12 @@ msgstr "" msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "ਗਲ" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "ਚੇਤਾਵਨੀ" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/pa/files.po b/l10n/pa/files.po index d8cef14e9a4..d2098c7aa80 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "ਅੱਪਲੋਡ" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 4941f0d91be..1e9c29e76cd 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/pl/core.po b/l10n/pl/core.po index f2bcd30e7ed..1fa61458c8c 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,67 +138,63 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Zapisywanie..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzine temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "dziś" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: js/js.js:1107 -msgid "months ago" -msgstr "miesięcy temu" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "lat temu" @@ -303,12 +299,12 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Błąd" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -372,71 +368,71 @@ msgstr "Współdziel poprzez e-mail:" msgid "No people found" msgstr "Nie znaleziono ludzi" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupa" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Współdzielenie nie jest możliwe" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Współdzielone w {item} z {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "powiadom przez emaila" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "może edytować" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrola dostępu" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "utwórz" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "uaktualnij" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "usuń" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "współdziel" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail wysłany" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Ostrzeżenie" @@ -464,7 +460,7 @@ msgstr "Edytuj tagi" msgid "Error loading dialog template: {error}" msgstr "Błąd podczas ładowania szablonu dialogu: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nie zaznaczono tagów do usunięcia." diff --git a/l10n/pl/files.po b/l10n/pl/files.po index af048c7ba9f..972f9bcf32d 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -315,8 +315,9 @@ msgid "%s could not be renamed" msgstr "%s nie można zmienić nazwy" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Wyślij" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 69bf7db7ac3..8af3733a05f 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "Pozwól na mailowe powiadomienia" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 6a333fe063c..13e8c470ccd 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "novembro" msgid "December" msgstr "dezembro" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ajustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Salvando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " ha %n minuto" msgstr[1] "ha %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "ha %n hora" msgstr[1] "ha %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoje" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ontem" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "ha %n dia" msgstr[1] "ha %n dias" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "último mês" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "ha %n mês" msgstr[1] "ha %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses atrás" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "último ano" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anos atrás" @@ -296,12 +292,12 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -365,71 +361,71 @@ msgstr "Compartilhar via e-mail:" msgid "No people found" msgstr "Nenhuma pessoa encontrada" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Não é permitido re-compartilhar" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartilhado em {item} com {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Descompartilhar" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notificar por e-mail" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pode editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "controle de acesso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "criar" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "atualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "remover" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "compartilhar" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Aviso" @@ -457,7 +453,7 @@ msgstr "Editar etiqueta" msgid "Error loading dialog template: {error}" msgstr "Erro carregando diálogo de formatação:{error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nenhuma etiqueta selecionada para deleção." diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index fbd360e35a1..1d25159e22c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "%s não pode ser renomeado" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Upload" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index a7c133b16a6..5f8c4597d97 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 16:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 16:40+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" @@ -49,7 +49,7 @@ msgstr "Usuários" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falha na atualização de \"%s\"." @@ -74,7 +74,7 @@ msgstr "Download ZIP está desligado." msgid "Files need to be downloaded one by one." msgstr "Arquivos precisam ser baixados um de cada vez." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Voltar para Arquivos" @@ -148,15 +148,15 @@ msgstr "Não é possível criar pasta app. Corrija as permissões. %s" msgid "Application is not enabled" msgstr "Aplicação não está habilitada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Erro de autenticação" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirou. Por favor recarregue a página." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Usuário desconhecido" @@ -290,68 +290,68 @@ msgstr "%s compartilhou »%s« com você" msgid "Could not find category \"%s\"" msgstr "Impossível localizar categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "segundos atrás" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "ha %n minutos" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "ha %n horas" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hoje" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ontem" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "ha %n dias" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "último mês" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "ha %n meses" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "último ano" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "anos atrás" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Somente os seguintes caracteres são permitidos no nome do usuário: \"a-z\", \"A-Z\", \"0-9\", e \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Forneça um nome de usuário válido" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Forneça uma senha válida" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Este nome de usuário já está sendo usado" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 7cb0d10fe60..4b4186a1d06 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Permitir notificação por email" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir usuários enviar notificação por email de arquivos compartilhados" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 5f9b5962c61..4db354e6cda 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -141,63 +141,59 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configurações" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "A guardar..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto atrás" msgstr[1] "%n minutos atrás" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hora atrás" msgstr[1] "%n horas atrás" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoje" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ontem" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dia atrás" msgstr[1] "%n dias atrás" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ultímo mês" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mês atrás" msgstr[1] "%n meses atrás" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses atrás" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ano passado" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anos atrás" @@ -301,12 +297,12 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -370,71 +366,71 @@ msgstr "Partilhar via email:" msgid "No people found" msgstr "Não foi encontrado ninguém" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Não é permitido partilhar de novo" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Partilhado em {item} com {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Notificar por email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pode editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Controlo de acesso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "criar" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "apagar" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "partilhar" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Aviso" @@ -462,7 +458,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Erro ao carregar modelo de diálogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Não foram escolhidas etiquetas para apagar." diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 76c39e0d418..7712e0ca5ed 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s não pode ser renomeada" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Carregar" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 2d44adbc099..725d5683027 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -527,8 +527,8 @@ msgid "Allow mail notification" msgstr "Permitir notificação por email" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index d0f54e679b5..6a5fd3a8b13 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,67 +138,63 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Setări" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Se salvează..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "acum %n minut" msgstr[1] "acum %n minute" msgstr[2] "acum %n minute" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "acum %n oră" msgstr[1] "acum %n ore" msgstr[2] "acum %n ore" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "astăzi" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ieri" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "acum %n zi" msgstr[1] "acum %n zile" msgstr[2] "acum %n zile" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ultima lună" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "luni în urmă" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ultimul an" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ani în urmă" @@ -303,12 +299,12 @@ msgstr "Partajat" msgid "Share" msgstr "Partajează" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Eroare" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -372,71 +368,71 @@ msgstr "Distribuie prin email:" msgid "No people found" msgstr "Nici o persoană găsită" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grup" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Repartajarea nu este permisă" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Distribuie in {item} si {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Anulare partajare" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "poate edita" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control acces" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "creare" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizare" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ștergere" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "partajare" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Mesajul a fost expediat" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Atenție" @@ -464,7 +460,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 56ffcff99ff..bb6268901e4 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -316,8 +316,9 @@ msgid "%s could not be renamed" msgstr "%s nu a putut fi redenumit" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Încărcă" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index ca5e79e740a..edb9cda2e65 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,7 +522,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ru/core.po b/l10n/ru/core.po index b94a9585936..ce2d8e5a1e8 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -151,67 +151,63 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Конфигурация" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Сохранение..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n минуту назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "сегодня" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "вчера" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: js/js.js:1107 -msgid "months ago" -msgstr "несколько месяцев назад" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "в прошлом году" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "несколько лет назад" @@ -316,12 +312,12 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Ошибка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -385,71 +381,71 @@ msgstr "Поделится через электронную почту:" msgid "No people found" msgstr "Ни один человек не найден" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "группа" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Общий доступ не разрешен" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Общий доступ к {item} с {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Закрыть общий доступ" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "уведомить по почте" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "может редактировать" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "контроль доступа" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "создать" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "обновить" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "удалить" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "открыть доступ" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Письмо отправлено" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Предупреждение" @@ -477,7 +473,7 @@ msgstr "Изменить метки" msgid "Error loading dialog template: {error}" msgstr "Ошибка загрузки шаблона диалога: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Не выбраны меток для удаления." diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 848ba105ce1..6f7fbe2af7a 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -321,8 +321,9 @@ msgid "%s could not be renamed" msgstr "%s не может быть переименован" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Загрузка" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 7e562b8b460..8894a197136 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -535,8 +535,8 @@ msgid "Allow mail notification" msgstr "Разрешить уведомление по почте" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Разрешить пользователю оповещать почтой о расшаренных файлах" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 81640e8edeb..29638affc8c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "නොවැම්බර්" msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "අද" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "මාස කීපයකට පෙර" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "දෝෂයක්" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "විද්‍යුත් තැපෑල මඟින් බෙදා msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "කණ්ඩායම" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "නොබෙදු" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "සංස්කරණය කළ හැක" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "ප්‍රවේශ පාලනය" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "සදන්න" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "යාවත්කාලීන කරන්න" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "මකන්න" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "අවවාදය" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 65cb451481d..c2b7eceb77d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "උඩුගත කරන්න" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 18a9854df9a..d276c9ecebe 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 65348532a41..d0b50414ec0 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,140 +134,136 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Zrušiť" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -299,12 +295,12 @@ msgstr "" msgid "Share" msgstr "Zdieľať" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -368,71 +364,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "skupina" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -460,7 +456,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 6f6661a4078..e98673d6550 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,37 +213,37 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -309,7 +309,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index bff1d720434..e88024cd09d 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index bdf4db71d48..7cbb3c8c84a 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,67 +136,63 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Ukladám..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minútou" msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n hodinou" msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "dnes" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "včera" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dňom" msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesiacom" msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: js/js.js:1107 -msgid "months ago" -msgstr "pred mesiacmi" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "minulý rok" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "pred rokmi" @@ -241,7 +237,7 @@ msgstr "Nové súbory" #: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "Už existujúce súbory" #: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" @@ -301,12 +297,12 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Chyba" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -370,71 +366,71 @@ msgstr "Zdieľať cez email:" msgid "No people found" msgstr "Používateľ nenájdený" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "skupina" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Zdieľanie už zdieľanej položky nie je povolené" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Zdieľané v {item} s {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "informovať emailom" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "môže upraviť" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "prístupové práva" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "vytvoriť" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualizovať" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "vymazať" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "zdieľať" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email odoslaný" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Varovanie" @@ -462,7 +458,7 @@ msgstr "Upraviť štítky" msgid "Error loading dialog template: {error}" msgstr "Chyba pri načítaní šablóny dialógu: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nie sú vybraté štítky na zmazanie." diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 7f7762eae3f..f76a3099e23 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s nemohol byť premenovaný" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Odoslať" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index a57f418836f..6ce0145b55e 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mhh , 2013 +# mhh , 2013-2014 # martin, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 07:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -103,7 +103,7 @@ msgstr "Počiatočné šifrovanie započalo ... To môže nejakú dobu trvať. #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Počiatočné šifrovanie beží... Skúste to neskôr znovu." #: templates/invalid_private_key.php:8 msgid "Go directly to your " @@ -113,91 +113,91 @@ msgstr "Choďte priamo do vášho" msgid "personal settings" msgstr "osobné nastavenia" -#: templates/settings-admin.php:4 templates/settings-personal.php:3 +#: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" msgstr "Šifrovanie" -#: templates/settings-admin.php:7 +#: templates/settings-admin.php:5 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Povoliť obnovovací kľúč (umožňuje obnoviť používateľské súbory v prípade straty hesla):" -#: templates/settings-admin.php:11 +#: templates/settings-admin.php:9 msgid "Recovery key password" msgstr "Heslo obnovovacieho kľúča" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:12 msgid "Repeat Recovery key password" msgstr "Zopakujte heslo kľúča pre obnovu" -#: templates/settings-admin.php:21 templates/settings-personal.php:51 +#: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" msgstr "Povolené" -#: templates/settings-admin.php:29 templates/settings-personal.php:59 +#: templates/settings-admin.php:27 templates/settings-personal.php:58 msgid "Disabled" msgstr "Zakázané" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:32 msgid "Change recovery key password:" msgstr "Zmeniť heslo obnovovacieho kľúča:" -#: templates/settings-admin.php:40 +#: templates/settings-admin.php:38 msgid "Old Recovery key password" msgstr "Staré heslo obnovovacieho kľúča" -#: templates/settings-admin.php:47 +#: templates/settings-admin.php:45 msgid "New Recovery key password" msgstr "Nové heslo obnovovacieho kľúča" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:51 msgid "Repeat New Recovery key password" msgstr "Zopakujte nové heslo kľúča pre obnovu" -#: templates/settings-admin.php:58 +#: templates/settings-admin.php:56 msgid "Change Password" msgstr "Zmeniť heslo" -#: templates/settings-personal.php:9 +#: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" msgstr "Vaše heslo súkromného kľúča je rovnaké ako Vaše prihlasovacie heslo:" -#: templates/settings-personal.php:12 +#: templates/settings-personal.php:11 msgid "Set your old private key password to your current log-in password." msgstr "Nastavte si staré heslo súkromného kľúča k Vášmu súčasnému prihlasovaciemu heslu." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:13 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Ak si nepamätáte svoje staré heslo, môžete požiadať správcu o obnovenie svojich súborov." -#: templates/settings-personal.php:22 +#: templates/settings-personal.php:21 msgid "Old log-in password" msgstr "Staré prihlasovacie heslo" -#: templates/settings-personal.php:28 +#: templates/settings-personal.php:27 msgid "Current log-in password" msgstr "Súčasné prihlasovacie heslo" -#: templates/settings-personal.php:33 +#: templates/settings-personal.php:32 msgid "Update Private Key Password" msgstr "Aktualizovať heslo súkromného kľúča" -#: templates/settings-personal.php:42 +#: templates/settings-personal.php:41 msgid "Enable password recovery:" msgstr "Povoliť obnovu hesla:" -#: templates/settings-personal.php:44 +#: templates/settings-personal.php:43 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Povolenie Vám umožní znovu získať prístup k Vašim zašifrovaným súborom, ak stratíte heslo" -#: templates/settings-personal.php:60 +#: templates/settings-personal.php:59 msgid "File recovery settings updated" msgstr "Nastavenie obnovy súborov aktualizované" -#: templates/settings-personal.php:61 +#: templates/settings-personal.php:60 msgid "Could not update file recovery" msgstr "Nemožno aktualizovať obnovenie súborov" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 0a04a512b63..7054f3c2f50 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mhh , 2013 +# mhh , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 07:20+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,34 +42,34 @@ msgstr "Chyba pri konfigurácii úložiska Google drive" msgid "Saved" msgstr "Uložené" -#: lib/config.php:592 +#: lib/config.php:598 msgid "Note: " -msgstr "" +msgstr "Poznámka: " -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " -msgstr "" +msgstr "a" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Poznámka: cURL podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval." -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Poznámka: FTP podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval." -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Poznámka: \"%s\" nie je nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval." #: templates/settings.php:2 msgid "External Storage" @@ -93,7 +93,7 @@ msgstr "Možnosti" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "K dispozícii pre" #: templates/settings.php:32 msgid "Add storage" @@ -101,7 +101,7 @@ msgstr "Pridať úložisko" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Žiadny používateľ alebo skupina" #: templates/settings.php:95 msgid "All Users" @@ -126,7 +126,7 @@ msgstr "Povoliť externé úložisko" #: templates/settings.php:135 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Povoliť používateľom pripojiť tieto externé úložiská" #: templates/settings.php:150 msgid "SSL root certificates" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 6278b3b3245..f39c5f873eb 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Povoliť odosielať upozornenia emailom" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Povoliť používateľom odosielať upozornenia emailom pre svoje zdieľané súbory" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 6d28f29b2e4..255c325f54d 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 07:30+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -167,7 +167,7 @@ msgstr "Pomoc" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Skupiny spĺňajúce tieto kritériá sú k dispozícii v %s:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -203,7 +203,7 @@ msgstr "nájdené skupiny" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Používateľov prihlásiť pomocou tohto atribútu:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -271,7 +271,7 @@ msgstr "V rozšírenom nastavení môžete zadať základné DN pre používate #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Obmedziť %s prístup na používateľov spĺňajúcich tieto kritériá:" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -340,7 +340,7 @@ msgstr "Pripojiť sa len k záložnému serveru." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "LDAP server je citlivý na veľkosť písmen (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." @@ -415,7 +415,7 @@ msgstr "Priradenie člena skupiny" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Vnorené skupiny" #: templates/settings.php:39 msgid "" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 510618e32b3..8d398d85e7a 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -136,19 +136,19 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Poteka shranjevanje ..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minuto" @@ -156,7 +156,7 @@ msgstr[1] "pred %n minutama" msgstr[2] "pred %n minutami" msgstr[3] "pred %n minutami" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n uro" @@ -164,15 +164,15 @@ msgstr[1] "pred %n urama" msgstr[2] "pred %n urami" msgstr[3] "pred %n urami" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "danes" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "včeraj" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dnevom" @@ -180,11 +180,11 @@ msgstr[1] "pred %n dnevoma" msgstr[2] "pred %n dnevi" msgstr[3] "pred %n dnevi" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesecem" @@ -192,15 +192,11 @@ msgstr[1] "pred %n mesecema" msgstr[2] "pred %n meseci" msgstr[3] "pred %n meseci" -#: js/js.js:1107 -msgid "months ago" -msgstr "mesecev nazaj" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "lansko leto" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "let nazaj" @@ -467,7 +463,7 @@ msgstr "Uredi oznake" msgid "Error loading dialog template: {error}" msgstr "Napaka nalaganja predloge pogovornega okna: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Ni izbranih oznak za izbris." diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 1e9272d4d53..e5bf374f77e 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -314,8 +314,9 @@ msgid "%s could not be renamed" msgstr "%s ni mogoče preimenovati" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Pošlji" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index fd91045bed6..08a73d58259 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -88,17 +88,17 @@ msgstr "Skupine ni mogoče dodati" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Datoteke so uspešno odšifrirane" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Datotek ni mogoče odšifrirati. Preverite dnevnik owncloud.log ali pa se posvetujte s skrbnikom." #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Datotek ni mogoče odšifrirati. Preverite geslo in poskusite znova." #: ajax/lostpassword.php:12 msgid "Email saved" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Dovoli obvestila preko elektronske pošte" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Dovoli uporabniku poslati obvestila preko elektronske pošte za datoteke v souporabi" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 5c17765aa87..170478f66a9 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "Nëntor" msgid "December" msgstr "Dhjetor" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Parametra" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Duke ruajtur..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut më parë" msgstr[1] "%n minuta më parë" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n orë më parë" msgstr[1] "%n orë më parë" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "sot" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "dje" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ditë më parë" msgstr[1] "%n ditë më parë" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n muaj më parë" msgstr[1] "%n muaj më parë" -#: js/js.js:1107 -msgid "months ago" -msgstr "muaj më parë" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "vite më parë" @@ -296,12 +292,12 @@ msgstr "Ndarë" msgid "Share" msgstr "Nda" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Veprim i gabuar" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" @@ -365,71 +361,71 @@ msgstr "Nda me email:" msgid "No people found" msgstr "Nuk u gjet asnjë person" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupi" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Rindarja nuk lejohet" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Ndarë në {item} me {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Hiq ndarjen" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "mund të ndryshosh" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrollimi i hyrjeve" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "krijo" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "azhurno" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "elimino" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "nda" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Mbrojtur me kod" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email-i u dërgua" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -457,7 +453,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 4232355dcb3..879f8c7555f 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "Nuk është i mundur riemërtimi i %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Ngarko" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 8f882f13d2b..0f7ca7d0239 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sr/core.po b/l10n/sr/core.po index f609ea8b9ff..09d3613ff3a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,67 +134,63 @@ msgstr "Новембар" msgid "December" msgstr "Децембар" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Поставке" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Чување у току..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "данас" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "јуче" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "месеци раније" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "прошле године" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "година раније" @@ -299,12 +295,12 @@ msgstr "" msgid "Share" msgstr "Дели" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -368,71 +364,71 @@ msgstr "Подели поштом:" msgid "No people found" msgstr "Особе нису пронађене." -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "група" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Поновно дељење није дозвољено" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Подељено унутар {item} са {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Укини дељење" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "може да мења" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "права приступа" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "направи" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ажурирај" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "обриши" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "подели" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Порука је послата" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Упозорење" @@ -460,7 +456,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index ea405fff7b3..11e7f11340a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Отпреми" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 9603dcd0c1e..4691d1e387c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index df657f78cac..b4e75d73094 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,67 +136,63 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Pre par sekundi" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Danas" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "juče" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Prije %n dan." msgstr[1] "Prije %n dana." msgstr[2] "Prije %n dana." -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "prošlog meseca" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "pre nekoliko meseci" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "prošle godine" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "pre nekoliko godina" @@ -301,12 +297,12 @@ msgstr "Deljeno" msgid "Share" msgstr "Podeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Greška" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Greška pri deljenju" @@ -370,71 +366,71 @@ msgstr "Deli putem e-maila" msgid "No people found" msgstr "Nema pronađenih ljudi" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Dalje deljenje nije dozvoljeno" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Deljeno u {item} sa {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Ukljoni deljenje" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "dozvoljene izmene" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "napravi" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ažuriranje" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "brisanje" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "deljenje" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Zaštćeno lozinkom" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Greška u uklanjanju datuma isteka" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Greška u postavljanju datuma isteka" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Slanje..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email poslat" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -462,7 +458,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 0c17a8d6aa3..f7a9bdebf4d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Pošalji" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index dbabd2061b7..312bf5473b5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/su/core.po b/l10n/su/core.po index ac15217b14a..ae84b0e517b 100644 --- a/l10n/su/core.po +++ b/l10n/su/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -134,130 +134,126 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/su/files.po b/l10n/su/files.po index f02bfd4f577..8de270c09be 100644 --- a/l10n/su/files.po +++ b/l10n/su/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/su/settings.po b/l10n/su/settings.po index b5fd5ad46fd..3d504c44baa 100644 --- a/l10n/su/settings.po +++ b/l10n/su/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 4e288cd7ead..fc9f4fd5939 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: AsavarTzeth \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -142,63 +142,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Inställningar" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Sparar..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "i dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "i går" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "förra månaden" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: js/js.js:1107 -msgid "months ago" -msgstr "månader sedan" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "förra året" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "år sedan" @@ -302,12 +298,12 @@ msgstr "Delad" msgid "Share" msgstr "Dela" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fel" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fel vid delning" @@ -371,71 +367,71 @@ msgstr "Dela via e-post:" msgid "No people found" msgstr "Hittar inga användare" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Grupp" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Dela vidare är inte tillåtet" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Delad i {item} med {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Sluta dela" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "informera via e-post" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan redigera" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "åtkomstkontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "skapa" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "uppdatera" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "radera" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "dela" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-post skickat" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Varning" @@ -463,7 +459,7 @@ msgstr "Editera taggar" msgid "Error loading dialog template: {error}" msgstr "Fel under laddning utav dialog mall: {fel}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Inga taggar valda för borttagning." diff --git a/l10n/sv/files.po b/l10n/sv/files.po index a1f2093bc26..445f27234af 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: AsavarTzeth \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -315,8 +315,9 @@ msgid "%s could not be renamed" msgstr "%s kunde inte namnändras" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Ladda upp" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index d094158f4f8..99f3ae24b86 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: henrikhjelm \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -531,8 +531,8 @@ msgid "Allow mail notification" msgstr "Tillåt e-post notifikation" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Tillåt användare att skicka e-port notifikationer för delade filer" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 4670128c670..61d4b11f7e7 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index e98284e51f3..275cecc8fd5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index 51475acbd40..525ca027ce5 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 71bb9a90fc1..01f4c511188 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "கார்த்திகை" msgid "December" msgstr "மார்கழி" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "சேமிக்கப்படுகிறது..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "இன்று" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "மாதங்களுக்கு முன்" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "வருடங்களுக்கு முன்" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "வழு" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -363,71 +359,71 @@ msgstr "மின்னஞ்சலினூடான பகிர்வு: " msgid "No people found" msgstr "நபர்கள் யாரும் இல்லை" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "குழு" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "மீள்பகிர்வதற்கு அனுமதி இல்லை " -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{பயனாளர்} உடன் {உருப்படி} பகிரப்பட்டுள்ளது" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "தொகுக்க முடியும்" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "கட்டுப்பாடான அணுகல்" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "உருவவாக்கல்" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "இற்றைப்படுத்தல்" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "நீக்குக" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "பகிர்தல்" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "எச்சரிக்கை" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 59125f40d87..8b8c81ad678 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "பதிவேற்றுக" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index edea4a40fb2..fc3cdcea428 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/te/core.po b/l10n/te/core.po index 09c8064439f..8c910964347 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,63 +135,59 @@ msgstr "నవంబర్" msgid "December" msgstr "డిసెంబర్" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n నిమిషం క్రితం" msgstr[1] "%n నిమిషాల క్రితం" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n గంట క్రితం" msgstr[1] "%n గంటల క్రితం" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "ఈరోజు" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n రోజు క్రితం" msgstr[1] "%n రోజుల క్రితం" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n నెల క్రితం" msgstr[1] "%n నెలల క్రితం" -#: js/js.js:1107 -msgid "months ago" -msgstr "నెలల క్రితం" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "సంవత్సరాల క్రితం" @@ -295,12 +291,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "పొరపాటు" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "తొలగించు" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "హెచ్చరిక" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/te/files.po b/l10n/te/files.po index e9b3f646ddf..50b0717d87f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 2cafc7c1bf6..aa6d2dc3483 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 0b2245ab078..21a80481792 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -135,63 +135,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 5d016437f58..ea124e27fe9 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -305,7 +305,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 3ebc52afb2c..f0dd2975cce 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 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 c05cc89332a..f7b5e4e305e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 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 14a3151d37b..a20e27c699a 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 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 c4de45e2172..d3fab126a28 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -35,6 +35,10 @@ msgstr "" msgid "Error" msgstr "" +#: js/trash.js:62 templates/index.php:22 templates/index.php:24 +msgid "Restore" +msgstr "" + #: js/trash.js:264 msgid "Deleted Files" msgstr "" @@ -51,10 +55,6 @@ msgstr "" msgid "Name" msgstr "" -#: templates/index.php:22 templates/index.php:24 -msgid "Restore" -msgstr "" - #: templates/index.php:30 msgid "Deleted" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 9f25be229f3..dc51b390525 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 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 805e0b895cc..79fd7165e69 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 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/private.pot b/l10n/templates/private.pot index 2cac8f8b917..c293e6187a7 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 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 56bf1970deb..f52f3d53d70 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -519,7 +519,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 9bb697c59ce..50f8114aafa 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 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 ad4ebbcb2d8..a6d99051683 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 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 2782a3812c7..9486525543e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "พฤศจิกายน" msgid "December" msgstr "ธันวาคม" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "กำลังบันทึกข้อมูล..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "วันนี้" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "เดือน ที่ผ่านมา" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ปี ที่ผ่านมา" @@ -289,12 +285,12 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -358,71 +354,71 @@ msgstr "แชร์ผ่านทางอีเมล" msgid "No people found" msgstr "ไม่พบบุคคลที่ต้องการ" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "กลุ่มผู้ใช้งาน" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "ได้แชร์ {item} ให้กับ {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "สามารถแก้ไข" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "ระดับควบคุมการเข้าใช้งาน" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "สร้าง" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "อัพเดท" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ลบ" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "แชร์" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "คำเตือน" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index e770e533830..acd5249bc53 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "อัพโหลด" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 029e848b872..051c00d0c74 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 51a7eb73b68..f25ab1e0b98 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,63 +138,59 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Kaydediliyor..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "saniyeler önce" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n dakika önce" msgstr[1] "%n dakika önce" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n saat önce" msgstr[1] "%n saat önce" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "bugün" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "dün" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n gün önce" msgstr[1] "%n gün önce" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "geçen ay" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ay önce" msgstr[1] "%n ay önce" -#: js/js.js:1107 -msgid "months ago" -msgstr "aylar önce" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "geçen yıl" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "yıllar önce" @@ -459,7 +455,7 @@ msgstr "Etiketleri düzenle" msgid "Error loading dialog template: {error}" msgstr "İletişim şablonu yüklenirken hata: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Silmek için bir etiket seçilmedi." diff --git a/l10n/tr/files.po b/l10n/tr/files.po index cf5079ec50c..67cdf2e53d5 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -311,8 +311,9 @@ msgid "%s could not be renamed" msgstr "%s yeniden adlandırılamadı" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Yükle" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 1ba73232a77..f5e4733f403 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Posta bilgilendirmesine izin ver" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/tzm/core.po b/l10n/tzm/core.po index 528cc7ed88b..30ead15ba09 100644 --- a/l10n/tzm/core.po +++ b/l10n/tzm/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/tzm/files.po b/l10n/tzm/files.po index 0e5165652ec..707f99a954f 100644 --- a/l10n/tzm/files.po +++ b/l10n/tzm/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/tzm/settings.po b/l10n/tzm/settings.po index 614dba76775..87462e65a29 100644 --- a/l10n/tzm/settings.po +++ b/l10n/tzm/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 19bde853e75..e58767e0b00 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -134,59 +134,55 @@ msgstr "ئوغلاق" msgid "December" msgstr "كۆنەك" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "ساقلاۋاتىدۇ…" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "بۈگۈن" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "ھەمبەھىر" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "خاتالىق" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "گۇرۇپپا" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ئۆچۈر" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "ھەمبەھىر" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "ئاگاھلاندۇرۇش" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index f9d8866073d..8433443fbac 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "يۈكلە" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index fe39905af32..af673c0410d 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 9bfa59aee1f..466adb3e734 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,67 +135,63 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Налаштування" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Зберігаю..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n хвилину тому" msgstr[1] "%n хвилини тому" msgstr[2] "%n хвилин тому" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n годину тому" msgstr[1] "%n години тому" msgstr[2] "%n годин тому" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "сьогодні" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "вчора" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день тому" msgstr[1] "%n дні тому" msgstr[2] "%n днів тому" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "минулого місяця" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n місяць тому" msgstr[1] "%n місяці тому" msgstr[2] "%n місяців тому" -#: js/js.js:1107 -msgid "months ago" -msgstr "місяці тому" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "минулого року" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "роки тому" @@ -300,12 +296,12 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Помилка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -369,71 +365,71 @@ msgstr "Опублікувати через Ел. пошту:" msgid "No people found" msgstr "Жодної людини не знайдено" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "група" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Пере-публікація не дозволяється" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Опубліковано {item} для {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Закрити доступ" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "повідомити по Email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "може редагувати" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "контроль доступу" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "створити" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "оновити" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "видалити" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "опублікувати" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Ел. пошта надіслана" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Попередження" @@ -461,7 +457,7 @@ msgstr "Редагувати теги" msgid "Error loading dialog template: {error}" msgstr "Помилка при завантаженні шаблону діалогу: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Жодних тегів не обрано для видалення." diff --git a/l10n/uk/files.po b/l10n/uk/files.po index af74248bb40..cbb9d10fe2e 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# zubr139 , 2013 +# zubr139, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s не може бути перейменований" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Вивантажити" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index bf659a93c18..481bf1bd976 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# zubr139 , 2013 +# zubr139, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ur/core.po b/l10n/ur/core.po index ccec776d8f5..7324073f773 100644 --- a/l10n/ur/core.po +++ b/l10n/ur/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ur/files.po b/l10n/ur/files.po index 7b6b3cbb2c0..5a528dd0787 100644 --- a/l10n/ur/files.po +++ b/l10n/ur/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ur/settings.po b/l10n/ur/settings.po index ce88154e1b7..f346523b7a6 100644 --- a/l10n/ur/settings.po +++ b/l10n/ur/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index b00b13ab255..3a8d9c43dca 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "نومبر" msgid "December" msgstr "دسمبر" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "ایرر" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "کوئی لوگ نہیں ملے۔" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "دوبارہ شئیر کرنے کی اجازت نہیں" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "ایڈٹ کر سکے" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "اسیس کنٹرول" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "نیا بنائیں" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "اپ ڈیٹ" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ختم کریں" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "شئیر کریں" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 1d52677ac9f..d4889dd755e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 5bb896a5f83..a365ceecd66 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/uz/core.po b/l10n/uz/core.po index 6685162cdfb..f673c079f65 100644 --- a/l10n/uz/core.po +++ b/l10n/uz/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -134,130 +134,126 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/uz/files.po b/l10n/uz/files.po index cbb3c8601e9..8a8f954d40a 100644 --- a/l10n/uz/files.po +++ b/l10n/uz/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/uz/settings.po b/l10n/uz/settings.po index bd278d7cf08..a63bd15c83b 100644 --- a/l10n/uz/settings.po +++ b/l10n/uz/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 4cc800ca832..ec8e73f8f1b 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,59 +138,55 @@ msgstr "Tháng 11" msgid "December" msgstr "Tháng 12" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Đang lưu..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n phút trước" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n giờ trước" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hôm nay" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ngày trước" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "tháng trước" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n tháng trước" -#: js/js.js:1107 -msgid "months ago" -msgstr "tháng trước" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "năm trước" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "năm trước" @@ -293,12 +289,12 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Lỗi" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -362,71 +358,71 @@ msgstr "Chia sẻ thông qua email" msgid "No people found" msgstr "Không tìm thấy người nào" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "nhóm" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Chia sẻ lại không được cho phép" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Đã được chia sẽ trong {item} với {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Thông báo qua email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "có thể chỉnh sửa" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "quản lý truy cập" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "tạo" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "cập nhật" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "xóa" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "chia sẻ" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email đã được gửi" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Cảnh báo" @@ -454,7 +450,7 @@ msgstr "Sửa thẻ" msgid "Error loading dialog template: {error}" msgstr "Lỗi khi tải mẫu hội thoại: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Không có thẻ nào được chọn để xóa" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 97655a16ced..824d518f559 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s không thể đổi tên" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Tải lên" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index f62d71cb7e9..2b090bd48a1 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 8a5f79f1669..543b6afc926 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 14:43+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -139,59 +139,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "设置" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "保存中" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "秒前" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分钟前" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "今天" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "昨天" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "上月" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 月前" -#: js/js.js:1107 -msgid "months ago" -msgstr "月前" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "去年" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "年前" @@ -455,7 +451,7 @@ msgstr "编辑标签" msgid "Error loading dialog template: {error}" msgstr "加载对话框模板出错: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "请选择要删除的标签。" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 77df595e7f7..1078d24b82e 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s 不能被重命名" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "上传" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index c0450bf1c7c..38db6ba96f8 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -527,8 +527,8 @@ msgid "Allow mail notification" msgstr "允许邮件通知" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "允许用户为共享的文件发送邮件通知" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 1c9c0476f6f..6cf893c49ed 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "設定" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "今日" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "昨日" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "前一月" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "個月之前" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -289,12 +285,12 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "錯誤" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -358,71 +354,71 @@ msgstr "以電郵分享" msgid "No people found" msgstr "找不到" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "取消分享" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "新增" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "更新" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "刪除" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "分享" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "郵件已傳" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index ebc01669309..2e161107847 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "上傳" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index b2f87f35619..7021c16fcae 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 84b69c5f755..db4cd8f43d8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,59 +136,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "設定" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "儲存中..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "今天" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "昨天" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "上個月" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: js/js.js:1107 -msgid "months ago" -msgstr "幾個月前" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "去年" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "幾年前" @@ -291,12 +287,12 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "錯誤" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -360,71 +356,71 @@ msgstr "透過電子郵件分享:" msgid "No people found" msgstr "沒有找到任何人" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "群組" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "不允許重新分享" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "已和 {user} 分享 {item}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "取消分享" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "以 email 通知" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "可編輯" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "存取控制" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "建立" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "更新" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "刪除" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "分享" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "取消到期日設定失敗" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "設定到期日發生錯誤" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "正在傳送…" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email 已寄出" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "警告" @@ -452,7 +448,7 @@ msgstr "編輯標籤" msgid "Error loading dialog template: {error}" msgstr "載入對話樣板出錯:{error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "沒有選擇要刪除的標籤" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index fa6a8e3db22..93e6dfb09ef 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -305,8 +305,9 @@ msgid "%s could not be renamed" msgstr "無法重新命名 %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "上傳" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 1e1d3a76690..d67101ebc53 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,8 +521,8 @@ msgid "Allow mail notification" msgstr "允許郵件通知" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "允許使用者分享檔案時寄出通知郵件" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/lib/l10n/es_CR.php b/lib/l10n/es_CR.php new file mode 100644 index 00000000000..15f78e0bce6 --- /dev/null +++ b/lib/l10n/es_CR.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/or_IN.php b/lib/l10n/or_IN.php new file mode 100644 index 00000000000..15f78e0bce6 --- /dev/null +++ b/lib/l10n/or_IN.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index cdc689a211c..d62c69adfac 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -101,7 +101,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "السماح للمستعملين بإعادة المشاركة مع أي أحد ", "Allow users to only share with users in their groups" => "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم", "Allow mail notification" => "السماح بتنبيهات البريد الالكتروني.", -"Allow user to send mail notification for shared files" => "السماح للمستخدم الى ارسال تنبيه البريد الالكتروني للملفات المشتركة ", "Security" => "حماية", "Enforce HTTPS" => "فرض HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "اجبار العميل للاتصال بـ %s عن طريق اتصال مشفر", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 9f1d51fd627..0a4324e5a58 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permet compartir amb qualsevol", "Allow users to only share with users in their groups" => "Permet als usuaris compartir només amb els usuaris del seu grup", "Allow mail notification" => "Permet notificacions per correu electrónic", -"Allow user to send mail notification for shared files" => "Permet a l'usuari enviar notificacions de fitxers compartits per correu ", "Security" => "Seguretat", "Enforce HTTPS" => "Força HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Força la connexió dels clients a %s a través d'una connexió encriptada.", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 1f3c111a17d..cbe552d23d2 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -16,6 +16,8 @@ $TRANSLATIONS = array( "Unable to change full name" => "Nelze změnit celé jméno", "Group already exists" => "Skupina již existuje", "Unable to add group" => "Nelze přidat skupinu", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nebylo možno dešifrovat soubory, zkontroluje prosím owncloud.log nebo kontaktujte svého administrátora", +"Couldn't decrypt your files, check your password and try again" => "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znovu", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", "Unable to delete group" => "Nelze smazat skupinu", @@ -111,7 +113,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", "Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách", "Allow mail notification" => "Povolit e-mailová upozornění", -"Allow user to send mail notification for shared files" => "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", "Security" => "Zabezpečení", "Enforce HTTPS" => "Vynutit HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index df8d2c419b9..0a755da9fd3 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -101,7 +101,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Tillad brugere at dele med alle", "Allow users to only share with users in their groups" => "Tillad brugere at kun dele med brugerne i deres grupper", "Allow mail notification" => "Tillad mail underretninger", -"Allow user to send mail notification for shared files" => "Tillad brugere at sende mail underretninger for delte filer", "Security" => "Sikkerhed", "Enforce HTTPS" => "Gennemtving HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tving klienten til at forbinde til %s via en kryptetet forbindelse.", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 13395d20523..e9105c8dda7 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen", "Allow mail notification" => "Mail-Benachrichtigung erlauben", -"Allow user to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "Erzwinge HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 2cfffdd374d..8b9c455401c 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen", "Allow mail notification" => "Mail-Benachrichtigung erlauben", -"Allow user to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "HTTPS erzwingen", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen.", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 8655fa05c7c..1ca97b63da8 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -111,7 +111,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Επιτρέπεται στους χρήστες ο διαμοιρασμός με οποιονδήποτε", "Allow users to only share with users in their groups" => "Επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", "Allow mail notification" => "Επιτρέπονται ειδοποιήσεις ηλεκτρονικού ταχυδρομείου", -"Allow user to send mail notification for shared files" => "Επιτρέπει τους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", "Security" => "Ασφάλεια", "Enforce HTTPS" => "Επιβολή χρήσης HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Επιβάλλει τους πελάτες να συνδέονται στο %s μέσω κρυπτογραφημένης σύνδεσης.", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index b377a6b3381..c61d1c8de2e 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Unable to change full name", "Group already exists" => "Group already exists", "Unable to add group" => "Unable to add group", +"Files decrypted successfully" => "Files decrypted successfully", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Couldn't decrypt your files, please check your owncloud.log or ask your administrator", +"Couldn't decrypt your files, check your password and try again" => "Couldn't decrypt your files, check your password and try again", "Email saved" => "Email saved", "Invalid email" => "Invalid email", "Unable to delete group" => "Unable to delete group", @@ -111,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Allow users to share with anyone", "Allow users to only share with users in their groups" => "Allow users to only share with users in their groups", "Allow mail notification" => "Allow mail notification", -"Allow user to send mail notification for shared files" => "Allow user to send mail notification for shared files", "Security" => "Security", "Enforce HTTPS" => "Enforce HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forces the clients to connect to %s via an encrypted connection.", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 313808cdc78..030106071cf 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", "Allow mail notification" => "Permitir notificaciones por correo electrónico", -"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada.", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index b637dd4f147..6e8bc71132e 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -89,7 +89,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquiera.", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los de sus mismos grupos", "Allow mail notification" => "Permitir notificaciones por correo", -"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo para archivos compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada.", diff --git a/settings/l10n/es_MX.php b/settings/l10n/es_MX.php index abfeaa577d2..2eb3946cbba 100644 --- a/settings/l10n/es_MX.php +++ b/settings/l10n/es_MX.php @@ -88,7 +88,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", "Allow mail notification" => "Permitir notificaciones por correo electrónico", -"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada.", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 677ae3d6bb6..b46e0138c1d 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -111,7 +111,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Luba kasutajatel kõigiga jagada", "Allow users to only share with users in their groups" => "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad", "Allow mail notification" => "Luba teavitused e-postiga", -"Allow user to send mail notification for shared files" => "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi", "Security" => "Turvalisus", "Enforce HTTPS" => "Sunni peale HTTPS-i kasutamine", "Forces the clients to connect to %s via an encrypted connection." => "Sunnib kliente %s ühenduma krüpteeritult.", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 0225fb00f65..054a40a61b9 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -81,7 +81,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Baimendu erabiltzaileak edonorekin elkarbanatzen", "Allow users to only share with users in their groups" => "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen", "Allow mail notification" => "Baimendu posta bidezko jakinarazpenak", -"Allow user to send mail notification for shared files" => "Baimendu erabiltzailea posta bidezko jakinarazpenak bidaltzen partekatutako fitxategietarako", "Security" => "Segurtasuna", "Enforce HTTPS" => "Behartu HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu.", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index bec91c69706..f42a263c3ff 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "اجازه به کابران برای اشتراک گذاری با همه", "Allow users to only share with users in their groups" => "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان", "Allow mail notification" => "مجاز نمودن اطلاع رسانی توسط ایمیل", -"Allow user to send mail notification for shared files" => "مجاز نمودن ارسال ایمیل توسط کاربر برای فایل‌های به اشتراک گذاشته شده", "Security" => "امنیت", "Enforce HTTPS" => "وادار کردن HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "کلاینت‌ها را مجبور کن که از یک ارتباط رمزنگاری شده برای اتصال به %s استفاده کنند.", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index bbceeb1983f..d11ab032a0d 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -101,7 +101,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Salli käyttäjien jakaa kenen tahansa kanssa", "Allow users to only share with users in their groups" => "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken", "Allow mail notification" => "Salli sähköposti-ilmoitukset", -"Allow user to send mail notification for shared files" => "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", "Security" => "Tietoturva", "Enforce HTTPS" => "Pakota HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta.", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 9475f6017fa..7380a7abdea 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Autoriser les utilisateurs à partager avec tout le monde", "Allow users to only share with users in their groups" => "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement", "Allow mail notification" => "Autoriser les notifications par couriel", -"Allow user to send mail notification for shared files" => "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés", "Security" => "Sécurité", "Enforce HTTPS" => "Forcer HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forcer les clients à se connecter à %s via une connexion chiffrée.", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index e0abc8e95b8..b320609dd9f 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir que os usuarios compartan con calquera", "Allow users to only share with users in their groups" => "Permitir que os usuarios compartan só cos usuarios dos seus grupos", "Allow mail notification" => "Permitir o envío de notificacións por correo", -"Allow user to send mail notification for shared files" => "Permitir que os usuarios envíen notificacións por correo dos ficheiros compartidos", "Security" => "Seguranza", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar que os clientes se conecten a %s empregando unha conexión cifrada.", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index b3492b9fd76..a4133dbe403 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -89,7 +89,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "A felhasználók bárkivel megoszthatják állományaikat", "Allow users to only share with users in their groups" => "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak", "Allow mail notification" => "E-mail értesítések engedélyezése", -"Allow user to send mail notification for shared files" => "Engedélyezi, hogy a felhasználók e-mail értesítést küldhessenek a megosztott fájlokról.", "Security" => "Biztonság", "Enforce HTTPS" => "Kötelező HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz.", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index a7b59d82f84..07c46a673d3 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -87,7 +87,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Izinkan pengguna untuk berbagi kepada siapa saja", "Allow users to only share with users in their groups" => "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri", "Allow mail notification" => "Izinkan pemberitahuan email", -"Allow user to send mail notification for shared files" => "Izinkan pengguna mengirim pemberitahuan email pada berkas yang dibagikan", "Security" => "Keamanan", "Enforce HTTPS" => "Selalu Gunakan HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Memaksa klien untuk menghubungkan ke %s menggunakan sambungan yang dienskripsi.", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index dd32d4029de..dd790b85112 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Consenti agli utenti di condividere con chiunque", "Allow users to only share with users in their groups" => "Consenti agli utenti di condividere solo con utenti dei loro gruppi", "Allow mail notification" => "Consenti le notifiche tramite posta elettronica", -"Allow user to send mail notification for shared files" => "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi", "Security" => "Protezione", "Enforce HTTPS" => "Forza HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forza i client a connettersi a %s tramite una connessione cifrata.", diff --git a/settings/l10n/ja.php b/settings/l10n/ja.php index 7a2802d588a..ec52c74e2a8 100644 --- a/settings/l10n/ja.php +++ b/settings/l10n/ja.php @@ -108,7 +108,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "ユーザーに誰とでも共有することを許可する", "Allow users to only share with users in their groups" => "ユーザーにグループ内のユーザーとのみ共有を許可する", "Allow mail notification" => "メール通知を許可", -"Allow user to send mail notification for shared files" => "共有ファイルに関するメール通知の送信をユーザーに許可する", "Security" => "セキュリティ", "Enforce HTTPS" => "常にHTTPSを使用する", "Forces the clients to connect to %s via an encrypted connection." => "クライアントから %sへの接続を常に暗号化します。", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index a4506975e89..b17a25e4c32 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -98,7 +98,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "누구나와 공유할 수 있도록 허용", "Allow users to only share with users in their groups" => "사용자가 속해 있는 그룹의 사용자에게만 공유할 수 있도록 허용", "Allow mail notification" => "메일 알림 허용", -"Allow user to send mail notification for shared files" => "사용자에게 공유 파일에 대한 메일 알림을 허용합니다", "Security" => "보안", "Enforce HTTPS" => "HTTPS 강제 사용", "Forces the clients to connect to %s via an encrypted connection." => "클라이언트가 %s에 연결할 때 암호화 연결을 강제로 사용합니다.", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index d86d5086f0d..2e7036aaaed 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -77,7 +77,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Leisti naudotojams dalintis su bet kuo", "Allow users to only share with users in their groups" => "Leisti naudotojams dalintis tik su naudotojais savo grupėje", "Allow mail notification" => "Leisti el. pašto perspėjimą", -"Allow user to send mail notification for shared files" => "Leisti naudotojui siųsti perspėjimą el. laišku dėl bendrinamų failų", "Security" => "Saugumas", "Enforce HTTPS" => "Reikalauti HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Verčia klientus jungtis prie %s per šifruotą ryšį.", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 00f2c7c2ad9..975079eb39e 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -57,7 +57,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Овозможи корисниците да споделуваат со секого", "Allow users to only share with users in their groups" => "Овозможи корисниците да споделуваат со корисници од своите групи", "Allow mail notification" => "Овозможи известување по електронска пошта", -"Allow user to send mail notification for shared files" => "Овозможи корисник да испраќа известување по електронска пошта за споделени датотеки", "Security" => "Безбедност", "Enforce HTTPS" => "Наметни HTTPS", "Server address" => "Адреса на сервер", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 244881d306d..a43bde76bcc 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -97,7 +97,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Tillat brukere å dele med alle", "Allow users to only share with users in their groups" => "Tillat kun deling med andre brukere i samme gruppe", "Allow mail notification" => "Tillat påminnelser i e-post", -"Allow user to send mail notification for shared files" => "Tillat at brukere sender epost-påminnelser for delte filer", "Security" => "Sikkerhet", "Enforce HTTPS" => "Tving HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvinger klientene til å koble til %s via en kryptert forbindelse.", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 1f8342df6c5..a88725fd5f0 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Toestaan dat gebruikers met iedereen delen", "Allow users to only share with users in their groups" => "Instellen dat gebruikers alleen met leden binnen hun groepen delen", "Allow mail notification" => "Toestaan e-mailnotificaties", -"Allow user to send mail notification for shared files" => "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", "Security" => "Beveiliging", "Enforce HTTPS" => "Afdwingen HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Dwingt de clients om een versleutelde verbinding te maken met %s", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 15df48bb311..ff93b7b1be1 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Zezwalaj użytkownikom na współdzielenie z kimkolwiek", "Allow users to only share with users in their groups" => "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup", "Allow mail notification" => "Pozwól na mailowe powiadomienia", -"Allow user to send mail notification for shared files" => "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach", "Security" => "Bezpieczeństwo", "Enforce HTTPS" => "Wymuś HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego.", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index bf15e99d426..aae9027ba35 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir que usuários compartilhem com qualquer um", "Allow users to only share with users in their groups" => "Permitir que usuários compartilhem somente com usuários em seus grupos", "Allow mail notification" => "Permitir notificação por email", -"Allow user to send mail notification for shared files" => "Permitir usuários enviar notificação por email de arquivos compartilhados", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Obrigar os clientes que se conectem a %s através de uma conexão criptografada.", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index ee8a9217f5d..e4f34141ab0 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -95,7 +95,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir que os utilizadores partilhem com todos", "Allow users to only share with users in their groups" => "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo", "Allow mail notification" => "Permitir notificação por email", -"Allow user to send mail notification for shared files" => "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forçar os clientes a ligar a %s através de uma ligação encriptada", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 9cbdeee2c23..81bb6f1755b 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -95,7 +95,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Разрешить пользователя делать общий доступ любому", "Allow users to only share with users in their groups" => "Разрешить пользователям делать общий доступ только для пользователей их групп", "Allow mail notification" => "Разрешить уведомление по почте", -"Allow user to send mail notification for shared files" => "Разрешить пользователю оповещать почтой о расшаренных файлах", "Security" => "Безопасность", "Enforce HTTPS" => "Принудить к HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Принудить клиентов подключаться к %s через шифрованное соединение.", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index afe548a1e0d..d0143e91cb8 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -102,7 +102,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Povoliť používateľom zdieľať s kýmkoľvek", "Allow users to only share with users in their groups" => "Povoliť používateľom zdieľať len s používateľmi v ich skupinách", "Allow mail notification" => "Povoliť odosielať upozornenia emailom", -"Allow user to send mail notification for shared files" => "Povoliť používateľom odosielať upozornenia emailom pre svoje zdieľané súbory", "Security" => "Zabezpečenie", "Enforce HTTPS" => "Vynútiť HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynúti pripájanie klientov k %s šifrovaným pripojením.", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 017d8a4235c..4be0dbc6ee7 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -13,6 +13,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Ni mogoče spremeniti polnega imena", "Group already exists" => "Skupina že obstaja", "Unable to add group" => "Skupine ni mogoče dodati", +"Files decrypted successfully" => "Datoteke so uspešno odšifrirane", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Datotek ni mogoče odšifrirati. Preverite dnevnik owncloud.log ali pa se posvetujte s skrbnikom.", +"Couldn't decrypt your files, check your password and try again" => "Datotek ni mogoče odšifrirati. Preverite geslo in poskusite znova.", "Email saved" => "Elektronski naslov je shranjen", "Invalid email" => "Neveljaven elektronski naslov", "Unable to delete group" => "Skupine ni mogoče izbrisati", @@ -105,7 +108,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Uporabnikom dovoli souporabo s komerkoli", "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine", "Allow mail notification" => "Dovoli obvestila preko elektronske pošte", -"Allow user to send mail notification for shared files" => "Dovoli uporabniku poslati obvestila preko elektronske pošte za datoteke v souporabi", "Security" => "Varnost", "Enforce HTTPS" => "Zahtevaj uporabo HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vsili povezavo odjemalca z %s preko šifrirane povezave.", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index b5c87945580..0d70fc225fa 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Tillåt delning med alla", "Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper", "Allow mail notification" => "Tillåt e-post notifikation", -"Allow user to send mail notification for shared files" => "Tillåt användare att skicka e-port notifikationer för delade filer", "Security" => "Säkerhet", "Enforce HTTPS" => "Kräv HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvingar klienterna att ansluta till %s via en krypterad anslutning.", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 4fdd08b2c4a..89d7f8d2b14 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Kullanıcıların her şeyi paylaşmalarına izin ver", "Allow users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", "Allow mail notification" => "Posta bilgilendirmesine izin ver", -"Allow user to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver", "Security" => "Güvenlik", "Enforce HTTPS" => "HTTPS bağlantısına zorla", "Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar.", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 25943b70207..e83892144f0 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -79,7 +79,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "允许用户向任何人共享", "Allow users to only share with users in their groups" => "允许用户只向同组用户共享", "Allow mail notification" => "允许邮件通知", -"Allow user to send mail notification for shared files" => "允许用户为共享的文件发送邮件通知", "Security" => "安全", "Enforce HTTPS" => "强制使用 HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "强制客户端通过加密连接连接到%s。", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index f7c834c5d82..242b72abc21 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "允許使用者與任何人分享檔案", "Allow users to only share with users in their groups" => "僅允許使用者在群組內分享", "Allow mail notification" => "允許郵件通知", -"Allow user to send mail notification for shared files" => "允許使用者分享檔案時寄出通知郵件", "Security" => "安全性", "Enforce HTTPS" => "強制啟用 HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "強迫用戶端使用加密連線連接到 %s", -- cgit v1.2.3 From 3d0661a1e79d48ff68a1302126a30e78a9732fa4 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 23 Apr 2014 12:54:18 +0200 Subject: Fix error when viewing expired link --- lib/private/files/filesystem.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib') diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index 7e27650c557..434ee495870 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -374,6 +374,9 @@ class Filesystem { * Returns path like /admin/files */ static public function getRoot() { + if (!self::$defaultInstance) { + return null; + } return self::$defaultInstance->getRoot(); } -- cgit v1.2.3 From cfc52ccc3d3e7e233912adc58bdc95618d941a30 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 28 Mar 2014 15:24:13 +0100 Subject: add some action items --- lib/private/share/constants.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/private/share/constants.php b/lib/private/share/constants.php index 7e4223d10fa..4c398c43c2d 100644 --- a/lib/private/share/constants.php +++ b/lib/private/share/constants.php @@ -26,13 +26,13 @@ class Constants { const SHARE_TYPE_USER = 0; const SHARE_TYPE_GROUP = 1; const SHARE_TYPE_LINK = 3; - const SHARE_TYPE_EMAIL = 4; - const SHARE_TYPE_CONTACT = 5; - const SHARE_TYPE_REMOTE = 6; + const SHARE_TYPE_EMAIL = 4; // ToDo Check if it is still in use otherwise remove it + const SHARE_TYPE_CONTACT = 5; // ToDo Check if it is still in use otherwise remove it + const SHARE_TYPE_REMOTE = 6; // ToDo Check if it is still in use otherwise remove it const FORMAT_NONE = -1; const FORMAT_STATUSES = -2; - const FORMAT_SOURCES = -3; + const FORMAT_SOURCES = -3; // ToDo Check if it is still in use otherwise remove it const TOKEN_LENGTH = 32; // see db_structure.xml -- cgit v1.2.3 From 72bbb9ca20498eba18d6b6a31ed1de2306f90faf Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 7 Apr 2014 19:00:03 +0200 Subject: allow to remove and change mount points --- lib/private/files/mount/manager.php | 7 +++++++ lib/private/files/mount/mount.php | 7 +++++++ 2 files changed, 14 insertions(+) (limited to 'lib') diff --git a/lib/private/files/mount/manager.php b/lib/private/files/mount/manager.php index ff4a336f347..91460b72730 100644 --- a/lib/private/files/mount/manager.php +++ b/lib/private/files/mount/manager.php @@ -23,6 +23,13 @@ class Manager { $this->mounts[$mount->getMountPoint()] = $mount; } + /** + * @param string $mountPoint + */ + public function removeMount($mountPoint) { + unset($this->mounts[$mountPoint]); + } + /** * Find the mount for $path * diff --git a/lib/private/files/mount/mount.php b/lib/private/files/mount/mount.php index 0ce2f5975c7..08d5ddf348b 100644 --- a/lib/private/files/mount/mount.php +++ b/lib/private/files/mount/mount.php @@ -65,6 +65,13 @@ class Mount { return $this->mountPoint; } + /** + * @param string $mountPoint new mount point + */ + public function setMountPoint($mountPoint) { + $this->mountPoint = $mountPoint; + } + /** * create the storage that is mounted * -- cgit v1.2.3 From a02fb3722bae6655ffdd5b0e6c522331612c255b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 4 Apr 2014 18:32:49 +0200 Subject: user should be able to rename/delete shared files if the owner allowed it --- apps/files_sharing/lib/cache.php | 9 +++ apps/files_sharing/lib/sharedstorage.php | 102 ++++++++++++++++++++++++++++++- lib/private/files/view.php | 29 ++++++--- 3 files changed, 129 insertions(+), 11 deletions(-) (limited to 'lib') diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index becd436f798..4017b7ad64a 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -89,6 +89,12 @@ class Shared_Cache extends Cache { return $cache->get($this->files[$file]); } } else { + // if we are at the root of the mount point we want to return the + // cache information for the source item + if (!is_int($file) || $file === 0) { + $file = $this->storage->getSourceId(); + $mountPoint = $this->storage->getMountPoint(); + } $query = \OC_DB::prepare( 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`,' . ' `size`, `mtime`, `encrypted`, `unencrypted_size`' @@ -110,6 +116,9 @@ class Shared_Cache extends Cache { } else { $data['size'] = (int)$data['size']; } + if (isset($mountPoint)) { + $data['path'] = 'files/' . $mountPoint; + } return $data; } return false; diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 25a05a0d1f2..d09a4a22564 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -30,17 +30,33 @@ class Shared extends \OC\Files\Storage\Common { private $mountPoint; // mount point relative to data/user/files private $type; // can be "file" or "folder" + private $shareId; // share Id to identify the share in the database + private $fileSource; // file cache ID of the shared item private $files = array(); public function __construct($arguments) { $this->mountPoint = $arguments['shareTarget']; $this->type = $arguments['shareType']; + $this->shareId = $arguments['shareId']; + $this->fileSource = $arguments['fileSource']; } + /** + * @breif get id of the mount point + * @return string + */ public function getId() { return 'shared::' . $this->mountPoint; } + /** + * @breif get file cache of the shared item source + * @return string + */ + public function getSourceId() { + return $this->fileSource; + } + /** * @brief Get the source file path, permissions, and owner for a shared file * @param string Shared target file path @@ -289,11 +305,89 @@ class Shared extends \OC\Files\Storage\Common { return false; } + /** + * @brief Format a path to be relative to the /user/files/ directory + * @param string $path the absolute path + * @return string e.g. turns '/admin/files/test.txt' into '/test.txt' + */ + private static function stripUserFilesPath($path) { + $trimmed = ltrim($path, '/'); + $split = explode('/', $trimmed); + + // it is not a file relative to data/user/files + if (count($split) < 3 || $split[1] !== 'files') { + \OCP\Util::writeLog('file sharing', + 'Can not strip userid and "files/" from path: ' . $path, + \OCP\Util::DEBUG); + return false; + } + + // skip 'user' and 'files' + $sliced = array_slice($split, 2); + $relPath = implode('/', $sliced); + + return '/' . $relPath; + } + + /** + * @brief rename a shared foder/file + * @param string $sourcePath + * @param string $targetPath + * @return bool + */ + private function renameMountPoint($sourcePath, $targetPath) { + + // it shoulbn't be possible to move a Shared storage into another one + list($targetStorage, ) = \OC\Files\Filesystem::resolvePath($targetPath); + if ($targetStorage instanceof \OC\Files\Storage\Shared) { + \OCP\Util::writeLog('file sharing', + 'It is not allowed to move one mount point into another one', + \OCP\Util::DEBUG); + return false; + } + + $relTargetPath = $this->stripUserFilesPath($targetPath); + + // rename mount point + $query = \OC_DB::prepare( + 'Update `*PREFIX*share` + SET `file_target` = ? + WHERE `id` = ?' + ); + + $result = $query->execute(array($relTargetPath, $this->shareId)); + + if ($result) { + // update the mount manager with the new paths + $mountManager = \OC\Files\Filesystem::getMountManager(); + $mount = $mountManager->find($sourcePath); + $mount->setMountPoint($targetPath . '/'); + $mountManager->addMount($mount); + $mountManager->removeMount($sourcePath . '/'); + + } else { + \OCP\Util::writeLog('file sharing', + 'Could not rename mount point for shared folder "' . $sourcePath . '" to "' . $targetPath . '"', + \OCP\Util::ERROR); + } + + return $result; + } + + public function rename($path1, $path2) { + + $sourceMountPoint = \OC\Files\Filesystem::getMountPoint($path1); + + // if we renamed the mount point we need to adjust the file_target in the + // database + if (strlen($sourceMountPoint) >= strlen($path1)) { + return $this->renameMountPoint($path1, $path2); + } + // Renaming/moving is only allowed within shared folders - $pos1 = strpos($path1, '/', 1); - $pos2 = strpos($path2, '/', 1); - if ($pos1 !== false && $pos2 !== false && ($oldSource = $this->getSourcePath($path1))) { + $oldSource = $this->getSourcePath($path1); + if ($oldSource) { $newSource = $this->getSourcePath(dirname($path2)) . '/' . basename($path2); // Within the same folder, we only need UPDATE permissions if (dirname($path1) == dirname($path2) and $this->isUpdatable($path1)) { @@ -405,6 +499,8 @@ class Shared extends \OC\Files\Storage\Common { array( 'shareTarget' => $share['file_target'], 'shareType' => $share['item_type'], + 'shareId' => $share['id'], + 'fileSource' => $share['file_source'], ), $options['user_dir'] . '/' . $share['file_target']); } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 519ed250b1f..6d630f978ba 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -404,11 +404,21 @@ class View { if ($run) { $mp1 = $this->getMountPoint($path1 . $postFix1); $mp2 = $this->getMountPoint($path2 . $postFix2); + list($storage1, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1); + list(, $internalPath2) = Filesystem::resolvePath($absolutePath2 . $postFix2); + // if source and target are on the same storage we can call the rename operation from the + // storage. If it is a "Shared" file/folder we call always the rename operation of the + // shared storage to handle mount point renaming, etc correctly if ($mp1 == $mp2) { - list($storage, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1); - list(, $internalPath2) = Filesystem::resolvePath($absolutePath2 . $postFix2); - if ($storage) { - $result = $storage->rename($internalPath1, $internalPath2); + if ($storage1) { + $result = $storage1->rename($internalPath1, $internalPath2); + \OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2); + } else { + $result = false; + } + } elseif ($storage1 instanceof \OC\Files\Storage\Shared) { + if ($storage1) { + $result = $storage1->rename($absolutePath1, $absolutePath2); \OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2); } else { $result = false; @@ -417,7 +427,6 @@ class View { if ($this->is_dir($path1)) { $result = $this->copy($path1, $path2); if ($result === true) { - list($storage1, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1); $result = $storage1->unlink($internalPath1); } } else { @@ -431,7 +440,6 @@ class View { fclose($target); if ($result !== false) { - list($storage1, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1); $storage1->unlink($internalPath1); } } @@ -972,8 +980,13 @@ class View { $permissions = $subStorage->getPermissions($rootEntry['path']); $subPermissionsCache->set($rootEntry['fileid'], $user, $permissions); } - // do not allow renaming/deleting the mount point - $rootEntry['permissions'] = $permissions & (\OCP\PERMISSION_ALL - (\OCP\PERMISSION_UPDATE | \OCP\PERMISSION_DELETE)); + // do not allow renaming/deleting the mount point if they are not shared files/folders + // for shared files/folders we use the permissions given by the owner + if ($subStorage instanceof \OC\Files\Storage\Shared) { + $rootEntry['permissions'] = $permissions; + } else { + $rootEntry['permissions'] = $permissions & (\OCP\PERMISSION_ALL - (\OCP\PERMISSION_UPDATE | \OCP\PERMISSION_DELETE)); + } //remove any existing entry with the same name foreach ($files as $i => $file) { -- cgit v1.2.3 From c4e0fb75a4e8c9cb133ce79b6a737b2ba7b161df Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Apr 2014 14:42:15 +0200 Subject: add api to get shares from a specific user --- lib/private/share/share.php | 16 ++++++++++++++++ lib/public/share.php | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) (limited to 'lib') diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 3751b035bd4..ff56b9a48f1 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -252,6 +252,22 @@ class Share extends \OC\Share\Constants { $parameters, $limit, $includeCollections); } + /** + * Get the items of item type shared with a user + * @param string Item type + * @param sting user id for which user we want the shares + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters (optional) + * @param int Number of items to return (optional) Returns all by default + * @param bool include collections (optional) + * @return Return depends on format + */ + public static function getItemsSharedWithUser($itemType, $user, $format = self::FORMAT_NONE, + $parameters = null, $limit = -1, $includeCollections = false) { + return self::getItems($itemType, null, self::$shareTypeUserAndGroups, $user, null, $format, + $parameters, $limit, $includeCollections); + } + /** * Get the item of item type shared with the current user * @param string $itemType diff --git a/lib/public/share.php b/lib/public/share.php index c694314ad08..230a517b5ee 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -90,6 +90,22 @@ class Share extends \OC\Share\Constants { return \OC\Share\Share::getItemsSharedWith($itemType, $format, $parameters, $limit, $includeCollections); } + /** + * Get the items of item type shared with a user + * @param string Item type + * @param sting user id for which user we want the shares + * @param int Format (optional) Format type must be defined by the backend + * @param mixed Parameters (optional) + * @param int Number of items to return (optional) Returns all by default + * @param bool include collections (optional) + * @return Return depends on format + */ + public static function getItemsSharedWithUser($itemType, $user, $format = self::FORMAT_NONE, + $parameters = null, $limit = -1, $includeCollections = false) { + + return \OC\Share\Share::getItemsSharedWithUser($itemType, $user, $format, $parameters, $limit, $includeCollections); + } + /** * Get the item of item type shared with the current user * @param string $itemType -- cgit v1.2.3 From 27c5a978f91e7aa447a2acca040fd173baba53b9 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Apr 2014 17:17:48 +0200 Subject: we no longer need to handle the Shared folder different from any other folder --- apps/files/js/file-upload.js | 4 +- apps/files/js/fileactions.js | 8 +-- apps/files/js/filelist.js | 2 +- apps/files/js/files.js | 6 +-- apps/files/lib/app.php | 11 +--- apps/files/tests/ajax_rename.php | 82 ------------------------------ apps/files/tests/js/filesSpec.js | 35 ------------- lib/private/connector/sabre/directory.php | 12 ----- lib/private/connector/sabre/file.php | 11 ---- lib/private/connector/sabre/objecttree.php | 3 -- 10 files changed, 8 insertions(+), 166 deletions(-) (limited to 'lib') diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 3879aa65888..03ebdccb32d 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -235,7 +235,7 @@ OC.Upload = { var file = data.files[0]; try { // FIXME: not so elegant... need to refactor that method to return a value - Files.isFileNameValid(file.name, FileList.getCurrentDirectory()); + Files.isFileNameValid(file.name); } catch (errorMessage) { data.textStatus = 'invalidcharacters'; @@ -555,8 +555,6 @@ OC.Upload = { throw t('files', 'URL cannot be empty'); } else if (type !== 'web' && !Files.isFileNameValid(filename)) { // Files.isFileNameValid(filename) throws an exception itself - } else if (FileList.getCurrentDirectory() === '/' && filename.toLowerCase() === 'shared') { - throw t('files', 'In the home folder \'Shared\' is a reserved filename'); } else if (FileList.inList(filename)) { throw t('files', '{new_name} already exists', {new_name: filename}); } else { diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 631aebea954..ecdfa72a477 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -118,10 +118,6 @@ var FileActions = { }; var addAction = function (name, action, displayName) { - // NOTE: Temporary fix to prevent rename action in root of Shared directory - if (name === 'Rename' && $('#dir').val() === '/Shared') { - return true; - } if ((name === 'Download' || action !== defaultAction) && name !== 'Delete') { @@ -160,7 +156,7 @@ var FileActions = { addAction(name, ah, displayName); } }); - if(actions.Share && !($('#dir').val() === '/' && file === 'Shared')){ + if(actions.Share){ displayName = t('files', 'Share'); addAction('Share', actions.Share, displayName); } @@ -223,7 +219,7 @@ $(document).ready(function () { $('#fileList tr').each(function () { FileActions.display($(this).children('td.filename')); }); - + $('#fileList').trigger(jQuery.Event("fileActionsReady")); }); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 9c749bb8f34..343da217416 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -580,7 +580,7 @@ window.FileList = { var filename = input.val(); if (filename !== oldname) { // Files.isFileNameValid(filename) throws an exception itself - Files.isFileNameValid(filename, FileList.getCurrentDirectory()); + Files.isFileNameValid(filename); if (FileList.inList(filename)) { throw t('files', '{new_name} already exists', {new_name: filename}); } diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 9f38263bef3..5e669a796a9 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -87,11 +87,9 @@ var Files = { * Throws a string exception with an error message if * the file name is not valid */ - isFileNameValid: function (name, root) { + isFileNameValid: function (name) { var trimmedName = name.trim(); - if (trimmedName === '.' - || trimmedName === '..' - || (root === '/' && trimmedName.toLowerCase() === 'shared')) + if (trimmedName === '.' || trimmedName === '..') { throw t('files', '"{name}" is an invalid file name.', {name: name}); } else if (trimmedName.length === 0) { diff --git a/apps/files/lib/app.php b/apps/files/lib/app.php index adfca669577..ed4aa32c662 100644 --- a/apps/files/lib/app.php +++ b/apps/files/lib/app.php @@ -54,13 +54,8 @@ class App { 'data' => NULL ); - // rename to "/Shared" is denied - if( $dir === '/' and $newname === 'Shared' ) { - $result['data'] = array( - 'message' => $this->l10n->t("Invalid folder name. Usage of 'Shared' is reserved.") - ); // rename to non-existing folder is denied - } else if (!$this->view->file_exists($dir)) { + if (!$this->view->file_exists($dir)) { $result['data'] = array('message' => (string)$this->l10n->t( 'The target folder has been moved or deleted.', array($dir)), @@ -68,7 +63,7 @@ class App { ); // rename to existing file is denied } else if ($this->view->file_exists($dir . '/' . $newname)) { - + $result['data'] = array( 'message' => $this->l10n->t( "The name %s is already used in the folder %s. Please choose a different name.", @@ -77,8 +72,6 @@ class App { } else if ( // rename to "." is denied $newname !== '.' and - // rename of "/Shared" is denied - !($dir === '/' and $oldname === 'Shared') and // THEN try to rename $this->view->rename($dir . '/' . $oldname, $dir . '/' . $newname) ) { diff --git a/apps/files/tests/ajax_rename.php b/apps/files/tests/ajax_rename.php index cb62d22a7e2..74ca1e4495d 100644 --- a/apps/files/tests/ajax_rename.php +++ b/apps/files/tests/ajax_rename.php @@ -55,88 +55,6 @@ class Test_OC_Files_App_Rename extends \PHPUnit_Framework_TestCase { \OC\Files\Filesystem::tearDown(); } - /** - * @brief test rename of file/folder named "Shared" - */ - function testRenameSharedFolder() { - $dir = '/'; - $oldname = 'Shared'; - $newname = 'new_name'; - - $this->viewMock->expects($this->at(0)) - ->method('file_exists') - ->with('/') - ->will($this->returnValue(true)); - - $result = $this->files->rename($dir, $oldname, $newname); - $expected = array( - 'success' => false, - 'data' => array('message' => '%s could not be renamed') - ); - - $this->assertEquals($expected, $result); - } - - /** - * @brief test rename of file/folder named "Shared" - */ - function testRenameSharedFolderInSubdirectory() { - $dir = '/test'; - $oldname = 'Shared'; - $newname = 'new_name'; - - $this->viewMock->expects($this->at(0)) - ->method('file_exists') - ->with('/test') - ->will($this->returnValue(true)); - - $this->viewMock->expects($this->any()) - ->method('getFileInfo') - ->will($this->returnValue(new \OC\Files\FileInfo( - '/test', - null, - '/test', - array( - 'fileid' => 123, - 'type' => 'dir', - 'mimetype' => 'httpd/unix-directory', - 'mtime' => 0, - 'permissions' => 31, - 'size' => 18, - 'etag' => 'abcdef', - 'directory' => '/', - 'name' => 'new_name', - )))); - - $result = $this->files->rename($dir, $oldname, $newname); - - $this->assertTrue($result['success']); - $this->assertEquals(123, $result['data']['id']); - $this->assertEquals('new_name', $result['data']['name']); - $this->assertEquals(18, $result['data']['size']); - $this->assertEquals('httpd/unix-directory', $result['data']['mimetype']); - $icon = \OC_Helper::mimetypeIcon('dir'); - $icon = substr($icon, 0, -3) . 'svg'; - $this->assertEquals($icon, $result['data']['icon']); - } - - /** - * @brief test rename of file/folder to "Shared" - */ - function testRenameFolderToShared() { - $dir = '/'; - $oldname = 'oldname'; - $newname = 'Shared'; - - $result = $this->files->rename($dir, $oldname, $newname); - $expected = array( - 'success' => false, - 'data' => array('message' => "Invalid folder name. Usage of 'Shared' is reserved.") - ); - - $this->assertEquals($expected, $result); - } - /** * @brief test rename of file/folder */ diff --git a/apps/files/tests/js/filesSpec.js b/apps/files/tests/js/filesSpec.js index 95bf87e03ec..018c8ef0f3c 100644 --- a/apps/files/tests/js/filesSpec.js +++ b/apps/files/tests/js/filesSpec.js @@ -48,41 +48,6 @@ describe('Files tests', function() { expect(error).toEqual(false); } }); - it('Validates correct file names do not create Shared folder in root', function() { - // create shared file in subfolder - var error = false; - try { - expect(Files.isFileNameValid('shared', '/foo')).toEqual(true); - expect(Files.isFileNameValid('Shared', '/foo')).toEqual(true); - } - catch (e) { - error = e; - } - expect(error).toEqual(false); - - // create shared file in root - var threwException = false; - try { - Files.isFileNameValid('Shared', '/'); - console.error('Invalid file name not detected'); - } - catch (e) { - threwException = true; - } - expect(threwException).toEqual(true); - - // create shared file in root - var threwException = false; - try { - Files.isFileNameValid('shared', '/'); - console.error('Invalid file name not detected'); - } - catch (e) { - threwException = true; - } - expect(threwException).toEqual(true); - - }); it('Detects invalid file names', function() { var fileNames = [ '', diff --git a/lib/private/connector/sabre/directory.php b/lib/private/connector/sabre/directory.php index 70f45aa1e7f..5d386a772a7 100644 --- a/lib/private/connector/sabre/directory.php +++ b/lib/private/connector/sabre/directory.php @@ -50,10 +50,6 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function createFile($name, $data = null) { - if (strtolower($name) === 'shared' && empty($this->path)) { - throw new \Sabre_DAV_Exception_Forbidden(); - } - // for chunked upload also updating a existing file is a "createFile" // because we create all the chunks before reasamble them to the existing file. if (isset($_SERVER['HTTP_OC_CHUNKED'])) { @@ -86,10 +82,6 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function createDirectory($name) { - if (strtolower($name) === 'shared' && empty($this->path)) { - throw new \Sabre_DAV_Exception_Forbidden(); - } - if (!\OC\Files\Filesystem::isCreatable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } @@ -196,10 +188,6 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function delete() { - if ($this->path === 'Shared') { - throw new \Sabre_DAV_Exception_Forbidden(); - } - if (!\OC\Files\Filesystem::isDeletable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 750d646a8f5..433b4d805c9 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -71,13 +71,6 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D // mark file as partial while uploading (ignored by the scanner) $partpath = $this->path . '.ocTransferId' . rand() . '.part'; - // if file is located in /Shared we write the part file to the users - // root folder because we can't create new files in /shared - // we extend the name with a random number to avoid overwriting a existing file - if (dirname($partpath) === 'Shared') { - $partpath = pathinfo($partpath, PATHINFO_FILENAME) . rand() . '.part'; - } - try { $putOkay = $fs->file_put_contents($partpath, $data); if ($putOkay === false) { @@ -149,10 +142,6 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D public function delete() { $fs = $this->getFS(); - if ($this->path === 'Shared') { - throw new \Sabre_DAV_Exception_Forbidden(); - } - if (!$fs->isDeletable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index accf020daa2..d2fa425b22c 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -94,9 +94,6 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { } if ($sourceDir !== $destinationDir) { // for a full move we need update privileges on sourcePath and sourceDir as well as destinationDir - if (ltrim($destinationDir, '/') === '' && strtolower($sourceNode->getName()) === 'shared') { - throw new \Sabre_DAV_Exception_Forbidden(); - } if (!$fs->isUpdatable($sourceDir)) { throw new \Sabre_DAV_Exception_Forbidden(); } -- cgit v1.2.3 From ed981294f11bd59733e0d121cbf737e16275b666 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Apr 2014 19:57:07 +0200 Subject: fix share api tests --- apps/files_sharing/lib/api.php | 12 ------ apps/files_sharing/lib/cache.php | 21 ++++++---- apps/files_sharing/lib/share/file.php | 2 +- apps/files_sharing/lib/sharedstorage.php | 39 ++++-------------- apps/files_sharing/lib/watcher.php | 2 +- apps/files_sharing/tests/api.php | 70 +++++++------------------------- apps/files_sharing/tests/base.php | 12 +++--- apps/files_sharing/tests/cache.php | 60 ++++++++++++--------------- apps/files_sharing/tests/permissions.php | 15 ++++--- apps/files_sharing/tests/watcher.php | 33 +++++---------- lib/private/share/share.php | 6 +-- 11 files changed, 91 insertions(+), 181 deletions(-) (limited to 'lib') diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php index de3c1cd2630..438d3cc4ba3 100644 --- a/apps/files_sharing/lib/api.php +++ b/apps/files_sharing/lib/api.php @@ -184,7 +184,6 @@ class Api { $receivedFrom = \OCP\Share::getItemSharedWithBySource($itemType, $file['fileid']); reset($share); $key = key($share); - $share[$key]['path'] = self::correctPath($share[$key]['path'], $path); if ($receivedFrom) { $share[$key]['received_from'] = $receivedFrom['uid_owner']; $share[$key]['received_from_displayname'] = \OCP\User::getDisplayName($receivedFrom['uid_owner']); @@ -531,15 +530,4 @@ class Api { } - /** - * @brief make sure that the path has the correct root - * - * @param string $path path returned from the share API - * @param string $folder current root folder - * @return string the correct path - */ - protected static function correctPath($path, $folder) { - return \OC_Filesystem::normalizePath('/' . $folder . '/' . basename($path)); - } - } diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 250c1e872e3..e91c15cc62a 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -47,7 +47,7 @@ class Shared_Cache extends Cache { * @return \OC\Files\Cache\Cache */ private function getSourceCache($target) { - if ($target === false) { + if ($target === false || $target === $this->storage->getMountPoint()) { $target = ''; } $source = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getShareType()); @@ -86,8 +86,11 @@ class Shared_Cache extends Cache { public function get($file) { if (is_string($file)) { if ($cache = $this->getSourceCache($file)) { + $path = 'files/' . $this->storage->getMountPoint(); + $path .= ($file !== '') ? '/' . $file : ''; $data = $cache->get($this->files[$file]); $data['displayname_owner'] = \OC_User::getDisplayName($this->storage->getSharedFrom()); + $data['path'] = $path; return $data; } } else { @@ -99,7 +102,7 @@ class Shared_Cache extends Cache { } $query = \OC_DB::prepare( 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`,' - . ' `size`, `mtime`, `encrypted`, `unencrypted_size`' + . ' `size`, `mtime`, `encrypted`, `unencrypted_size`, `storage_mtime`' . ' FROM `*PREFIX*filecache` WHERE `fileid` = ?'); $result = $query->execute(array($file)); $data = $result->fetchRow(); @@ -138,12 +141,15 @@ class Shared_Cache extends Cache { $folder = ''; } + $dir = 'files/' . $this->storage->getMountPoint(); + $dir .= ($folder !== '') ? '/' . $folder : ''; + $cache = $this->getSourceCache($folder); if ($cache) { $parent = $this->storage->getFile($folder); $sourceFolderContent = $cache->getFolderContents($this->files[$folder]); foreach ($sourceFolderContent as $key => $c) { - $sourceFolderContent[$key]['usersPath'] = 'files/' . $folder . '/' . $c['name']; + $sourceFolderContent[$key]['path'] = $dir . '/' . $c['name']; $sourceFolderContent[$key]['uid_owner'] = $parent['uid_owner']; $sourceFolderContent[$key]['displayname_owner'] = $parent['uid_owner']; } @@ -178,7 +184,11 @@ class Shared_Cache extends Cache { * @return int */ public function getId($file) { - if ($cache = $this->getSourceCache($file)) { + if ($file === false) { + return $this->storage->getSourceId(); + } + $cache = $this->getSourceCache($file); + if ($cache) { return $cache->getId($this->files[$file]); } return -1; @@ -292,9 +302,6 @@ class Shared_Cache extends Cache { if ($file['mimetype'] === 'httpd/unix-directory') { $exploreDirs[] = ltrim($dir . '/' . $file['name'], '/'); } else if (($mimepart && $file['mimepart'] === $mimepart) || ($mimetype && $file['mimetype'] === $mimetype)) { - // usersPath not reliable - //$file['path'] = $file['usersPath']; - $file['path'] = ltrim($dir . '/' . $file['name'], '/'); $result[] = $file; } } diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index c628b11589d..e1d0b49706b 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -87,7 +87,7 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { 'path' => $items[key($items)]['path'], 'storage' => $items[key($items)]['storage'], 'permissions' => $items[key($items)]['permissions'], - 'uid_owner' => $items[key($items)]['uid_owner'] + 'uid_owner' => $items[key($items)]['uid_owner'], ); } else if ($format == self::FORMAT_GET_FOLDER_CONTENTS) { $files = array(); diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index f38f29635a2..565c3e7af8e 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -138,15 +138,9 @@ class Shared extends \OC\Files\Storage\Common { } public function opendir($path) { - if ($path == '' || $path == '/') { - $files = \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_Folder::FORMAT_OPENDIR); - \OC\Files\Stream\Dir::register($this->mountPoint, $files); - return opendir('fakedir://' . $this->mountPoint); - } else if ($source = $this->getSourcePath($path)) { - list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); - return $storage->opendir($internalPath); - } - return false; + $source = $this->getSourcePath($path); + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); + return $storage->opendir($internalPath); } public function is_dir($path) { @@ -242,25 +236,9 @@ class Shared extends \OC\Files\Storage\Common { } public function filemtime($path) { - if ($path == '' || $path == '/') { - $mtime = 0; - $dh = $this->opendir($path); - if (is_resource($dh)) { - while (($filename = readdir($dh)) !== false) { - $tempmtime = $this->filemtime($filename); - if ($tempmtime > $mtime) { - $mtime = $tempmtime; - } - } - } - return $mtime; - } else { - $source = $this->getSourcePath($path); - if ($source) { - list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); - return $storage->filemtime($internalPath); - } - } + $source = $this->getSourcePath($path); + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); + return $storage->filemtime($internalPath); } public function file_get_contents($path) { @@ -285,7 +263,7 @@ class Shared extends \OC\Files\Storage\Common { return false; } $info = array( - 'target' => $this->mountPoint . $path, + 'target' => $this->mountPoint . '/' . $path, 'source' => $source, ); \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_put_contents', $info); @@ -532,9 +510,6 @@ class Shared extends \OC\Files\Storage\Common { } public function hasUpdated($path, $time) { - if ($path == '') { - return false; - } return $this->filemtime($path) > $time; } diff --git a/apps/files_sharing/lib/watcher.php b/apps/files_sharing/lib/watcher.php index 285b1a58c6e..11d3ce1cabd 100644 --- a/apps/files_sharing/lib/watcher.php +++ b/apps/files_sharing/lib/watcher.php @@ -32,7 +32,7 @@ class Shared_Watcher extends Watcher { * @param string $path */ public function checkUpdate($path) { - if ($path != '' && parent::checkUpdate($path) === true) { + if (parent::checkUpdate($path) === true) { // since checkUpdate() has already updated the size of the subdirs, // only apply the update to the owner's parent dirs diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index c7a848315ac..6354d1099bb 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -324,10 +324,10 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue(is_string($result)); $testValues=array( - array('query' => 'Shared/' . $this->folder, - 'expectedResult' => '/Shared' . $this->folder . $this->filename), - array('query' => 'Shared/' . $this->folder . $this->subfolder, - 'expectedResult' => '/Shared' . $this->folder . $this->subfolder . $this->filename), + array('query' => $this->folder, + 'expectedResult' => $this->folder . $this->filename), + array('query' => $this->folder . $this->subfolder, + 'expectedResult' => $this->folder . $this->subfolder . $this->filename), ); foreach ($testValues as $value) { @@ -382,7 +382,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { // share was successful? $this->assertTrue(is_string($result)); - $_GET['path'] = '/Shared'; + $_GET['path'] = '/'; $_GET['subfiles'] = 'true'; $result = Share\Api::getAllShares(array()); @@ -395,7 +395,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { // we should get exactly one result $this->assertEquals(1, count($data)); - $expectedPath = '/Shared' . $this->subfolder; + $expectedPath = $this->subfolder; $this->assertEquals($expectedPath, $data[0]['path']); // cleanup @@ -444,7 +444,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue(is_string($result)); - $_GET['path'] = '/Shared'; + $_GET['path'] = '/'; $_GET['subfiles'] = 'true'; $result = Share\Api::getAllShares(array()); @@ -457,7 +457,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { // we should get exactly one result $this->assertEquals(1, count($data)); - $expectedPath = '/Shared' . $this->subsubfolder; + $expectedPath = $this->subsubfolder; $this->assertEquals($expectedPath, $data[0]['path']); @@ -512,8 +512,8 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue(is_string($result)); - // ask for shared/subfolder - $expectedPath1 = '/Shared' . $this->subfolder; + // ask for subfolder + $expectedPath1 = $this->subfolder; $_GET['path'] = $expectedPath1; $result1 = Share\Api::getAllShares(array()); @@ -524,8 +524,8 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $data1 = $result1->getData(); $share1 = reset($data1); - // ask for shared/folder/subfolder - $expectedPath2 = '/Shared' . $this->folder . $this->subfolder; + // ask for folder/subfolder + $expectedPath2 = $this->folder . $this->subfolder; $_GET['path'] = $expectedPath2; $result2 = Share\Api::getAllShares(array()); @@ -595,7 +595,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue(is_string($result)); - $_GET['path'] = '/Shared'; + $_GET['path'] = '/'; $_GET['subfiles'] = 'true'; $result = Share\Api::getAllShares(array()); @@ -608,7 +608,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { // we should get exactly one result $this->assertEquals(1, count($data)); - $expectedPath = '/Shared' . $this->filename; + $expectedPath = $this->filename; $this->assertEquals($expectedPath, $data[0]['path']); @@ -868,46 +868,4 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { } - function testCorrectPath() { - $path = "/foo/bar/test.txt"; - $folder = "/correct/path"; - $expectedResult = "/correct/path/test.txt"; - - $shareApiDummy = new TestShareApi(); - - $this->assertSame($expectedResult, $shareApiDummy->correctPathTest($path, $folder)); - } - - /** - * @expectedException \Exception - */ - public function testShareNonExisting() { - \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); - - $id = PHP_INT_MAX - 1; - \OCP\Share::shareItem('file', $id, \OCP\Share::SHARE_TYPE_LINK, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); - } - - /** - * @expectedException \Exception - */ - public function testShareNotOwner() { - \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); - \OC\Files\Filesystem::file_put_contents('foo.txt', 'bar'); - $info = \OC\Files\Filesystem::getFileInfo('foo.txt'); - - \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); - - \OCP\Share::shareItem('file', $info->getId(), \OCP\Share::SHARE_TYPE_LINK, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); - } - -} - -/** - * @brief dumnmy class to test protected methods - */ -class TestShareApi extends \OCA\Files\Share\Api { - public function correctPathTest($path, $folder) { - return self::correctPath($path, $folder); - } } diff --git a/apps/files_sharing/tests/base.php b/apps/files_sharing/tests/base.php index d44972d01f1..495dca072c7 100644 --- a/apps/files_sharing/tests/base.php +++ b/apps/files_sharing/tests/base.php @@ -102,22 +102,20 @@ abstract class Test_Files_Sharing_Base extends \PHPUnit_Framework_TestCase { * @param bool $password */ protected static function loginHelper($user, $create = false, $password = false) { - if ($create) { - \OC_User::createUser($user, $user); - } if ($password === false) { $password = $user; } + if ($create) { + \OC_User::createUser($user, $password); + } + \OC_Util::tearDownFS(); \OC_User::setUserId(''); \OC\Files\Filesystem::tearDown(); - \OC_Util::setupFS($user); \OC_User::setUserId($user); - - $params['uid'] = $user; - $params['password'] = $password; + \OC_Util::setupFS($user); } /** diff --git a/apps/files_sharing/tests/cache.php b/apps/files_sharing/tests/cache.php index 47969833ab5..7a52f403d8e 100644 --- a/apps/files_sharing/tests/cache.php +++ b/apps/files_sharing/tests/cache.php @@ -68,7 +68,7 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { // retrieve the shared storage $secondView = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER2); - list($this->sharedStorage, $internalPath) = $secondView->resolvePath('files/Shared/shareddir'); + list($this->sharedStorage, $internalPath) = $secondView->resolvePath('files/shareddir'); $this->sharedCache = $this->sharedStorage->getCache(); } @@ -98,46 +98,46 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { function testSearchByMime() { $results = $this->sharedStorage->getCache()->searchByMime('text'); $check = array( - array( - 'name' => 'shared single file.txt', - 'path' => 'shared single file.txt' - ), array( 'name' => 'bar.txt', - 'path' => 'shareddir/bar.txt' + 'path' => 'files/shareddir/bar.txt' ), array( 'name' => 'another too.txt', - 'path' => 'shareddir/subdir/another too.txt' + 'path' => 'files/shareddir/subdir/another too.txt' ), array( 'name' => 'another.txt', - 'path' => 'shareddir/subdir/another.txt' + 'path' => 'files/shareddir/subdir/another.txt' ), ); $this->verifyFiles($check, $results); - $results2 = $this->sharedStorage->getCache()->searchByMime('text/plain'); - $this->verifyFiles($check, $results); } function testGetFolderContentsInRoot() { - $results = $this->user2View->getDirectoryContent('/Shared/'); + $results = $this->user2View->getDirectoryContent('/'); + // we should get the shared items "shareddir" and "shared single file.txt" + // additional root will always contain the example file "welcome.txt", + // so this will be part of the result $this->verifyFiles( array( + array( + 'name' => 'welcome.txt', + 'path' => 'files/welcome.txt', + 'mimetype' => 'text/plain', + ), array( 'name' => 'shareddir', - 'path' => '/shareddir', + 'path' => 'files/shareddir', 'mimetype' => 'httpd/unix-directory', - 'usersPath' => 'files/Shared/shareddir' ), array( 'name' => 'shared single file.txt', - 'path' => '/shared single file.txt', + 'path' => 'files/shared single file.txt', 'mimetype' => 'text/plain', - 'usersPath' => 'files/Shared/shared single file.txt' ), ), $results @@ -145,27 +145,24 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { } function testGetFolderContentsInSubdir() { - $results = $this->user2View->getDirectoryContent('/Shared/shareddir'); + $results = $this->user2View->getDirectoryContent('/shareddir'); $this->verifyFiles( array( array( 'name' => 'bar.txt', - 'path' => 'files/container/shareddir/bar.txt', + 'path' => 'files/shareddir/bar.txt', 'mimetype' => 'text/plain', - 'usersPath' => 'files/Shared/shareddir/bar.txt' ), array( 'name' => 'emptydir', - 'path' => 'files/container/shareddir/emptydir', + 'path' => 'files/shareddir/emptydir', 'mimetype' => 'httpd/unix-directory', - 'usersPath' => 'files/Shared/shareddir/emptydir' ), array( 'name' => 'subdir', - 'path' => 'files/container/shareddir/subdir', + 'path' => 'files/shareddir/subdir', 'mimetype' => 'httpd/unix-directory', - 'usersPath' => 'files/Shared/shareddir/subdir' ), ), $results @@ -182,27 +179,24 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { self::loginHelper(self::TEST_FILES_SHARING_API_USER3); $thirdView = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER3 . '/files'); - $results = $thirdView->getDirectoryContent('/Shared/subdir'); + $results = $thirdView->getDirectoryContent('/subdir'); $this->verifyFiles( array( array( 'name' => 'another too.txt', - 'path' => 'files/container/shareddir/subdir/another too.txt', + 'path' => 'files/subdir/another too.txt', 'mimetype' => 'text/plain', - 'usersPath' => 'files/Shared/subdir/another too.txt' ), array( 'name' => 'another.txt', - 'path' => 'files/container/shareddir/subdir/another.txt', + 'path' => 'files/subdir/another.txt', 'mimetype' => 'text/plain', - 'usersPath' => 'files/Shared/subdir/another.txt' ), array( 'name' => 'not a text file.xml', - 'path' => 'files/container/shareddir/subdir/not a text file.xml', + 'path' => 'files/subdir/not a text file.xml', 'mimetype' => 'application/xml', - 'usersPath' => 'files/Shared/subdir/not a text file.xml' ), ), $results @@ -254,8 +248,8 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { \OC_Util::tearDownFS(); self::loginHelper(self::TEST_FILES_SHARING_API_USER2); - $this->assertTrue(\OC\Files\Filesystem::file_exists('/Shared/test.txt')); - list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/Shared/test.txt'); + $this->assertTrue(\OC\Files\Filesystem::file_exists('/test.txt')); + list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/test.txt'); /** * @var \OC\Files\Storage\Shared $sharedStorage */ @@ -275,8 +269,8 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { \OC_Util::tearDownFS(); self::loginHelper(self::TEST_FILES_SHARING_API_USER2); - $this->assertTrue(\OC\Files\Filesystem::file_exists('/Shared/foo')); - list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/Shared/foo'); + $this->assertTrue(\OC\Files\Filesystem::file_exists('/foo')); + list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/foo'); /** * @var \OC\Files\Storage\Shared $sharedStorage */ diff --git a/apps/files_sharing/tests/permissions.php b/apps/files_sharing/tests/permissions.php index e301d384a49..5ac251b0527 100644 --- a/apps/files_sharing/tests/permissions.php +++ b/apps/files_sharing/tests/permissions.php @@ -23,6 +23,9 @@ require_once __DIR__ . '/base.php'; class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base { + private $sharedStorageRestrictedShare; + private $sharedCacheRestrictedShare; + function setUp() { parent::setUp(); @@ -55,8 +58,10 @@ class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base { // retrieve the shared storage $this->secondView = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER2); - list($this->sharedStorage, $internalPath) = $this->secondView->resolvePath('files/Shared/shareddir'); + list($this->sharedStorage, $internalPath) = $this->secondView->resolvePath('files/shareddir'); + list($this->sharedStorageRestrictedShare, $internalPath) = $this->secondView->resolvePath('files/shareddirrestricted'); $this->sharedCache = $this->sharedStorage->getCache(); + $this->sharedCacheRestrictedShare = $this->sharedStorageRestrictedShare->getCache(); } function tearDown() { @@ -86,9 +91,9 @@ class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base { $this->assertEquals(31, $sharedDirPerms); $sharedDirPerms = $this->sharedStorage->getPermissions('shareddir/textfile.txt'); $this->assertEquals(31, $sharedDirPerms); - $sharedDirRestrictedPerms = $this->sharedStorage->getPermissions('shareddirrestricted'); + $sharedDirRestrictedPerms = $this->sharedStorageRestrictedShare->getPermissions('shareddirrestricted'); $this->assertEquals(7, $sharedDirRestrictedPerms); - $sharedDirRestrictedPerms = $this->sharedStorage->getPermissions('shareddirrestricted/textfile.txt'); + $sharedDirRestrictedPerms = $this->sharedStorageRestrictedShare->getPermissions('shareddirrestricted/textfile.txt'); $this->assertEquals(7, $sharedDirRestrictedPerms); } @@ -96,12 +101,12 @@ class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base { * Test that the permissions of shared directory are returned correctly */ function testGetDirectoryPermissions() { - $contents = $this->secondView->getDirectoryContent('files/Shared/shareddir'); + $contents = $this->secondView->getDirectoryContent('files/shareddir'); $this->assertEquals('subdir', $contents[0]['name']); $this->assertEquals(31, $contents[0]['permissions']); $this->assertEquals('textfile.txt', $contents[1]['name']); $this->assertEquals(31, $contents[1]['permissions']); - $contents = $this->secondView->getDirectoryContent('files/Shared/shareddirrestricted'); + $contents = $this->secondView->getDirectoryContent('files/shareddirrestricted'); $this->assertEquals('subdir', $contents[0]['name']); $this->assertEquals(7, $contents[0]['permissions']); $this->assertEquals('textfile1.txt', $contents[1]['name']); diff --git a/apps/files_sharing/tests/watcher.php b/apps/files_sharing/tests/watcher.php index 5ab716e829f..bce93c80a6c 100644 --- a/apps/files_sharing/tests/watcher.php +++ b/apps/files_sharing/tests/watcher.php @@ -48,7 +48,7 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { // retrieve the shared storage $secondView = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER2); - list($this->sharedStorage, $internalPath) = $secondView->resolvePath('files/Shared/shareddir'); + list($this->sharedStorage, $internalPath) = $secondView->resolvePath('files/shareddir'); $this->sharedCache = $this->sharedStorage->getCache(); } @@ -77,12 +77,12 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { $textData = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $dataLen = strlen($textData); - $this->sharedCache->put('shareddir/bar.txt', array('storage_mtime' => 10)); - $this->sharedStorage->file_put_contents('shareddir/bar.txt', $textData); - $this->sharedCache->put('shareddir', array('storage_mtime' => 10)); + $this->sharedCache->put('bar.txt', array('mtime' => 10, 'storage_mtime' => 10, 'size' => $dataLen, 'mimetype' => 'text/plain')); + $this->sharedStorage->file_put_contents('bar.txt', $textData); + $this->sharedCache->put('', array('mtime' => 10, 'storage_mtime' => 10, 'size' => '-1', 'mimetype' => 'httpd/unix-directory')); // run the propagation code - $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir'); + $result = $this->sharedStorage->getWatcher()->checkUpdate(''); $this->assertTrue($result); @@ -94,7 +94,7 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { $this->assertEquals($initialSizes['files/container/shareddir'] + $dataLen, $newSizes['files/container/shareddir']); // no more updates - $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir'); + $result = $this->sharedStorage->getWatcher()->checkUpdate(''); $this->assertFalse($result); } @@ -108,12 +108,12 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { $textData = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $dataLen = strlen($textData); - $this->sharedCache->put('shareddir/subdir/bar.txt', array('storage_mtime' => 10)); - $this->sharedStorage->file_put_contents('shareddir/subdir/bar.txt', $textData); - $this->sharedCache->put('shareddir/subdir', array('storage_mtime' => 10)); + $this->sharedCache->put('subdir/bar.txt', array('mtime' => 10, 'storage_mtime' => 10, 'size' => $dataLen, 'mimetype' => 'text/plain')); + $this->sharedStorage->file_put_contents('subdir/bar.txt', $textData); + $this->sharedCache->put('subdir', array('mtime' => 10, 'storage_mtime' => 10, 'size' => $dataLen, 'mimetype' => 'text/plain')); // run the propagation code - $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir/subdir'); + $result = $this->sharedStorage->getWatcher()->checkUpdate('subdir'); $this->assertTrue($result); @@ -126,20 +126,9 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { $this->assertEquals($initialSizes['files/container/shareddir/subdir'] + $dataLen, $newSizes['files/container/shareddir/subdir']); // no more updates - $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir/subdir'); - - $this->assertFalse($result); - } - - function testNoUpdateOnRoot() { - // no updates when called for root path - $result = $this->sharedStorage->getWatcher()->checkUpdate(''); + $result = $this->sharedStorage->getWatcher()->checkUpdate('subdir'); $this->assertFalse($result); - - // FIXME: for some reason when running this "naked" test, - // there will be remaining nonsensical entries in the - // database with a path "test-share-user1/container/..." } /** diff --git a/lib/private/share/share.php b/lib/private/share/share.php index ff56b9a48f1..24e2a150640 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1177,10 +1177,6 @@ class Share extends \OC\Share\Constants { // Remove root from file source paths if retrieving own shared items if (isset($uidOwner) && isset($row['path'])) { if (isset($row['parent'])) { - // FIXME: Doesn't always construct the correct path, example: - // Folder '/a/b', share '/a' and '/a/b' to user2 - // user2 reshares /Shared/b and ask for share status of /Shared/a/b - // expected result: path=/Shared/a/b; actual result /Shared/b because of the parent $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); $parentResult = $query->execute(array($row['parent'])); if (\OC_DB::isError($result)) { @@ -1189,7 +1185,7 @@ class Share extends \OC\Share\Constants { \OC_Log::ERROR); } else { $parentRow = $parentResult->fetchRow(); - $tmpPath = '/Shared' . $parentRow['file_target']; + $tmpPath = $parentRow['file_target']; // find the right position where the row path continues from the target path $pos = strrpos($row['path'], $parentRow['file_target']); $subPath = substr($row['path'], $pos); -- cgit v1.2.3 From 4c840cb61d560ae567e3e9aaa7bd411cac917e48 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Apr 2014 17:51:54 +0200 Subject: fix target generation for group shares --- lib/private/share/share.php | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) (limited to 'lib') diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 24e2a150640..7af68d1b253 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1395,8 +1395,8 @@ class Share extends \OC\Share\Constants { } } $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`,' - .' `parent`, `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' - .' `file_target`, `token`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); + .' `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' + .' `file_target`, `token`, `parent`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); // Share with a group if ($shareType == self::SHARE_TYPE_GROUP) { $groupItemTarget = Helper::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], @@ -1440,10 +1440,9 @@ class Share extends \OC\Share\Constants { } else { $groupFileTarget = null; } - $query->execute(array($itemType, $itemSource, $groupItemTarget, $parent, $shareType, - $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget, $token)); - // Save this id, any extra rows for this group share will need to reference it - $parent = \OC_DB::insertid('*PREFIX*share'); + $queriesToExecute = array(); + $queriesToExecute['groupShare'] = array($itemType, $itemSource, $groupItemTarget, $shareType, + $shareWith['group'], $uidOwner, $permissions, time(), $fileSource, $groupFileTarget, $token, $parent); // Loop through all users of this group in case we need to add an extra row foreach ($shareWith['users'] as $uid) { $itemTarget = Helper::generateTarget($itemType, $itemSource, self::SHARE_TYPE_USER, $uid, @@ -1469,12 +1468,21 @@ class Share extends \OC\Share\Constants { } // Insert an extra row for the group share if the item or file target is unique for this user if ($itemTarget != $groupItemTarget || (isset($fileSource) && $fileTarget != $groupFileTarget)) { - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, + $queriesToExecute[] = array($itemType, $itemSource, $itemTarget, self::$shareTypeGroupUserUnique, $uid, $uidOwner, $permissions, time(), - $fileSource, $fileTarget, $token)); + $fileSource, $fileTarget, $token); $id = \OC_DB::insertid('*PREFIX*share'); } } + $query->execute($queriesToExecute['groupShare']); + // Save this id, any extra rows for this group share will need to reference it + $parent = \OC_DB::insertid('*PREFIX*share'); + unset($queriesToExecute['groupShare']); + foreach ($queriesToExecute as $qe) { + $qe[] = $parent; + $query->execute($qe); + } + \OC_Hook::emit('OCP\Share', 'post_shared', array( 'itemType' => $itemType, 'itemSource' => $itemSource, @@ -1534,8 +1542,8 @@ class Share extends \OC\Share\Constants { } else { $fileTarget = null; } - $query->execute(array($itemType, $itemSource, $itemTarget, $parent, $shareType, $shareWith, $uidOwner, - $permissions, time(), $fileSource, $fileTarget, $token)); + $query->execute(array($itemType, $itemSource, $itemTarget, $shareType, $shareWith, $uidOwner, + $permissions, time(), $fileSource, $fileTarget, $token, $parent)); $id = \OC_DB::insertid('*PREFIX*share'); \OC_Hook::emit('OCP\Share', 'post_shared', array( 'itemType' => $itemType, -- cgit v1.2.3 From dfb69e9418704d8553193676f3a2ae85697c0fa9 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 11 Apr 2014 11:40:14 +0200 Subject: allow user to delete shared files/folders --- lib/private/files/view.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 6d630f978ba..3f73632be13 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -348,7 +348,8 @@ class View { $postFix = (substr($path, -1, 1) === '/') ? '/' : ''; $absolutePath = Filesystem::normalizePath($this->getAbsolutePath($path)); list($storage, $internalPath) = Filesystem::resolvePath($absolutePath . $postFix); - if (!$internalPath || $internalPath === '' || $internalPath === '/') { + if (!($storage instanceof \OC\Files\Storage\Shared) && + (!$internalPath || $internalPath === '' || $internalPath === '/')) { // do not allow deleting the storage's root / the mount point // because for some storages it might delete the whole contents // but isn't supposed to work that way -- cgit v1.2.3 From bffcbac7a78c8b88b581489cca9bb44795cf81eb Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 14 Apr 2014 12:04:12 +0200 Subject: allow to rename group share mount points --- apps/files_sharing/lib/sharedstorage.php | 43 ++++++++++++++++++++++++++------ lib/private/share/share.php | 1 + 2 files changed, 37 insertions(+), 7 deletions(-) (limited to 'lib') diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 7ce9dd58b41..25e6c0abd28 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -317,14 +317,27 @@ class Shared extends \OC\Files\Storage\Common { $relTargetPath = $this->stripUserFilesPath($targetPath); - // rename mount point - $query = \OC_DB::prepare( - 'Update `*PREFIX*share` - SET `file_target` = ? - WHERE `id` = ?' - ); + // if the user renames a mount point from a group share we need to create a new db entry + // for the unique name + if ($this->getShareType() === \OCP\Share::SHARE_TYPE_GROUP && $this->uniqueNameSet() === false) { + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`,' + .' `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' + .' `file_target`, `token`, `parent`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); + $arguments = array($this->share['item_type'], $this->share['item_source'], $this->share['item_target'], + 2, \OCP\User::getUser(), $this->share['uid_owner'], $this->share['permissions'], $this->share['stime'], $this->share['file_source'], + $relTargetPath, $this->share['token'], $this->share['id']); - $result = $query->execute(array($relTargetPath, $this->getShareId())); + } else { + // rename mount point + $query = \OC_DB::prepare( + 'Update `*PREFIX*share` + SET `file_target` = ? + WHERE `id` = ?' + ); + $arguments = array($relTargetPath, $this->getShareId()); + } + + $result = $query->execute($arguments); if ($result) { // update the mount manager with the new paths @@ -333,6 +346,7 @@ class Shared extends \OC\Files\Storage\Common { $mount->setMountPoint($targetPath . '/'); $mountManager->addMount($mount); $mountManager->removeMount($sourcePath . '/'); + $this->setUniqueName(); } else { \OCP\Util::writeLog('file sharing', @@ -486,6 +500,21 @@ class Shared extends \OC\Files\Storage\Common { return $this->share['share_type']; } + /** + * @brief does the group share already has a user specific unique name + * @return bool + */ + private function uniqueNameSet() { + return (isset($this->share['unique_name']) && $this->share['unique_name']); + } + + /** + * @brief the share now uses a unique name of this user + */ + private function setUniqueName() { + $this->share['unique_name'] = true; + } + /** * @brief get share ID * @return integer unique share ID diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 7af68d1b253..756a4d173e4 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1139,6 +1139,7 @@ class Share extends \OC\Share\Constants { // Filter out duplicate group shares for users with unique targets if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { $row['share_type'] = self::SHARE_TYPE_GROUP; + $row['unique_name'] = true; // remember that we use a unique name for this user $row['share_with'] = $items[$row['parent']]['share_with']; // Remove the parent group share unset($items[$row['parent']]); -- cgit v1.2.3 From 652d417a585ede1564456c446577aa1752253ccd Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 15 Apr 2014 11:19:31 +0200 Subject: we don't allow to share a folder if it contains a share mount point --- apps/files_sharing/lib/cache.php | 7 ++-- apps/files_sharing/lib/sharedstorage.php | 5 +++ apps/files_sharing/tests/api.php | 60 ++++++++++++++++++++++++++++++++ apps/files_sharing/tests/cache.php | 6 ++-- lib/private/files/view.php | 3 +- lib/private/share/share.php | 16 +++++++++ 6 files changed, 90 insertions(+), 7 deletions(-) (limited to 'lib') diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 7e44847e404..3d9fbcf4de9 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -411,7 +411,7 @@ class Shared_Cache extends Cache { } /** - * get the path of a file on this storage by it's id + * get the path of a file on this storage relative to the mount point by it's id * * @param int $id * @param string $pathEnd (optional) used internally for recursive calls @@ -419,8 +419,9 @@ class Shared_Cache extends Cache { */ public function getPathById($id, $pathEnd = '') { // direct shares are easy - if ($path = $this->getShareById($id)) { - return $path . $pathEnd; + $path = $this->getShareById($id); + if (is_string($path)) { + return ltrim($pathEnd, '/'); } else { // if the item is a direct share we try and get the path of the parent and append the name of the item to it list($parent, $name) = $this->getParentInfo($id); diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 25e6c0abd28..eedd279bf2b 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -347,6 +347,7 @@ class Shared extends \OC\Files\Storage\Common { $mountManager->addMount($mount); $mountManager->removeMount($sourcePath . '/'); $this->setUniqueName(); + $this->setMountPoint($relTargetPath); } else { \OCP\Util::writeLog('file sharing', @@ -500,6 +501,10 @@ class Shared extends \OC\Files\Storage\Common { return $this->share['share_type']; } + private function setMountPoint($path) { + $this->share['file_target'] = $path; + } + /** * @brief does the group share already has a user specific unique name * @return bool diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index 6354d1099bb..5975eb95882 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -866,6 +866,66 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue($result3->succeeded()); + // cleanup + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + $result = \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + + $this->assertTrue($result); + + + + } + + /** + * @brief share a folder which contains a share mount point, should be forbidden + */ + public function testShareFolderWithAMountPoint() { + // user 1 shares a folder with user2 + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + $fileInfo = $this->view->getFileInfo($this->folder); + + $result = \OCP\Share::shareItem('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + + $this->assertTrue($result); + + // user2 shares a file from the folder as link + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + + $view = new \OC\Files\View('/' . \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2 . '/files'); + $view->mkdir("localDir"); + + // move mount point to the folder "localDir" + $result = $view->rename($this->folder, 'localDir/'.$this->folder); + $this->assertTrue($result !== false); + + // try to share "localDir" + $fileInfo2 = $view->getFileInfo('localDir'); + + $this->assertTrue($fileInfo2 instanceof \OC\Files\FileInfo); + + try { + $result2 = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, 31); + } catch (\Exception $e) { + $result2 = false; + } + + $this->assertFalse($result2); + + //cleanup + + $result = $view->rename('localDir/' . $this->folder, $this->folder); + $this->assertTrue($result !== false); + $view->unlink('localDir'); + + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + \OCP\Share::unshare('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); } } diff --git a/apps/files_sharing/tests/cache.php b/apps/files_sharing/tests/cache.php index 7a52f403d8e..b8ebeab3c39 100644 --- a/apps/files_sharing/tests/cache.php +++ b/apps/files_sharing/tests/cache.php @@ -255,7 +255,7 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { */ $sharedCache = $sharedStorage->getCache(); - $this->assertEquals('test.txt', $sharedCache->getPathById($info->getId())); + $this->assertEquals('', $sharedCache->getPathById($info->getId())); } public function testGetPathByIdShareSubFolder() { @@ -276,7 +276,7 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { */ $sharedCache = $sharedStorage->getCache(); - $this->assertEquals('foo', $sharedCache->getPathById($folderInfo->getId())); - $this->assertEquals('foo/bar/test.txt', $sharedCache->getPathById($fileInfo->getId())); + $this->assertEquals('', $sharedCache->getPathById($folderInfo->getId())); + $this->assertEquals('bar/test.txt', $sharedCache->getPathById($fileInfo->getId())); } } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 3f73632be13..a61d58aaf24 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -1168,7 +1168,8 @@ class View { * @var \OC\Files\Mount\Mount $mount */ $cache = $mount->getStorage()->getCache(); - if ($internalPath = $cache->getPathById($id)) { + $internalPath = $cache->getPathById($id); + if (is_string($internalPath)) { $fullPath = $mount->getMountPoint() . $internalPath; if (!is_null($path = $this->getRelativePath($fullPath))) { return $path; diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 756a4d173e4..c07dd04b29f 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -489,6 +489,7 @@ class Share extends \OC\Share\Constants { $itemSourceName = $itemSource; } + // verify that the file exists before we try to share it if ($itemType === 'file' or $itemType === 'folder') { $path = \OC\Files\Filesystem::getPath($itemSource); @@ -499,6 +500,21 @@ class Share extends \OC\Share\Constants { } } + //verify that we don't share a folder which already contains a share mount point + if ($itemType === 'folder') { + $path = '/' . $uidOwner . '/files' . \OC\Files\Filesystem::getPath($itemSource) . '/'; + $mountManager = \OC\Files\Filesystem::getMountManager(); + $mounts = $mountManager->getAll(); + foreach ($mounts as $mountPoint => $mount) { + if ($mount->getStorage() instanceof \OC\Files\Storage\Shared && strpos($mountPoint, $path) === 0) { + $message = 'Sharing "' . $itemSourceName . '" failed, because it contains files shared with you!'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + } + } + // Verify share type and sharing conditions are met if ($shareType === self::SHARE_TYPE_USER) { if ($shareWith == $uidOwner) { -- cgit v1.2.3 From fb88aba8f4927b3175df34a2a499978a3b4c1b6b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 15 Apr 2014 20:18:04 +0200 Subject: some fixes to make the gallery work, this made it necessary to adjust some tests and the encryption code --- apps/files_encryption/hooks/hooks.php | 127 ++++------------------------------ apps/files_encryption/lib/util.php | 101 ++------------------------- apps/files_sharing/lib/cache.php | 5 +- apps/files_sharing/tests/cache.php | 18 ++--- lib/private/share/share.php | 1 + 5 files changed, 33 insertions(+), 219 deletions(-) (limited to 'lib') diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 7a8b54e2d75..5f0494e62ca 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -302,25 +302,6 @@ class Hooks { */ public static function postShared($params) { - // NOTE: $params has keys: - // [itemType] => file - // itemSource -> int, filecache file ID - // [parent] => - // [itemTarget] => /13 - // shareWith -> string, uid of user being shared to - // fileTarget -> path of file being shared - // uidOwner -> owner of the original file being shared - // [shareType] => 0 - // [shareWith] => test1 - // [uidOwner] => admin - // [permissions] => 17 - // [fileSource] => 13 - // [fileTarget] => /test8 - // [id] => 10 - // [token] => - // [run] => whether emitting script should continue to run - // TODO: Should other kinds of item be encrypted too? - if (\OCP\App::isEnabled('files_encryption') === false) { return true; } @@ -331,68 +312,22 @@ class Hooks { $session = new \OCA\Encryption\Session($view); $userId = \OCP\User::getUser(); $util = new Util($view, $userId); - $path = $util->fileIdToPath($params['itemSource']); - - $share = $util->getParentFromShare($params['id']); - //if parent is set, then this is a re-share action - if ($share['parent'] !== null) { - - // get the parent from current share - $parent = $util->getShareParent($params['parent']); - - // if parent has the same type than the child it is a 1:1 share - if ($parent['item_type'] === $params['itemType']) { - $path = $parent['file_target']; - } else { - - // NOTE: parent is folder but shared was a file! - // we try to rebuild the missing path - // some examples we face here - // user1 share folder1 with user2 folder1 has - // the following structure - // /folder1/subfolder1/subsubfolder1/somefile.txt - // user2 re-share subfolder2 with user3 - // user3 re-share somefile.txt user4 - // so our path should be - // /Shared/subfolder1/subsubfolder1/somefile.txt - // while user3 is sharing - - if ($params['itemType'] === 'file') { - // get target path - $targetPath = $util->fileIdToPath($params['fileSource']); - $targetPathSplit = array_reverse(explode('/', $targetPath)); - - // init values - $path = ''; - $sharedPart = ltrim($parent['file_target'], '/'); - - // rebuild path - foreach ($targetPathSplit as $pathPart) { - if ($pathPart !== $sharedPart) { - $path = '/' . $pathPart . $path; - } else { - break; - } - } - $path = $parent['file_target'] . $path; - } else { - $path = $parent['file_target'] . $params['fileTarget']; - } - } - } + $path = \OC\Files\Filesystem::getPath($params['fileSource']); $sharingEnabled = \OCP\Share::isEnabled(); // get the path including mount point only if not a shared folder list($storage, ) = \OC\Files\Filesystem::resolvePath('/' . $userId . '/files' . $path); - if (!($storage instanceof \OC\Files\Storage\Shared)) { - // get path including the the storage mount point - $path = $util->getPathWithMountPoint($params['itemSource']); + + if (!($storage instanceof \OC\Files\Storage\Local)) { + $mountPoint = 'files' . $storage->getMountPoint(); + } else { + $mountPoint = ''; } // if a folder was shared, get a list of all (sub-)folders if ($params['itemType'] === 'folder') { - $allFiles = $util->getAllFiles($path); + $allFiles = $util->getAllFiles($path, $mountPoint); } else { $allFiles = array($path); } @@ -409,13 +344,6 @@ class Hooks { */ public static function postUnshare($params) { - // NOTE: $params has keys: - // [itemType] => file - // [itemSource] => 13 - // [shareType] => 0 - // [shareWith] => test1 - // [itemParent] => - if (\OCP\App::isEnabled('files_encryption') === false) { return true; } @@ -425,34 +353,7 @@ class Hooks { $view = new \OC_FilesystemView('/'); $userId = \OCP\User::getUser(); $util = new Util($view, $userId); - $path = $util->fileIdToPath($params['itemSource']); - - // check if this is a re-share - if ($params['itemParent']) { - - // get the parent from current share - $parent = $util->getShareParent($params['itemParent']); - - // get target path - $targetPath = $util->fileIdToPath($params['itemSource']); - $targetPathSplit = array_reverse(explode('/', $targetPath)); - - // init values - $path = ''; - $sharedPart = ltrim($parent['file_target'], '/'); - - // rebuild path - foreach ($targetPathSplit as $pathPart) { - if ($pathPart !== $sharedPart) { - $path = '/' . $pathPart . $path; - } else { - break; - } - } - - // prefix path with Shared - $path = $parent['file_target'] . $path; - } + $path = \OC\Files\Filesystem::getPath($params['fileSource']); // for group shares get a list of the group members if ($params['shareType'] === \OCP\Share::SHARE_TYPE_GROUP) { @@ -466,15 +367,17 @@ class Hooks { } // get the path including mount point only if not a shared folder - list($storage, ) = \OC\Files\Filesystem::resolvePath($path); - if (!($storage instanceof \OC\Files\Storage\Shared)) { - // get path including the the storage mount point - //$path = $util->getPathWithMountPoint($params['itemSource']); + list($storage, ) = \OC\Files\Filesystem::resolvePath('/' . $userId . '/files' . $path); + + if (!($storage instanceof \OC\Files\Storage\Local)) { + $mountPoint = 'files' . $storage->getMountPoint(); + } else { + $mountPoint = ''; } // if we unshare a folder we need a list of all (sub-)files if ($params['itemType'] === 'folder') { - $allFiles = $util->getAllFiles($path); + $allFiles = $util->getAllFiles($path, $mountPoint); } else { $allFiles = array($path); } diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 4be4ab95653..6372ab31b6e 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -969,33 +969,6 @@ class Util { } - /** - * @brief get path of a file. - * @param int $fileId id of the file - * @return string path of the file - */ - public static function fileIdToPath($fileId) { - - $sql = 'SELECT `path` FROM `*PREFIX*filecache` WHERE `fileid` = ?'; - - $query = \OCP\DB::prepare($sql); - - $result = $query->execute(array($fileId)); - - $path = false; - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); - } else { - $row = $result->fetchRow(); - if ($row) { - $path = substr($row['path'], strlen('files')); - } - } - - return $path; - - } - /** * @brief Filter an array of UIDs to return only ones ready for sharing * @param array $unfilteredUsers users to be checked for sharing readiness @@ -1398,7 +1371,7 @@ class Util { * @param string $dir relative to the users files folder * @return array with list of files relative to the users files folder */ - public function getAllFiles($dir) { + public function getAllFiles($dir, $mountPoint = '') { $result = array(); $dirList = array($dir); @@ -1408,10 +1381,13 @@ class Util { $this->userFilesDir . '/' . $dir)); foreach ($content as $c) { + // getDirectoryContent() returns the paths relative to the mount points, so we need + // to re-construct the complete path + $path = ($mountPoint !== '') ? $mountPoint . '/' . $c['path'] : $c['path']; if ($c['type'] === 'dir') { - $dirList[] = substr($c['path'], strlen("files")); + $dirList[] = substr($path, strlen("files")); } else { - $result[] = substr($c['path'], strlen("files")); + $result[] = substr($path, strlen("files")); } } @@ -1420,54 +1396,6 @@ class Util { return $result; } - /** - * @brief get shares parent. - * @param int $id of the current share - * @return array of the parent - */ - public static function getShareParent($id) { - - $sql = 'SELECT `file_target`, `item_type` FROM `*PREFIX*share` WHERE `id` = ?'; - - $query = \OCP\DB::prepare($sql); - - $result = $query->execute(array($id)); - - $row = array(); - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); - } else { - $row = $result->fetchRow(); - } - - return $row; - - } - - /** - * @brief get shares parent. - * @param int $id of the current share - * @return array of the parent - */ - public static function getParentFromShare($id) { - - $sql = 'SELECT `parent` FROM `*PREFIX*share` WHERE `id` = ?'; - - $query = \OCP\DB::prepare($sql); - - $result = $query->execute(array($id)); - - $row = array(); - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); - } else { - $row = $result->fetchRow(); - } - - return $row; - - } - /** * @brief get owner of the shared files. * @param $id @@ -1709,23 +1637,6 @@ class Util { $this->recoverAllFiles('/', $privateKey); } - /** - * Get the path including the storage mount point - * @param int $id - * @return string the path including the mount point like AmazonS3/folder/file.txt - */ - public function getPathWithMountPoint($id) { - list($storage, $internalPath) = \OC\Files\Cache\Cache::getById($id); - $mount = \OC\Files\Filesystem::getMountByStorageId($storage); - $mountPoint = $mount[0]->getMountPoint(); - $path = \OC\Files\Filesystem::normalizePath($mountPoint . '/' . $internalPath); - - // reformat the path to be relative e.g. /user/files/folder becomes /folder/ - $relativePath = \OCA\Encryption\Helper::stripUserFilesPath($path); - - return $relativePath; - } - /** * @brief check if the file is stored on a system wide mount point * @param $path relative to /data/user with leading '/' diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 3d9fbcf4de9..4b473c60577 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -141,15 +141,14 @@ class Shared_Cache extends Cache { $folder = ''; } - $dir = 'files' . $this->storage->getMountPoint(); - $dir .= ($folder !== '') ? '/' . $folder : ''; + $dir = ($folder !== '') ? $folder . '/' : ''; $cache = $this->getSourceCache($folder); if ($cache) { $parent = $this->storage->getFile($folder); $sourceFolderContent = $cache->getFolderContents($this->files[$folder]); foreach ($sourceFolderContent as $key => $c) { - $sourceFolderContent[$key]['path'] = $dir . '/' . $c['name']; + $sourceFolderContent[$key]['path'] = $dir . $c['name']; $sourceFolderContent[$key]['uid_owner'] = $parent['uid_owner']; $sourceFolderContent[$key]['displayname_owner'] = $parent['uid_owner']; } diff --git a/apps/files_sharing/tests/cache.php b/apps/files_sharing/tests/cache.php index b8ebeab3c39..1af73c558d5 100644 --- a/apps/files_sharing/tests/cache.php +++ b/apps/files_sharing/tests/cache.php @@ -100,15 +100,15 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { $check = array( array( 'name' => 'bar.txt', - 'path' => 'files/shareddir/bar.txt' + 'path' => 'bar.txt' ), array( 'name' => 'another too.txt', - 'path' => 'files/shareddir/subdir/another too.txt' + 'path' => 'subdir/another too.txt' ), array( 'name' => 'another.txt', - 'path' => 'files/shareddir/subdir/another.txt' + 'path' => 'subdir/another.txt' ), ); $this->verifyFiles($check, $results); @@ -151,17 +151,17 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { array( array( 'name' => 'bar.txt', - 'path' => 'files/shareddir/bar.txt', + 'path' => 'bar.txt', 'mimetype' => 'text/plain', ), array( 'name' => 'emptydir', - 'path' => 'files/shareddir/emptydir', + 'path' => 'emptydir', 'mimetype' => 'httpd/unix-directory', ), array( 'name' => 'subdir', - 'path' => 'files/shareddir/subdir', + 'path' => 'subdir', 'mimetype' => 'httpd/unix-directory', ), ), @@ -185,17 +185,17 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { array( array( 'name' => 'another too.txt', - 'path' => 'files/subdir/another too.txt', + 'path' => 'another too.txt', 'mimetype' => 'text/plain', ), array( 'name' => 'another.txt', - 'path' => 'files/subdir/another.txt', + 'path' => 'another.txt', 'mimetype' => 'text/plain', ), array( 'name' => 'not a text file.xml', - 'path' => 'files/subdir/not a text file.xml', + 'path' => 'not a text file.xml', 'mimetype' => 'application/xml', ), ), diff --git a/lib/private/share/share.php b/lib/private/share/share.php index c07dd04b29f..4e3e261baf5 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -896,6 +896,7 @@ class Share extends \OC\Share\Constants { $hookParams = array( 'itemType' => $item['item_type'], 'itemSource' => $item['item_source'], + 'fileSource' => $item['file_source'], 'shareType' => $item['share_type'], 'shareWith' => $item['share_with'], 'itemParent' => $item['parent'], -- cgit v1.2.3 From 93469ca46865d02d33710a2f70f7f6092c8f5c58 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 16 Apr 2014 16:41:23 +0200 Subject: make it possible to move files out of a shared mount point --- apps/files_sharing/lib/helper.php | 31 +++++++++++++++++++++++++++++++ apps/files_sharing/lib/sharedstorage.php | 27 ++++++++++++++------------- lib/private/files/view.php | 8 ++++---- 3 files changed, 49 insertions(+), 17 deletions(-) (limited to 'lib') diff --git a/apps/files_sharing/lib/helper.php b/apps/files_sharing/lib/helper.php index e2780e98935..cc1f7d9ffdf 100644 --- a/apps/files_sharing/lib/helper.php +++ b/apps/files_sharing/lib/helper.php @@ -145,4 +145,35 @@ class Helper { return $result; } + + public static function getUidAndFilename($filename) { + $uid = \OC\Files\Filesystem::getOwner($filename); + \OC\Files\Filesystem::initMountPoints($uid); + if ( $uid != \OCP\User::getUser() ) { + $info = \OC\Files\Filesystem::getFileInfo($filename); + $ownerView = new \OC\Files\View('/'.$uid.'/files'); + $filename = $ownerView->getPath($info['fileid']); + } + return array($uid, $filename); + } + + /** + * @brief Format a path to be relative to the /user/files/ directory + * @param string $path the absolute path + * @return string e.g. turns '/admin/files/test.txt' into 'test.txt' + */ + public static function stripUserFilesPath($path) { + $trimmed = ltrim($path, '/'); + $split = explode('/', $trimmed); + + // it is not a file relative to data/user/files + if (count($split) < 3 || $split[1] !== 'files') { + return false; + } + + $sliced = array_slice($split, 2); + $relPath = implode('/', $sliced); + + return $relPath; + } } diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index b8a799f720d..5e478d5ead8 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -362,6 +362,9 @@ class Shared extends \OC\Files\Storage\Common { public function rename($path1, $path2) { $sourceMountPoint = \OC\Files\Filesystem::getMountPoint($path1); + $targetMountPoint = \OC\Files\Filesystem::getMountPoint($path2); + $relPath1 = \OCA\Files_Sharing\Helper::stripUserFilesPath($path1); + $relPath2 = \OCA\Files_Sharing\Helper::stripUserFilesPath($path2); // if we renamed the mount point we need to adjust the file_target in the // database @@ -369,21 +372,19 @@ class Shared extends \OC\Files\Storage\Common { return $this->renameMountPoint($path1, $path2); } - // Renaming/moving is only allowed within shared folders - $oldSource = $this->getSourcePath($path1); - if ($oldSource) { - $newSource = $this->getSourcePath(dirname($path2)) . '/' . basename($path2); - // Within the same folder, we only need UPDATE permissions - if (dirname($path1) == dirname($path2) and $this->isUpdatable($path1)) { - list($storage, $oldInternalPath) = \OC\Files\Filesystem::resolvePath($oldSource); - list(, $newInternalPath) = \OC\Files\Filesystem::resolvePath($newSource); - return $storage->rename($oldInternalPath, $newInternalPath); + + if ( // Within the same mount point, we only need UPDATE permissions + ($sourceMountPoint === $targetMountPoint && $this->isUpdatable($sourceMountPoint)) || // otherwise DELETE and CREATE permissions required - } elseif ($this->isDeletable($path1) && $this->isCreatable(dirname($path2))) { - $rootView = new \OC\Files\View(''); - return $rootView->rename($oldSource, $newSource); - } + ($this->isDeletable($path1) && $this->isCreatable(dirname($path2)))) { + + list($user1, $path1) = \OCA\Files_Sharing\Helper::getUidAndFilename($relPath1); + $targetFilename = basename($relPath2); + list($user2, $path2) = \OCA\Files_Sharing\Helper::getUidAndFilename(dirname($relPath2)); + $rootView = new \OC\Files\View(''); + return $rootView->rename('/' . $user1 . '/files/' . $path1, '/' . $user2 . '/files/' . $path2 . '/' . $targetFilename); } + return false; } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index a61d58aaf24..58dfc73dcf3 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -410,16 +410,16 @@ class View { // if source and target are on the same storage we can call the rename operation from the // storage. If it is a "Shared" file/folder we call always the rename operation of the // shared storage to handle mount point renaming, etc correctly - if ($mp1 == $mp2) { + if ($storage1 instanceof \OC\Files\Storage\Shared) { if ($storage1) { - $result = $storage1->rename($internalPath1, $internalPath2); + $result = $storage1->rename($absolutePath1, $absolutePath2); \OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2); } else { $result = false; } - } elseif ($storage1 instanceof \OC\Files\Storage\Shared) { + } elseif ($mp1 == $mp2) { if ($storage1) { - $result = $storage1->rename($absolutePath1, $absolutePath2); + $result = $storage1->rename($internalPath1, $internalPath2); \OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2); } else { $result = false; -- cgit v1.2.3 From 7ef8f6d352811e635bc6cf99b56d9482a54eb791 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 17 Apr 2014 15:54:45 +0200 Subject: always allow to rename the share mount point --- apps/files/js/filelist.js | 13 ++++++++++++- apps/files/lib/helper.php | 3 +++ apps/files_sharing/lib/cache.php | 4 ++++ lib/private/connector/sabre/objecttree.php | 8 +++++++- 4 files changed, 26 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 343da217416..390bf4e0577 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -178,6 +178,13 @@ window.FileList = { if (type === 'dir') { mime = mime || 'httpd/unix-directory'; } + + // user should always be able to rename a share mount point + var allowRename = 0; + if (fileData.isShareMountPoint) { + allowRename = OC.PERMISSION_UPDATE; + } + //containing tr var tr = $('').attr({ "data-id" : fileData.id, @@ -187,7 +194,7 @@ window.FileList = { "data-mime": mime, "data-mtime": mtime, "data-etag": fileData.etag, - "data-permissions": fileData.permissions || this.getDirectoryPermissions() + "data-permissions": fileData.permissions | allowRename || this.getDirectoryPermissions() }); if (type === 'dir') { @@ -283,6 +290,10 @@ window.FileList = { mime = fileData.mimetype, permissions = parseInt(fileData.permissions, 10) || 0; + if (fileData.isShareMountPoint) { + permissions = permissions | OC.PERMISSION_UPDATE; + } + if (type === 'dir') { mime = mime || 'httpd/unix-directory'; } diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php index 88a5ffcfb61..0ae87d12fbf 100644 --- a/apps/files/lib/helper.php +++ b/apps/files/lib/helper.php @@ -96,6 +96,9 @@ class Helper if (isset($i['displayname_owner'])) { $entry['shareOwner'] = $i['displayname_owner']; } + if (isset($i['is_share_mount_point'])) { + $entry['isShareMountPoint'] = $i['is_share_mount_point']; + } return $entry; } diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 4a2f0ff08b2..67a0410ef76 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -91,6 +91,9 @@ class Shared_Cache extends Cache { $data = $cache->get($this->files[$file]); $data['displayname_owner'] = \OC_User::getDisplayName($this->storage->getSharedFrom()); $data['path'] = $path; + if ($file === '') { + $data['is_share_mount_point'] = true; + } return $data; } } else { @@ -123,6 +126,7 @@ class Shared_Cache extends Cache { } if (isset($mountPoint)) { $data['path'] = 'files/' . $mountPoint; + $data['is_share_mount_point'] = true; } return $data; } diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index d2fa425b22c..2956f608380 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -87,9 +87,15 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { list($sourceDir,) = \Sabre_DAV_URLUtil::splitPath($sourcePath); list($destinationDir,) = \Sabre_DAV_URLUtil::splitPath($destinationPath); + $isShareMountPoint = false; + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath( '/' . \OCP\User::getUser() . '/files/' . $sourcePath); + if ($storage instanceof \OC\Files\Storage\Shared && !$internalPath) { + $isShareMountPoint = true; + } + // check update privileges $fs = $this->getFileView(); - if (!$fs->isUpdatable($sourcePath)) { + if (!$fs->isUpdatable($sourcePath) && !$isShareMountPoint) { throw new \Sabre_DAV_Exception_Forbidden(); } if ($sourceDir !== $destinationDir) { -- cgit v1.2.3 From b312d38d38c4e391765beb0aadb6bd2eafd9cb2c Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 23 Apr 2014 12:59:22 +0200 Subject: remove hard-coded shared folder --- lib/private/share/share.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 4e3e261baf5..4a76a010ebd 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -223,7 +223,7 @@ class Share extends \OC\Share\Constants { } else { while ($row = $result->fetchRow()) { foreach ($fileTargets[$row['fileid']] as $uid => $shareData) { - $sharedPath = '/Shared' . $shareData['file_target']; + $sharedPath = $shareData['file_target']; $sharedPath .= substr($path, strlen($row['path']) -5); $sharePaths[$uid] = $sharedPath; } -- cgit v1.2.3 From ff0dab6e92f71dab31d902d2ae9a6ba87f0cea88 Mon Sep 17 00:00:00 2001 From: Volkan Gezer Date: Thu, 24 Apr 2014 01:42:18 +0200 Subject: This adds one more missing untranslated text from lib/share Also displays the untrusted domain warning in English --- lib/base.php | 5 +++-- lib/private/share/share.php | 7 ++++--- 2 files changed, 7 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/base.php b/lib/base.php index 83f54a8e4db..0f55c1175c7 100644 --- a/lib/base.php +++ b/lib/base.php @@ -698,6 +698,7 @@ class OC { * @brief Handle the request */ public static function handleRequest() { + $l = \OC_L10N::get('lib'); // load all the classpaths from the enabled apps so they are available // in the routing files of each app OC::loadAppClassPaths(); @@ -719,8 +720,8 @@ class OC { header('HTTP/1.1 400 Bad Request'); header('Status: 400 Bad Request'); OC_Template::printErrorPage( - 'You are accessing the server from an untrusted domain.', - 'Please contact your administrator' + $l->t('You are accessing the server from an untrusted domain.'), + $l->t('Please contact your administrator') ); return; } diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 3751b035bd4..fe756b5ae7f 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -477,9 +477,10 @@ class Share extends \OC\Share\Constants { if ($itemType === 'file' or $itemType === 'folder') { $path = \OC\Files\Filesystem::getPath($itemSource); if (!$path) { - $message = 'Sharing ' . $itemSourceName . ' failed, because the file does not exist'; - \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); - throw new \Exception($message); + $message = 'Sharing %s failed, because the file does not exist'; + $message_t = $l->t('Sharing %s failed, because the file does not exist', array($itemSourceName)); + \OC_Log::write('OCP\Share', sprintf($message, $itemSourceName), \OC_Log::ERROR); + throw new \Exception($message_t); } } -- cgit v1.2.3 From 435672feaa22c0fc3c8caf7f6dbaefa0edb6f5d3 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 24 Apr 2014 01:55:33 -0400 Subject: [tx-robot] updated from transifex --- apps/files/l10n/de.php | 1 + apps/files/l10n/de_DE.php | 3 +- apps/files/l10n/en_GB.php | 3 +- apps/files/l10n/et_EE.php | 1 + apps/files/l10n/fi_FI.php | 1 + apps/files/l10n/fr.php | 1 + apps/files/l10n/gl.php | 1 + apps/files/l10n/it.php | 1 + apps/files/l10n/nl.php | 1 + apps/files/l10n/pl.php | 1 + apps/files/l10n/pt_BR.php | 1 + apps/files/l10n/tr.php | 1 + apps/files_external/l10n/et_EE.php | 5 ++ apps/user_ldap/l10n/et_EE.php | 1 + core/l10n/et_EE.php | 1 + l10n/ach/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ady/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/af_ZA/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ak/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/am_ET/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ar/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ast/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/az/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/be/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/bg_BG/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/bn_BD/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/bs/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ca/lib.po | 114 +++++++++++++++++++++++++++-- l10n/cs_CZ/lib.po | 104 +++++++++++++++++++++++++- l10n/cs_CZ/settings.po | 10 +-- l10n/cy_GB/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/da/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/de/files.po | 26 +++---- l10n/de/lib.po | 120 +++++++++++++++++++++++++++--- l10n/de/settings.po | 8 +- l10n/de_AT/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/de_CH/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/de_DE/files.po | 26 +++---- l10n/de_DE/lib.po | 120 +++++++++++++++++++++++++++--- l10n/de_DE/settings.po | 8 +- l10n/el/lib.po | 104 +++++++++++++++++++++++++- l10n/en@pirate/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/en_GB/files.po | 26 +++---- l10n/en_GB/lib.po | 104 +++++++++++++++++++++++++- l10n/en_GB/settings.po | 10 +-- l10n/eo/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/es/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/es_AR/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/es_CL/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/es_CR/lib.po | 102 +++++++++++++++++++++++++- l10n/es_MX/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/et_EE/core.po | 32 ++++---- l10n/et_EE/files.po | 24 +++--- l10n/et_EE/files_external.po | 26 +++---- l10n/et_EE/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/et_EE/settings.po | 14 ++-- l10n/et_EE/user_ldap.po | 30 ++++---- l10n/eu/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/eu_ES/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/fa/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/fi_FI/files.po | 24 +++--- l10n/fi_FI/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/fi_FI/settings.po | 14 ++-- l10n/fr/files.po | 24 +++--- l10n/fr/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/fr/settings.po | 8 +- l10n/fr_CA/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/gl/files.po | 24 +++--- l10n/gl/lib.po | 112 ++++++++++++++++++++++++++-- l10n/gl/settings.po | 8 +- l10n/he/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/hi/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/hr/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/hu_HU/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/hy/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ia/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/id/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/is/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/it/files.po | 25 ++++--- l10n/it/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/it/settings.po | 10 +-- l10n/ja/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/jv/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ka_GE/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/km/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/kn/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ko/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ku_IQ/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/lb/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/lt_LT/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/lv/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/mk/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ml/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ml_IN/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/mn/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ms_MY/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/my_MM/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/nb_NO/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/nds/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ne/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/nl/files.po | 24 +++--- l10n/nl/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/nl/settings.po | 8 +- l10n/nn_NO/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/nqo/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/oc/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/or_IN/lib.po | 102 +++++++++++++++++++++++++- l10n/pa/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/pl/files.po | 24 +++--- l10n/pl/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/pl/settings.po | 8 +- l10n/pt_BR/files.po | 24 +++--- l10n/pt_BR/lib.po | 104 +++++++++++++++++++++++++- l10n/pt_BR/settings.po | 8 +- l10n/pt_PT/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ro/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ru/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/si_LK/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/sk/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/sk_SK/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/sl/lib.po | 104 +++++++++++++++++++++++++- l10n/sq/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/sr/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/sr@latin/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/su/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/sv/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/sw_KE/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ta_LK/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/te/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/templates/core.pot | 26 +++---- l10n/templates/files.pot | 18 ++--- 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 | 100 ++++++++++++++++++++++++- l10n/templates/private.pot | 100 ++++++++++++++++++++++++- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 24 +++--- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/tr/core.po | 28 +++---- l10n/tr/files.po | 24 +++--- l10n/tr/lib.po | 118 +++++++++++++++++++++++++++--- l10n/tr/settings.po | 12 +-- l10n/tzm/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ug/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/uk/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ur/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ur_PK/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/uz/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/vi/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/zh_CN/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/zh_HK/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/zh_TW/lib.po | 140 +++++++++++++++++++++++++++++------ lib/l10n/et_EE.php | 1 + lib/l10n/tr.php | 14 ++-- settings/l10n/cs_CZ.php | 2 + settings/l10n/de.php | 1 + settings/l10n/de_DE.php | 1 + settings/l10n/en_GB.php | 3 +- settings/l10n/et_EE.php | 4 + settings/l10n/fi_FI.php | 4 + settings/l10n/fr.php | 1 + settings/l10n/gl.php | 1 + settings/l10n/it.php | 1 + settings/l10n/nl.php | 1 + settings/l10n/pl.php | 1 + settings/l10n/pt_BR.php | 1 + settings/l10n/tr.php | 5 +- 171 files changed, 12284 insertions(+), 2247 deletions(-) (limited to 'lib') diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index c1f5f3a9367..f1ef552b47f 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Geändert", "Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", +"Upload (max. %s)" => "Hochladen (max. %s)", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 83d8c253eeb..6c4830081f4 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Geändert", "Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", +"Upload (max. %s)" => "Hochladen (max. %s)", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", @@ -75,7 +76,7 @@ $TRANSLATIONS = array( "New" => "Neu", "New text file" => "Neue Textdatei", "Text file" => "Textdatei", -"New folder" => "Neues Ordner", +"New folder" => "Neuer Ordner", "Folder" => "Ordner", "From link" => "Von einem Link", "Deleted files" => "Gelöschte Dateien", diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index d57f9434535..2084b61c840 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modified", "Invalid folder name. Usage of 'Shared' is reserved." => "Invalid folder name. Usage of 'Shared' is reserved.", "%s could not be renamed" => "%s could not be renamed", +"Upload (max. %s)" => "Upload (max. %s)", "File handling" => "File handling", "Maximum upload size" => "Maximum upload size", "max. possible: " => "max. possible: ", @@ -87,6 +88,6 @@ $TRANSLATIONS = array( "Upload too large" => "Upload too large", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "The files you are trying to upload exceed the maximum size for file uploads on this server.", "Files are being scanned, please wait." => "Files are being scanned, please wait.", -"Current scanning" => "Current scanning" +"Current scanning" => "Currently scanning" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index ec7c4af85be..ed16e38ac72 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Muudetud", "Invalid folder name. Usage of 'Shared' is reserved." => "Vigane kausta nimi. Nime 'Shared' kasutamine on reserveeritud.", "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", +"Upload (max. %s)" => "Üleslaadimine (max. %s)", "File handling" => "Failide käsitlemine", "Maximum upload size" => "Maksimaalne üleslaadimise suurus", "max. possible: " => "maks. võimalik: ", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 530a68e5369..97216ff869e 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -60,6 +60,7 @@ $TRANSLATIONS = array( "Modified" => "Muokattu", "Invalid folder name. Usage of 'Shared' is reserved." => "Virheellinen kansion nimi. 'Shared':n käyttö on varattu.", "%s could not be renamed" => "kohteen %s nimeäminen uudelleen epäonnistui", +"Upload (max. %s)" => "Lähetys (enintään %s)", "File handling" => "Tiedostonhallinta", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", "max. possible: " => "suurin mahdollinen:", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 0ae5180b664..356ce574ed0 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modifié", "Invalid folder name. Usage of 'Shared' is reserved." => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée.", "%s could not be renamed" => "%s ne peut être renommé", +"Upload (max. %s)" => "Envoi (max. %s)", "File handling" => "Gestion des fichiers", "Maximum upload size" => "Taille max. d'envoi", "max. possible: " => "Max. possible :", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 18e0481a2a3..152bdfd7fdc 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome de cartafol non válido. O uso de «Shared» está reservado.", "%s could not be renamed" => "%s non pode cambiar de nome", +"Upload (max. %s)" => "Envío (máx. %s)", "File handling" => "Manexo de ficheiro", "Maximum upload size" => "Tamaño máximo do envío", "max. possible: " => "máx. posíbel: ", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 64abf0bfed9..0ec7e34f7aa 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modificato", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome della cartella non valido. L'uso di 'Shared' è riservato.", "%s could not be renamed" => "%s non può essere rinominato", +"Upload (max. %s)" => "Carica (massimo %s)", "File handling" => "Gestione file", "Maximum upload size" => "Dimensione massima upload", "max. possible: " => "numero mass.: ", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 779a651602d..746c5b9c00e 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Aangepast", "Invalid folder name. Usage of 'Shared' is reserved." => "Ongeldige mapnaam. Gebruik van 'Shared' is gereserveerd.", "%s could not be renamed" => "%s kon niet worden hernoemd", +"Upload (max. %s)" => "Upload (max. %s)", "File handling" => "Bestand", "Maximum upload size" => "Maximale bestandsgrootte voor uploads", "max. possible: " => "max. mogelijk: ", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 5a5b057e633..d0d05564d18 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modyfikacja", "Invalid folder name. Usage of 'Shared' is reserved." => "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane.", "%s could not be renamed" => "%s nie można zmienić nazwy", +"Upload (max. %s)" => "Wysyłka (max. %s)", "File handling" => "Zarządzanie plikami", "Maximum upload size" => "Maksymalny rozmiar wysyłanego pliku", "max. possible: " => "maks. możliwy:", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 35d2d551703..d0b741196db 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome da pasta inválido. Uso de 'Shared' é reservado.", "%s could not be renamed" => "%s não pode ser renomeado", +"Upload (max. %s)" => "Envio (max. %s)", "File handling" => "Tratamento de Arquivo", "Maximum upload size" => "Tamanho máximo para carregar", "max. possible: " => "max. possível:", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 46f5af30719..586c81072a8 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Değiştirilme", "Invalid folder name. Usage of 'Shared' is reserved." => "Geçersiz klasör adı. 'Shared' ismi ayrılmıştır.", "%s could not be renamed" => "%s yeniden adlandırılamadı", +"Upload (max. %s)" => "Yükle (azami: %s)", "File handling" => "Dosya işlemleri", "Maximum upload size" => "Maksimum yükleme boyutu", "max. possible: " => "mümkün olan en fazla: ", diff --git a/apps/files_external/l10n/et_EE.php b/apps/files_external/l10n/et_EE.php index 0589d9fd518..4da749b155b 100644 --- a/apps/files_external/l10n/et_EE.php +++ b/apps/files_external/l10n/et_EE.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Palun sisesta korrektne Dropboxi rakenduse võti ja salasõna.", "Error configuring Google Drive storage" => "Viga Google Drive'i salvestusruumi seadistamisel", "Saved" => "Salvestatud", +"Note: " => "Märkus:", +" and " => "ja", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Märkus: cURL tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata cURL tugi.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Märkus: FTP tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Märkus: \"%s\" pole paigaldatud. Hoidla %s ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata vajalik tugi.", "External Storage" => "Väline salvestuskoht", "Folder name" => "Kausta nimi", "External storage" => "Väline andmehoidla", diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index f52449bda8b..11941bf4ac9 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Varuserveri (replika) port", "Disable Main Server" => "Ära kasuta peaserverit", "Only connect to the replica server." => "Ühendu ainult replitseeriva serveriga.", +"Case insensitive LDAP server (Windows)" => "Tõusutundetu LDAP server (Windows)", "Turn off SSL certificate validation." => "Lülita SSL sertifikaadi kontrollimine välja.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Pole soovitatav, kasuta seda ainult testimiseks! Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma %s serverisse.", "Cache Time-To-Live" => "Puhvri iga", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index f0e05e571ee..4807bc0414c 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} failikonflikt","{count} failikonflikti"), "One file conflict" => "Üks failikonflikt", "New Files" => "Uued failid", +"Already existing files" => "Juba olemasolevad failid", "Which files do you want to keep?" => "Milliseid faile sa soovid alles hoida?", "If you select both versions, the copied file will have a number added to its name." => "Kui valid mõlemad versioonid, siis lisatakse kopeeritud faili nimele number.", "Cancel" => "Loobu", diff --git a/l10n/ach/lib.po b/l10n/ach/lib.po index 3e9a97a32ff..b058b62142f 100644 --- a/l10n/ach/lib.po +++ b/l10n/ach/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po index 07c60bce626..ec381a0d66a 100644 --- a/l10n/ady/lib.po +++ b/l10n/ady/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 47d21e1c5b7..1f22386958d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Gebruikers" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ak/lib.po b/l10n/ak/lib.po index 1404a2e7a6a..496d2a7f1df 100644 --- a/l10n/ak/lib.po +++ b/l10n/ak/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/am_ET/lib.po b/l10n/am_ET/lib.po index 2412812c9c1..4f1c550a53b 100644 --- a/l10n/am_ET/lib.po +++ b/l10n/am_ET/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 1ac427fb619..92ff9686448 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "المستخدمين" msgid "Admin" msgstr "المدير" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "خطا في ترقية \"%s\"." @@ -75,7 +75,7 @@ msgstr "تحميل ملفات ZIP متوقف" msgid "Files need to be downloaded one by one." msgstr "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "العودة الى الملفات" @@ -149,15 +149,15 @@ msgstr "لا يمكن إنشاء مجلد التطبيق. يرجى تعديل ا msgid "Application is not enabled" msgstr "التطبيق غير مفعّل" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "لم يتم التأكد من الشخصية بنجاح" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "المستخدم غير معروف" @@ -286,16 +286,114 @@ msgstr "الرجاء التحقق من دليل التنصيب. msgid "%s shared »%s« with you" msgstr "%s شارك »%s« معك" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "تعذر العثور على المجلد \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "منذ ثواني" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -305,7 +403,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -315,15 +413,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "اليوم" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "يوم أمس" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -333,11 +431,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "الشهر الماضي" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -347,28 +445,28 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "السنةالماضية" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "سنة مضت" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "يجب ادخال اسم مستخدم صحيح" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "يجب ادخال كلمة مرور صحيحة" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ast/lib.po b/l10n/ast/lib.po index 7608549ac6d..cf11aa5cedb 100644 --- a/l10n/ast/lib.po +++ b/l10n/ast/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 09:20+0000\n" -"Last-Translator: Tornes Llume \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,7 +49,7 @@ msgstr "Usuarios" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Fallu al anovar \"%s\"." @@ -74,7 +74,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "L'aplicación nun ta habilitada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,73 +285,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nun pudo alcontrase la estaya \"%s.\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "fai segundos" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "fai %n minutos" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "fai %n hores" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "güei" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ayeri" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "fai %n díes" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mes caberu" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "fai %n meses" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "añu caberu" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "fai años" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index 7c931cb158b..4ca3ad7e7c9 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 3a42b36b154..1ec5525d65f 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,16 +284,114 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Секунд таму" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -301,7 +399,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -309,15 +407,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "Сёння" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "Ўчора" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -325,11 +423,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "У мінулым месяцы" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -337,28 +435,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "У мінулым годзе" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "Гадоў таму" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 2f128367a94..04985c07165 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Потребители" msgid "Admin" msgstr "Админ" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "Изтеглянето като ZIP е изключено." msgid "Files need to be downloaded one by one." msgstr "Файловете трябва да се изтеглят един по един." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Назад към файловете" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Приложението не е включено." -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Възникна проблем с идентификацията" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Ключът е изтекъл, моля презаредете страницата" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,73 +285,171 @@ msgstr "Моля направете повторна справка с guies d'instal·lació." msgid "%s shared »%s« with you" msgstr "%s ha compartit »%s« amb tu" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index a6d2b528e15..d0af5364146 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 17:44+0000\n" -"Last-Translator: svetlemodry \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -290,6 +290,104 @@ msgstr "Zkonzultujte, prosím, průvodce instalací." msgid "%s shared »%s« with you" msgstr "%s s vámi sdílí »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 711ef3ddccc..6b6765065a5 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 20:00+0000\n" +"Last-Translator: svetlemodry \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" @@ -94,7 +94,7 @@ msgstr "Nelze přidat skupinu" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Soubory úspěšně dešifrovány" #: ajax/decryptall.php:33 msgid "" @@ -529,7 +529,7 @@ msgstr "Povolit e-mailová upozornění" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index f58729ece0b..d9647cd3f3c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Defnyddwyr" msgid "Admin" msgstr "Gweinyddu" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Mae llwytho ZIP wedi ei ddiffodd." msgid "Files need to be downloaded one by one." msgstr "Mae angen llwytho ffeiliau i lawr fesul un." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Nôl i Ffeiliau" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Nid yw'r pecyn wedi'i alluogi" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Gwall dilysu" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Tocyn wedi dod i ben. Ail-lwythwch y dudalen." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,16 +284,114 @@ msgstr "Gwiriwch y canllawiau gosod eto." msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Methu canfod categori \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "eiliad yn ôl" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -301,7 +399,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -309,15 +407,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "heddiw" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ddoe" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -325,11 +423,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mis diwethaf" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -337,28 +435,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "y llynedd" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "blwyddyn yn ôl" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 6bef7060df0..d669abb752d 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -52,7 +52,7 @@ msgstr "Brugere" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgradering af \"%s\" fejlede" @@ -77,7 +77,7 @@ msgstr "ZIP-download er slået fra." msgid "Files need to be downloaded one by one." msgstr "Filer skal downloades en for en." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Tilbage til Filer" @@ -151,15 +151,15 @@ msgstr "Kan ikke oprette app-mappe. Ret tilladelser. %s" msgid "Application is not enabled" msgstr "Programmet er ikke aktiveret" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Adgangsfejl" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Adgang er udløbet. Genindlæs siden." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Ukendt bruger" @@ -288,73 +288,171 @@ msgstr "Dobbelttjek venligst installations vejledningerne." msgid "%s shared »%s« with you" msgstr "%s delte »%s« med sig" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kunne ikke finde kategorien \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekunder siden" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "i dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "sidste måned" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "sidste år" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "år siden" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Et gyldigt brugernavn skal angives" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/de/files.po b/l10n/de/files.po index 973943e7a26..63e23b8bf2a 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -6,7 +6,7 @@ # I Robot, 2013 # I Robot, 2014 # Marcel Kühlhorn , 2013 -# Mario Siegmann , 2013 +# Mario Siegmann , 2013-2014 # ninov , 2013 # Pwnicorn , 2013 # stefanniedermann , 2014 @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 09:40+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -185,7 +185,7 @@ msgstr "Die URL darf nicht leer sein" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" @@ -221,35 +221,35 @@ msgstr "Fehler beim Verschieben der Datei" msgid "Error" msgstr "Fehler" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" @@ -316,7 +316,7 @@ msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Hochladen (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 6325eb843cc..fb985f57f25 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-14 01:54-0400\n" -"PO-Revision-Date: 2014-04-13 20:56+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Benutzer" msgid "Admin" msgstr "Administration" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -79,7 +79,7 @@ msgstr "Der ZIP-Download ist deaktiviert." msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" @@ -153,15 +153,15 @@ msgstr "Es kann kein Applikationsordner erstellt werden. Bitte passe die Berech msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Fehler bei der Anmeldung" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte lade die Seite neu." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Unbekannter Benutzer" @@ -290,6 +290,104 @@ msgstr "Bitte prüfe die Installationsanleitungen." msgid "%s shared »%s« with you" msgstr "%s teilte »%s« mit Dir" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" @@ -343,20 +441,20 @@ msgstr "Letztes Jahr" msgid "years ago" msgstr "Vor Jahren" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Folgende Zeichen sind im Benutzernamen erlaubt: \"a-z\", \"A-Z\", \"0-9\" und \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Dieser Benutzername existiert bereits" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 573b92899fd..70f58f382ad 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 09:40+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -530,7 +530,7 @@ msgstr "Mail-Benachrichtigung erlauben" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index bc182373dba..dda2e8bf4ec 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index b39979b3657..24f9b93858a 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "Benutzer" msgid "Admin" msgstr "Administrator" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -77,7 +77,7 @@ msgstr "Der ZIP-Download ist deaktiviert." msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" @@ -151,15 +151,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -288,73 +288,171 @@ msgstr "Bitte prüfen Sie die Installationsanleitungen." msgid "%s shared »%s« with you" msgstr "%s teilt »%s« mit Ihnen" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Die Kategorie «%s» konnte nicht gefunden werden." -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Gerade eben" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "Vor %n Minuten" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "Vor %n Stunden" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "Heute" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "Gestern" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "Vor %n Tagen" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "Letzten Monat" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "Vor %n Monaten" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "Letztes Jahr" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "Vor Jahren" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 843016e5ae1..ccb5acaeff1 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -8,7 +8,7 @@ # I Robot, 2013 # I Robot, 2014 # Marcel Kühlhorn , 2013 -# Mario Siegmann , 2013 +# Mario Siegmann , 2013-2014 # stefanniedermann , 2014 # traductor, 2013 # noxin , 2013 @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 13:50+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -188,7 +188,7 @@ msgstr "Die URL darf nicht leer sein" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" @@ -224,35 +224,35 @@ msgstr "Fehler beim Verschieben der Datei" msgid "Error" msgstr "Fehler" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hoch geladen" @@ -319,7 +319,7 @@ msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Hochladen (max. %s)" #: templates/admin.php:4 msgid "File handling" @@ -367,7 +367,7 @@ msgstr "Textdatei" #: templates/index.php:12 msgid "New folder" -msgstr "Neues Ordner" +msgstr "Neuer Ordner" #: templates/index.php:13 msgid "Folder" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index a33e633646b..4447942d676 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-14 01:54-0400\n" -"PO-Revision-Date: 2014-04-13 20:58+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Benutzer" msgid "Admin" msgstr "Administrator" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -79,7 +79,7 @@ msgstr "Der ZIP-Download ist deaktiviert." msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" @@ -153,15 +153,15 @@ msgstr "Der Ordner für die Anwendung konnte nicht angelegt werden. Bitte überp msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Unbekannter Benutzer" @@ -290,6 +290,104 @@ msgstr "Bitte prüfen Sie die Installationsanleitungen." msgid "%s shared »%s« with you" msgstr "%s hat »%s« mit Ihnen geteilt" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" @@ -343,20 +441,20 @@ msgstr "Letztes Jahr" msgid "years ago" msgstr "Vor Jahren" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Folgende Zeichen sind im Benutzernamen erlaubt: \"a-z\", \"A-Z\", \"0-9\" und \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Der Benutzername existiert bereits" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index e769fdb0a04..6d79de897ed 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 09:40+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -530,7 +530,7 @@ msgstr "Mail-Benachrichtigung erlauben" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 35ac8cf3935..edea3a7e211 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 21:50+0000\n" -"Last-Translator: Γιάννης Ανθυμίδης \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -289,6 +289,104 @@ msgstr "Ελέγξτε ξανά τις οδηγίες εγκατά msgid "%s shared »%s« with you" msgstr "Ο %s διαμοιράστηκε μαζί σας το »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index ac875a524d7..5a7e2c17467 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 8d455ef98fa..862e41169c8 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:31+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -178,7 +178,7 @@ msgstr "URL cannot be empty" msgid "In the home folder 'Shared' is a reserved filename" msgstr "In the home folder 'Shared' is a reserved file name" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} already exists" @@ -214,35 +214,35 @@ msgstr "Error moving file" msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Pending" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Could not rename file" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Error deleting file." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" msgstr[1] "%n folders" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n files" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} and {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploading %n file" @@ -309,7 +309,7 @@ msgstr "%s could not be renamed" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Upload (max. %s)" #: templates/admin.php:4 msgid "File handling" @@ -407,4 +407,4 @@ msgstr "Files are being scanned, please wait." #: templates/index.php:106 msgid "Current scanning" -msgstr "Current scanning" +msgstr "Currently scanning" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 0cc06ec6007..0d6696a6176 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-22 09:37+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -285,6 +285,104 @@ msgstr "Please double check the installation guides." msgid "%s shared »%s« with you" msgstr "%s shared \"%s\" with you" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index c09c1b3e9c2..6b178f05eba 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:31+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -301,7 +301,7 @@ msgstr "Warning: Home directory for user \"{user}\" already exists" #: personal.php:48 personal.php:49 msgid "__language_name__" -msgstr "__language_name__" +msgstr "English (British English)" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" @@ -522,7 +522,7 @@ msgstr "Allow mail notification" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Allow users to send mail notification for shared files" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index ac9e0fc8f4f..3943f0c74ce 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Uzantoj" msgid "Admin" msgstr "Administranto" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "ZIP-elŝuto estas malkapabligita." msgid "Files need to be downloaded one by one." msgstr "Dosieroj devas elŝutiĝi unuope." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Reen al la dosieroj" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "La aplikaĵo ne estas kapabligita" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Aŭtentiga eraro" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,73 +285,171 @@ msgstr "Bonvolu duoble kontroli la gvidilon por instalo." msgid "%s shared »%s« with you" msgstr "%s kunhavigis “%s” kun vi" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ne troviĝis kategorio “%s”" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "antaŭ %n minutoj" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "antaŭ %n horoj" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hodiaŭ" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "hieraŭ" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "antaŭ %n tagoj" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "lastamonate" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "antaŭ %n monatoj" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "lastajare" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "jaroj antaŭe" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 91209fc57d5..aa43afb5155 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 15:50+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -55,7 +55,7 @@ msgstr "Usuarios" msgid "Admin" msgstr "Administración" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falló la actualización \"%s\"." @@ -80,7 +80,7 @@ msgstr "La descarga en ZIP está desactivada." msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Volver a Archivos" @@ -154,15 +154,15 @@ msgstr "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Error de autenticación" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirado. Por favor, recarga la página." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Usuario desconocido" @@ -291,73 +291,171 @@ msgstr "Por favor, vuelva a comprobar las guías de instalaciónguía de instalaciónguías de instalación\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" @@ -136,59 +136,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Seaded" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "Salvestamine..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut tagasi" msgstr[1] "%n minutit tagasi" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tund tagasi" msgstr[1] "%n tundi tagasi" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "täna" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "eile" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päev tagasi" msgstr[1] "%n päeva tagasi" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuu tagasi" msgstr[1] "%n kuud tagasi" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "aastat tagasi" @@ -232,7 +232,7 @@ msgstr "Uued failid" #: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "Juba olemasolevad failid" #: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 6dd46cb0f2c..9780dd446f5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:23+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" @@ -179,7 +179,7 @@ msgstr "URL ei saa olla tühi" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Kodukataloogis 'Shared' on reserveeritud failinimi" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" @@ -215,35 +215,35 @@ msgstr "Viga faili eemaldamisel" msgid "Error" msgstr "Viga" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Ei suuda faili ümber nimetada" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Viga faili kustutamisel." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kataloog" msgstr[1] "%n kataloogi" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" msgstr[1] "%n faili" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laadin üles %n faili" @@ -310,7 +310,7 @@ msgstr "%s ümbernimetamine ebaõnnestus" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Üleslaadimine (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 094d7f16ab5..6c6de1a4379 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:43+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" @@ -43,34 +43,34 @@ msgstr "Viga Google Drive'i salvestusruumi seadistamisel" msgid "Saved" msgstr "Salvestatud" -#: lib/config.php:592 +#: lib/config.php:598 msgid "Note: " -msgstr "" +msgstr "Märkus:" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " -msgstr "" +msgstr "ja" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Märkus: cURL tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata cURL tugi." -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Märkus: FTP tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi." -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Märkus: \"%s\" pole paigaldatud. Hoidla %s ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata vajalik tugi." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 7602de2d16e..f6146366c68 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Kasutajad" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ebaõnnestunud uuendus \"%s\"." @@ -75,7 +75,7 @@ msgstr "ZIP-ina allalaadimine on välja lülitatud." msgid "Files need to be downloaded one by one." msgstr "Failid tuleb alla laadida ükshaaval." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Tagasi failide juurde" @@ -149,15 +149,15 @@ msgstr "Ei saa luua rakendi kataloogi. Palun korrigeeri õigusi. %s" msgid "Application is not enabled" msgstr "Rakendus pole sisse lülitatud" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentimise viga" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Kontrollkood aegus. Paelun lae leht uuesti." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Tundmatu kasutaja" @@ -286,73 +286,171 @@ msgstr "Palun tutvu veelkord paigalduse juhenditega." msgid "%s shared »%s« with you" msgstr "%s jagas sinuga »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ei leia kategooriat \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekundit tagasi" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutit tagasi" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n tundi tagasi" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "täna" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "eile" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n päeva tagasi" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "viimasel kuul" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n kuud tagasi" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "viimasel aastal" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "aastat tagasi" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Kasutajanimes on lubatud ainult järgnevad tähemärgid: \"a-z\", \"A-Z\", \"0-9\" ja \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Sisesta nõuetele vastav kasutajatunnus" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Sisesta nõuetele vastav parool" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Kasutajanimi on juba kasutuses" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 8aa434c9821..188aaff2c69 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,17 +88,17 @@ msgstr "Keela grupi lisamine" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Failide krüpteerimine õnnestus" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Ei suutnud faile dekrüpteerida, palun kontrolli oma owncloud.log-i või küsi nõu administraatorilt" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Ei suutnud failde dekrüpteerida, kontrolli parooli ja proovi uuesti" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -523,7 +523,7 @@ msgstr "Luba teavitused e-postiga" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 71a4cf2bf27..9735b87dbe6 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:17+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" @@ -88,43 +88,43 @@ msgstr "Korras" msgid "Error" msgstr "Viga" -#: js/settings.js:838 +#: js/settings.js:780 msgid "Configuration OK" msgstr "Seadistus on korras" -#: js/settings.js:847 +#: js/settings.js:789 msgid "Configuration incorrect" msgstr "Seadistus on vigane" -#: js/settings.js:856 +#: js/settings.js:798 msgid "Configuration incomplete" msgstr "Seadistus on puudulik" -#: js/settings.js:873 js/settings.js:882 +#: js/settings.js:815 js/settings.js:824 msgid "Select groups" msgstr "Vali grupid" -#: js/settings.js:876 js/settings.js:885 +#: js/settings.js:818 js/settings.js:827 msgid "Select object classes" msgstr "Vali objekti klassid" -#: js/settings.js:879 +#: js/settings.js:821 msgid "Select attributes" msgstr "Vali atribuudid" -#: js/settings.js:906 +#: js/settings.js:848 msgid "Connection test succeeded" msgstr "Ühenduse testimine õnnestus" -#: js/settings.js:913 +#: js/settings.js:855 msgid "Connection test failed" msgstr "Ühenduse testimine ebaõnnestus" -#: js/settings.js:922 +#: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" msgstr "Oled kindel, et tahad kustutada praegust serveri seadistust?" -#: js/settings.js:923 +#: js/settings.js:865 msgid "Confirm Deletion" msgstr "Kinnita kustutamine" @@ -146,7 +146,7 @@ msgstr[1] "%s kasutajat leitud" msgid "Invalid Host" msgstr "Vigane server" -#: lib/wizard.php:983 +#: lib/wizard.php:984 msgid "Could not find the desired feature" msgstr "Ei suuda leida soovitud funktsioonaalsust" @@ -338,7 +338,7 @@ msgstr "Ühendu ainult replitseeriva serveriga." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Tõusutundetu LDAP server (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 6c379c48627..e2eee4be457 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Erabiltzaileak" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ezin izan da \"%s\" eguneratu." @@ -75,7 +75,7 @@ msgstr "ZIP deskarga ez dago gaituta." msgid "Files need to be downloaded one by one." msgstr "Fitxategiak banan-banan deskargatu behar dira." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Itzuli fitxategietara" @@ -149,15 +149,15 @@ msgstr "Ezin izan da aplikazioaren karpeta sortu. Mesdez konpondu baimenak. %s" msgid "Application is not enabled" msgstr "Aplikazioa ez dago gaituta" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentifikazio errorea" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Tokena iraungitu da. Mesedez birkargatu orria." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -286,73 +286,171 @@ msgstr "Mesedez begiratu instalazio gidak." msgid "%s shared »%s« with you" msgstr "%s-ek »%s« zurekin partekatu du" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ezin da \"%s\" kategoria aurkitu" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "segundu" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "gaur" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "atzo" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "joan den hilabetean" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "joan den urtean" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "urte" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Baliozko erabiltzaile izena eman behar da" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Baliozko pasahitza eman behar da" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Erabiltzaile izena dagoeneko erabiltzen ari da" diff --git a/l10n/eu_ES/lib.po b/l10n/eu_ES/lib.po index 73af4f395d6..2fbdf0eae66 100644 --- a/l10n/eu_ES/lib.po +++ b/l10n/eu_ES/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 2f2c29cb563..8a60e81be0a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "کاربران" msgid "Admin" msgstr "مدیر" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "دانلود به صورت فشرده غیر فعال است" msgid "Files need to be downloaded one by one." msgstr "فایل ها باید به صورت یکی یکی دانلود شوند" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "بازگشت به فایل ها" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "برنامه فعال نشده است" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "خطا در اعتبار سنجی" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "رمز منقضی شده است. لطفا دوباره صفحه را بارگذاری نمایید." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,69 +285,167 @@ msgstr "لطفاً دوباره راهنمای نصبرا بر msgid "%s shared »%s« with you" msgstr "%s به اشتراک گذاشته شده است »%s« توسط شما" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "دسته بندی %s یافت نشد" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "امروز" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "دیروز" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ماه قبل" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "سال قبل" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "سال‌های قبل" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "نام کاربری صحیح باید وارد شود" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "رمز عبور صحیح باید وارد شود" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 6cf56c8282b..df5e50b6732 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 08:11+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" @@ -180,7 +180,7 @@ msgstr "Osoite ei voi olla tyhjä" msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" @@ -216,35 +216,35 @@ msgstr "Virhe tiedostoa siirrettäessä" msgid "Error" msgstr "Virhe" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Tiedoston nimeäminen uudelleen epäonnistui" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Virhe tiedostoa poistaessa." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kansio" msgstr[1] "%n kansiota" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tiedosto" msgstr[1] "%n tiedostoa" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lähetetään %n tiedosto" @@ -311,7 +311,7 @@ msgstr "kohteen %s nimeäminen uudelleen epäonnistui" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Lähetys (enintään %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 68427d6e24a..5f02f3c05ff 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 12:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Käyttäjät" msgid "Admin" msgstr "Ylläpitäjä" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kohteen \"%s\" päivitys epäonnistui." @@ -74,7 +74,7 @@ msgstr "ZIP-lataus on poistettu käytöstä." msgid "Files need to be downloaded one by one." msgstr "Tiedostot on ladattava yksittäin." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Takaisin tiedostoihin" @@ -148,15 +148,15 @@ msgstr "Sovelluskansion luominen ei onnistu. Korjaa käyttöoikeudet. %s" msgid "Application is not enabled" msgstr "Sovellusta ei ole otettu käyttöön" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Tunnistautumisvirhe" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Valtuutus vanheni. Lataa sivu uudelleen." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Tuntematon käyttäjä" @@ -285,73 +285,171 @@ msgstr "Lue tarkasti asennusohjeet." msgid "%s shared »%s« with you" msgstr "%s jakoi kohteen »%s« kanssasi" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Luokkaa \"%s\" ei löytynyt" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekuntia sitten" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "tänään" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "eilen" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "viime kuussa" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "viime vuonna" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "vuotta sitten" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Vain seuraavat merkit ovat sallittuja käyttäjätunnuksessa: \"a-z\", \"A-Z\", \"0-9\" ja \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Anna kelvollinen käyttäjätunnus" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Anna kelvollinen salasana" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Käyttäjätunnus on jo käytössä" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index a29b87e036b..ad7595a433a 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 08:11+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" @@ -356,7 +356,7 @@ msgstr "Turvallisuusvaroitus" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Käytät %sia HTTP-yhteydellä. Suosittelemme määrittämään palvelimen vaatimaan salattua HTTPS-yhteyttä." #: templates/admin.php:64 msgid "" @@ -522,7 +522,7 @@ msgstr "Salli sähköposti-ilmoitukset" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" #: templates/admin.php:261 msgid "Security" @@ -743,7 +743,7 @@ msgstr "Joko png- tai jpg-kuva. Mieluite neliö, voit kuitenkin rajata kuvaa." #: templates/personal.php:100 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "Avatar-kuvasi pohjautuu alkuperäiseen tiliisi." #: templates/personal.php:104 msgid "Cancel" @@ -778,7 +778,7 @@ msgstr "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostoje #: templates/personal.php:157 msgid "Log-in password" -msgstr "" +msgstr "Kirjautumissalasana" #: templates/personal.php:162 msgid "Decrypt all Files" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 84a033faa67..3b84f9ce30e 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 08:11+0000\n" +"Last-Translator: Christophe Lherieau \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" @@ -182,7 +182,7 @@ msgstr "L'URL ne peut pas être vide" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Dans le dossier home, 'Partagé' est un nom de fichier réservé" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" @@ -218,35 +218,35 @@ msgstr "Erreur lors du déplacement du fichier" msgid "Error" msgstr "Erreur" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "En attente" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Impossible de renommer le fichier" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Erreur pendant la suppression du fichier." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dossier" msgstr[1] "%n dossiers" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fichier" msgstr[1] "%n fichiers" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} et {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Téléversement de %n fichier" @@ -313,7 +313,7 @@ msgstr "%s ne peut être renommé" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Envoi (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index f556076b575..1ad2227f67b 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 11:50+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -52,7 +52,7 @@ msgstr "Utilisateurs" msgid "Admin" msgstr "Administration" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Echec de la mise à niveau \"%s\"." @@ -77,7 +77,7 @@ msgstr "Téléchargement ZIP désactivé." msgid "Files need to be downloaded one by one." msgstr "Les fichiers nécessitent d'être téléchargés un par un." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Retour aux Fichiers" @@ -151,15 +151,15 @@ msgstr "Impossible de créer le dossier de l'application. Corrigez les droits d' msgid "Application is not enabled" msgstr "L'application n'est pas activée" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Erreur d'authentification" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "La session a expiré. Veuillez recharger la page." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Utilisateur inconnu" @@ -288,73 +288,171 @@ msgstr "Veuillez vous référer au guide d'installation." msgid "%s shared »%s« with you" msgstr "%s partagé »%s« avec vous" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Impossible de trouver la catégorie \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "il y a quelques secondes" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "il y a %n minutes" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "Il y a %n heures" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "aujourd'hui" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "hier" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "il y a %n jours" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "le mois dernier" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "Il y a %n mois" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "l'année dernière" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "il y a plusieurs années" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Seuls les caractères suivants sont autorisés dans un nom d'utilisateur : \"a-z\", \"A-Z\", \"0-9\", et \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Un nom d'utilisateur valide doit être saisi" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Le nom d'utilisateur est déjà utilisé" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index ab5c1b50a56..42cc8cb0a48 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 08:11+0000\n" +"Last-Translator: Christophe Lherieau \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" @@ -532,7 +532,7 @@ msgstr "Autoriser les notifications par couriel" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Autoriser les utilisateurs à envoyer une notification par courriel concernant les fichiers partagés" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/fr_CA/lib.po b/l10n/fr_CA/lib.po index e00186eb0cb..09727cd39d6 100644 --- a/l10n/fr_CA/lib.po +++ b/l10n/fr_CA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index a7930014cc1..a34fba6ea6e 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 10: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -179,7 +179,7 @@ msgstr "O URL non pode quedar en branco." msgid "In the home folder 'Shared' is a reserved filename" msgstr "«Shared» dentro do cartafol persoal é un nome reservado" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" @@ -215,35 +215,35 @@ msgstr "Produciuse un erro ao mover o ficheiro" msgid "Error" msgstr "Erro" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Non foi posíbel renomear o ficheiro" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Produciuse un erro ao eliminar o ficheiro." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartafol" msgstr[1] "%n cartafoles" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Cargando %n ficheiro" @@ -310,7 +310,7 @@ msgstr "%s non pode cambiar de nome" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Envío (máx. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 85c9c04058d..02a26c87e1b 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-19 01:55-0400\n" -"PO-Revision-Date: 2014-04-18 11:20+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -75,7 +75,7 @@ msgstr "As descargas ZIP están desactivadas." msgid "Files need to be downloaded one by one." msgstr "Os ficheiros necesitan seren descargados dun en un." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Volver aos ficheiros" @@ -149,15 +149,15 @@ msgstr "Non é posíbel crear o cartafol de aplicativos. Corrixa os permisos. %s msgid "Application is not enabled" msgstr "O aplicativo non está activado" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Produciuse un erro de autenticación" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Testemuña caducada. Recargue a páxina." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Usuario descoñecido" @@ -286,6 +286,104 @@ msgstr "Volva comprobar as guías de instalación" msgid "%s shared »%s« with you" msgstr "%s compartiu «%s» con vostede" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 03e60c26d9c..4e595e7c9b4 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 10: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -523,7 +523,7 @@ msgstr "Permitir o envío de notificacións por correo" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 98e02d70405..6a707e23ddc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "משתמשים" msgid "Admin" msgstr "מנהל" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "הורדת ZIP כבויה" msgid "Files need to be downloaded one by one." msgstr "יש להוריד את הקבצים אחד אחרי השני." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "חזרה לקבצים" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "יישומים אינם מופעלים" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "שגיאת הזדהות" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "פג תוקף. נא לטעון שוב את הדף." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "נא לעיין שוב במדריכי ההתקנה." msgid "%s shared »%s« with you" msgstr "%s שיתף/שיתפה איתך את »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "לא ניתן למצוא את הקטגוריה „%s“" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "שניות" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "לפני %n דקות" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "לפני %n שעות" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "היום" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "אתמול" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "לפני %n ימים" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "חודש שעבר" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "לפני %n חודשים" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "שנה שעברה" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "שנים" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "יש לספק שם משתמש תקני" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "יש לספק ססמה תקנית" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 955a511e0f0..dac38b91b20 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "उपयोगकर्ता" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 27e93095437..c89d48b91fa 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Korisnici" msgid "Admin" msgstr "Administrator" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Greška kod autorizacije" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekundi prije" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "danas" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "jučer" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "prošli mjesec" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "prošlu godinu" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "godina" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 858b0c42ef8..2b52cf384d2 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -51,7 +51,7 @@ msgstr "Felhasználók" msgid "Admin" msgstr "Adminsztráció" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Sikertelen Frissítés \"%s\"." @@ -76,7 +76,7 @@ msgstr "A ZIP-letöltés nincs engedélyezve." msgid "Files need to be downloaded one by one." msgstr "A fájlokat egyenként kell letölteni." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Vissza a Fájlokhoz" @@ -150,15 +150,15 @@ msgstr "Nem lehetett létrehozni az alkalmzás mappáját. Kérlek ellenőrizd a msgid "Application is not enabled" msgstr "Az alkalmazás nincs engedélyezve" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Azonosítási hiba" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "A token lejárt. Frissítse az oldalt." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -287,73 +287,171 @@ msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmu msgid "%s shared »%s« with you" msgstr "%s megosztotta Önnel ezt: »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ez a kategória nem található: \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "pár másodperce" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n perccel ezelőtt" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n órával ezelőtt" msgstr[1] "%n órával ezelőtt" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "ma" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "tegnap" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n nappal ezelőtt" msgstr[1] "%n nappal ezelőtt" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "múlt hónapban" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n hónappal ezelőtt" msgstr[1] "%n hónappal ezelőtt" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "tavaly" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "több éve" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Érvényes felhasználónevet kell megadnia" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Érvényes jelszót kell megadnia" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Ez a bejelentkezési név már foglalt" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index d62bc683e0c..3b3b5ffa6be 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index c6eea0497d2..d0be345d97a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Usatores" msgid "Admin" msgstr "Administration" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index edf2ae28a7e..18118cf1fec 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Pengguna" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Gagal memperbarui \"%s\"." @@ -73,7 +73,7 @@ msgstr "Pengunduhan ZIP dimatikan." msgid "Files need to be downloaded one by one." msgstr "Berkas harus diunduh satu persatu." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Kembali ke Berkas" @@ -147,15 +147,15 @@ msgstr "Tidak dapat membuat folder apl. Silakan perbaiki perizinan. %s" msgid "Application is not enabled" msgstr "Aplikasi tidak diaktifkan" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Galat saat otentikasi" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token sudah kedaluwarsa. Silakan muat ulang halaman." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "Silakan periksa ulang panduan instalasi." msgid "%s shared »%s« with you" msgstr "%s membagikan »%s« dengan anda" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Tidak menemukan kategori \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n menit yang lalu" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n jam yang lalu" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hari ini" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "kemarin" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n hari yang lalu" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "bulan kemarin" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n bulan yang lalu" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "tahun kemarin" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "beberapa tahun lalu" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Tuliskan nama pengguna yang valid" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Tuliskan sandi yang valid" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 24dba8ecb24..2bc042e6fe8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Notendur" msgid "Admin" msgstr "Stjórnun" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Slökkt á ZIP niðurhali." msgid "Files need to be downloaded one by one." msgstr "Skrárnar verður að sækja eina og eina" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Aftur í skrár" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Forrit ekki virkt" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Villa við auðkenningu" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Auðkenning útrunnin. Vinsamlegast skráðu þig aftur inn." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Fann ekki flokkinn \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sek." -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "í dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "í gær" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "síðasta mánuði" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "síðasta ári" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "einhverjum árum" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/it/files.po b/l10n/it/files.po index 487dde50100..f7579891b10 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# idetao , 2014 # Paolo Velati , 2013-2014 # Vincenzo Reale , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 23:33+0000\n" +"Last-Translator: idetao \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" @@ -179,7 +180,7 @@ msgstr "L'URL non può essere vuoto." msgid "In the home folder 'Shared' is a reserved filename" msgstr "Nella cartella home 'Shared' è un nome riservato" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} esiste già" @@ -215,35 +216,35 @@ msgstr "Errore durante lo spostamento del file" msgid "Error" msgstr "Errore" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "In corso" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Impossibile rinominare il file" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Errore durante l'eliminazione del file." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartella" msgstr[1] "%n cartelle" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n file" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Caricamento di %n file in corso" @@ -310,7 +311,7 @@ msgstr "%s non può essere rinominato" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Carica (massimo %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 7de4b24e4d4..61cf71193af 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 22:37+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -52,7 +52,7 @@ msgstr "Utenti" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Aggiornamento non riuscito \"%s\"." @@ -77,7 +77,7 @@ msgstr "Lo scaricamento in formato ZIP è stato disabilitato." msgid "Files need to be downloaded one by one." msgstr "I file devono essere scaricati uno alla volta." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Torna ai file" @@ -151,15 +151,15 @@ msgstr "Impossibile creare la cartella dell'applicazione. Correggi i permessi. % msgid "Application is not enabled" msgstr "L'applicazione non è abilitata" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Errore di autenticazione" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token scaduto. Ricarica la pagina." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Utente sconosciuto" @@ -288,73 +288,171 @@ msgstr "Leggi attentamente le guide d'installazione." msgid "%s shared »%s« with you" msgstr "%s ha condiviso «%s» con te" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Impossibile trovare la categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "secondi fa" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "oggi" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ieri" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mese scorso" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "anno scorso" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "anni fa" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Solo i seguenti caratteri sono ammessi in un nome utente: \"a-z\", \"A-Z\", \"0-9\", e \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Deve essere fornito un nome utente valido" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Il nome utente è già utilizzato" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 13bbcdee323..520335ddac5 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -4,16 +4,16 @@ # # Translators: # Francesco Apruzzese , 2013 -# idetao , 2013 +# idetao , 2013-2014 # Paolo Velati , 2013-2014 # Vincenzo Reale , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 23:31+0000\n" +"Last-Translator: idetao \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" @@ -525,7 +525,7 @@ msgstr "Consenti le notifiche tramite posta elettronica" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Consenti agli utenti di mandare e-mail di notifica per i file condivisi" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ja/lib.po b/l10n/ja/lib.po index 44361df0669..9a1364fed7c 100644 --- a/l10n/ja/lib.po +++ b/l10n/ja/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -53,7 +53,7 @@ msgstr "ユーザー" msgid "Admin" msgstr "管理" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" へのアップグレードに失敗しました。" @@ -78,7 +78,7 @@ msgstr "ZIPダウンロードは無効です。" msgid "Files need to be downloaded one by one." msgstr "ファイルは1つずつダウンロードする必要があります。" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "ファイルに戻る" @@ -152,15 +152,15 @@ msgstr "アプリフォルダーを作成できませんでした。%s のパー msgid "Application is not enabled" msgstr "アプリケーションは無効です" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "認証エラー" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "トークンが無効になりました。ページを再読込してください。" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "不明なユーザー" @@ -289,69 +289,167 @@ msgstr "インストールガイドをよく確認してくだ msgid "%s shared »%s« with you" msgstr "%sが あなたと »%s«を共有しました" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "カテゴリ \"%s\" が見つかりませんでした" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "数秒前" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分前" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 時間前" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "今日" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "1日前" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n日前" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "1ヶ月前" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%nヶ月前" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "1年前" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "年前" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "有効なユーザー名を指定する必要があります" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "有効なパスワードを指定する必要があります" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "ユーザ名はすでに使われています" diff --git a/l10n/jv/lib.po b/l10n/jv/lib.po index da7f24790c3..0915bb223d3 100644 --- a/l10n/jv/lib.po +++ b/l10n/jv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index d6c36f3cf5a..b7d235cf31c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "მომხმარებელი" msgid "Admin" msgstr "ადმინისტრატორი" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "ZIP download–ი გათიშულია" msgid "Files need to be downloaded one by one." msgstr "ფაილები უნდა გადმოიტვირთოს სათითაოდ." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "უკან ფაილებში" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "აპლიკაცია არ არის აქტიური" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "ავთენტიფიკაციის შეცდომა" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token–ს ვადა გაუვიდა. გთხოვთ განაახლოთ გვერდი." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "გთხოვთ გადაათვალიეროთ 설치 가이드를 다시 한 번 확인하십시오." msgid "%s shared »%s« with you" msgstr "%s 님이 %s을(를) 공유하였습니다" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "분류 \"%s\"을(를) 찾을 수 없습니다." -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "초 전" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n분 전 " -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "오늘" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "어제" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n일 전 " -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "지난 달" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n달 전 " -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "작년" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "년 전" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "올바른 사용자 이름을 입력해야 함" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "올바른 암호를 입력해야 함" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index eab0771ad84..9f9aa8fd223 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "به‌كارهێنه‌ر" msgid "Admin" msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 403353e5beb..392bc813a98 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Benotzer" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authentifikatioun's Fehler" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,73 +285,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "Den/D' %s huet »%s« mat dir gedeelt" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Sekonnen hir" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n Minutten hir" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "haut" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "gëschter" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "Läschte Mount" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "Läscht Joer" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "Joren hier" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 58ff50b54f6..1dde1d9c2d9 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -52,7 +52,7 @@ msgstr "Vartotojai" msgid "Admin" msgstr "Administravimas" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Nepavyko pakelti „%s“ versijos." @@ -77,7 +77,7 @@ msgstr "ZIP atsisiuntimo galimybė yra išjungta." msgid "Files need to be downloaded one by one." msgstr "Failai turi būti parsiunčiami vienas po kito." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Atgal į Failus" @@ -151,15 +151,15 @@ msgstr "Nepavyksta sukurti aplanko. Prašome pataisyti leidimus. %s" msgid "Application is not enabled" msgstr "Programa neįjungta" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentikacijos klaida" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Sesija baigėsi. Prašome perkrauti puslapį." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -288,77 +288,175 @@ msgstr "Prašome pažiūrėkite dar kartą diegimo instrukcijas msgid "%s shared »%s« with you" msgstr "%s pasidalino »%s« su tavimi" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nepavyko rasti kategorijos „%s“" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "prieš sekundę" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "prieš %n min." msgstr[1] "Prieš % minutes" msgstr[2] "Prieš %n minučių" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Prieš %n valandą" msgstr[1] "Prieš %n valandas" msgstr[2] "Prieš %n valandų" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "šiandien" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "vakar" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Prieš %n dieną" msgstr[1] "Prieš %n dienas" msgstr[2] "Prieš %n dienų" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "praeitą mėnesį" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Prieš %n mėnesį" msgstr[1] "Prieš %n mėnesius" msgstr[2] "Prieš %n mėnesių" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "praeitais metais" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "prieš metus" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Vartotojo vardas turi būti tinkamas" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Slaptažodis turi būti tinkamas" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 5a8a9d5813b..7a7d03523e8 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Lietotāji" msgid "Admin" msgstr "Administratori" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kļūda atjauninot \"%s\"" @@ -74,7 +74,7 @@ msgstr "ZIP lejupielādēšana ir izslēgta." msgid "Files need to be downloaded one by one." msgstr "Datnes var lejupielādēt tikai katru atsevišķi." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Atpakaļ pie datnēm" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Lietotne nav aktivēta" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentifikācijas kļūda" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Pilnvarai ir beidzies termiņš. Lūdzu, pārlādējiet lapu." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,77 +285,175 @@ msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību msgid "%s shared »%s« with you" msgstr "%s kopīgots »%s« ar jums" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nevarēja atrast kategoriju “%s”" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n minūtēm" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n stundām" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "šodien" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "vakar" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n dienām" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "pagājušajā mēnesī" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n mēnešiem" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "gājušajā gadā" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "gadus atpakaļ" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Jānorāda derīgs lietotājvārds" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Jānorāda derīga parole" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Šāds lietotājvārds jau tiek izmantots" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index c611a9b9d0d..ab88decb08d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Корисници" msgid "Admin" msgstr "Админ" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Преземање во ZIP е исклучено" msgid "Files need to be downloaded one by one." msgstr "Датотеките треба да се симнат една по една." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Назад кон датотеки" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Апликацијата не е овозможена" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Грешка во автентикација" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Жетонот е истечен. Ве молам превчитајте ја страницата." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Не можам да најдам категорија „%s“" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "пред секунди" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "денеска" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "вчера" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "минатиот месец" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "минатата година" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "пред години" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Мора да се обезбеди валидно корисничко име " -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Мора да се обезбеди валидна лозинка" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ml/lib.po b/l10n/ml/lib.po index 7d8386a4852..9b18b8c069e 100644 --- a/l10n/ml/lib.po +++ b/l10n/ml/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index ad9148fab33..e2d3ce261cf 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/mn/lib.po b/l10n/mn/lib.po index 24f3d3b50df..0ba562d4874 100644 --- a/l10n/mn/lib.po +++ b/l10n/mn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 0d63f98d966..a8145ee4dfc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Pengguna" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Ralat pengesahan" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 69bc9a0a977..ab59c1e32b5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "သုံးစွဲသူ" msgid "Admin" msgstr "အက်ဒမင်" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည msgid "Files need to be downloaded one by one." msgstr "ဖိုင်များသည် တစ်ခုပြီး တစ်ခုဒေါင်းလုတ်ချရန်လိုအပ်သည်" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "ဖိုင်သို့ပြန်သွားမည်" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "ခွင့်ပြုချက်မအောင်မြင်" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "ယနေ့" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "မနေ့က" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "မနှစ်က" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "နှစ် အရင်က" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 896430174f2..f799a36058a 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Brukere" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Klarte ikke å oppgradere \"%s\"." @@ -75,7 +75,7 @@ msgstr "ZIP-nedlasting av avslått" msgid "Files need to be downloaded one by one." msgstr "Filene må lastes ned en om gangen" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Tilbake til filer" @@ -149,15 +149,15 @@ msgstr "Kan ikke opprette app-mappe. Vennligst ordne opp i tillatelser. %s" msgid "Application is not enabled" msgstr "Applikasjon er ikke påslått" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentikasjonsfeil" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Symbol utløpt. Vennligst last inn siden på nytt." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -286,73 +286,171 @@ msgstr "Vennligst dobbelsjekk installasjonsguiden." msgid "%s shared »%s« with you" msgstr "%s delte »%s« med deg" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kunne ikke finne kategori \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekunder siden" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutter siden" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n timer siden" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "i dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dager siden" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "forrige måned" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n dager siden" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "forrige år" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "år siden" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Oppgi et gyldig brukernavn" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Oppgi et gyldig passord" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/nds/lib.po b/l10n/nds/lib.po index 7f0a19e84b6..b7c0c86c549 100644 --- a/l10n/nds/lib.po +++ b/l10n/nds/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index e310cb1d413..702c6f532fc 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 4a28f3f9cec..0de22186029 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 19:18+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" @@ -179,7 +179,7 @@ msgstr "URL mag niet leeg zijn" msgid "In the home folder 'Shared' is a reserved filename" msgstr "in de home map 'Shared' is een gereserveerde bestandsnaam" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" @@ -215,35 +215,35 @@ msgstr "Fout bij verplaatsen bestand" msgid "Error" msgstr "Fout" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Kon niet hernoemen bestand" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Fout bij verwijderen bestand." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n mappen" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n bestanden" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} en {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n bestand aan het uploaden" @@ -310,7 +310,7 @@ msgstr "%s kon niet worden hernoemd" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Upload (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 35171905f80..1e135da68df 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 06:50+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,7 +51,7 @@ msgstr "Gebruikers" msgid "Admin" msgstr "Beheerder" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgrade \"%s\" mislukt." @@ -76,7 +76,7 @@ msgstr "ZIP download is uitgeschakeld." msgid "Files need to be downloaded one by one." msgstr "Bestanden moeten één voor één worden gedownload." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Terug naar bestanden" @@ -150,15 +150,15 @@ msgstr "Kan de app map niet aanmaken, Herstel de permissies. %s" msgid "Application is not enabled" msgstr "De applicatie is niet actief" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authenticatie fout" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token verlopen. Herlaad de pagina." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Onbekende gebruiker" @@ -287,73 +287,171 @@ msgstr "Controleer de installatiehandleiding goed." msgid "%s shared »%s« with you" msgstr "%s deelde »%s« met jou" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kon categorie \"%s\" niet vinden" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "seconden geleden" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuut geleden" msgstr[1] "%n minuten geleden" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n uur geleden" msgstr[1] "%n uur geleden" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "vandaag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "gisteren" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag terug" msgstr[1] "%n dagen geleden" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "vorige maand" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n maand geleden" msgstr[1] "%n maanden geleden" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "vorig jaar" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "jaar geleden" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Alleen de volgende tekens zijn toegestaan in een gebruikersnaam: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Er moet een geldige gebruikersnaam worden opgegeven" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Er moet een geldig wachtwoord worden opgegeven" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "De gebruikersnaam bestaat al" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index aa5c19bc229..9fa5da4d6cc 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 19:18+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" @@ -525,7 +525,7 @@ msgstr "Toestaan e-mailnotificaties" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 5f7f37471b4..09e48965bb6 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Brukarar" msgid "Admin" msgstr "Administrer" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -149,15 +149,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Feil i autentisering" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -286,73 +286,171 @@ msgstr "Ver venleg og dobbeltsjekk installasjonsrettleiinga." msgid "%s shared »%s« with you" msgstr "%s delte «%s» med deg" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekund sidan" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutt sidan" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n timar sidan" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "i dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagar sidan" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "førre månad" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n månadar sidan" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "i fjor" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "år sidan" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Du må oppgje eit gyldig brukarnamn" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Du må oppgje eit gyldig passord" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/nqo/lib.po b/l10n/nqo/lib.po index 0571ed36a4e..f59370d050f 100644 --- a/l10n/nqo/lib.po +++ b/l10n/nqo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 7883c2348cd..121200c85c8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Usancièrs" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Avalcargar los ZIP es inactiu." msgid "Files need to be downloaded one by one." msgstr "Los fichièrs devan èsser avalcargats un per un." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Torna cap als fichièrs" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Error d'autentificacion" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "segonda a" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "uèi" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ièr" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mes passat" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "an passat" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "ans a" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/or_IN/lib.po b/l10n/or_IN/lib.po index b8ef391b221..495eae5b05d 100644 --- a/l10n/or_IN/lib.po +++ b/l10n/or_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -284,6 +284,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index cc8806e357e..2f059f913e0 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "ਅੱਜ" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ਕੱਲ੍ਹ" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 972f9bcf32d..2730643a33d 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 10:34+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -183,7 +183,7 @@ msgstr "URL nie może być pusty" msgid "In the home folder 'Shared' is a reserved filename" msgstr "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" @@ -219,37 +219,37 @@ msgstr "Błąd prz przenoszeniu pliku" msgid "Error" msgstr "Błąd" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Nie można zmienić nazwy pliku" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Błąd podczas usuwania pliku" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n katalog" msgstr[1] "%n katalogi" msgstr[2] "%n katalogów" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n plik" msgstr[1] "%n pliki" msgstr[2] "%n plików" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Wysyłanie %n pliku" @@ -317,7 +317,7 @@ msgstr "%s nie można zmienić nazwy" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Wysyłka (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 35e7c37ef0a..87fb61c2dcd 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 10:53+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,7 +50,7 @@ msgstr "Użytkownicy" msgid "Admin" msgstr "Administrator" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Błąd przy aktualizacji \"%s\"." @@ -75,7 +75,7 @@ msgstr "Pobieranie ZIP jest wyłączone." msgid "Files need to be downloaded one by one." msgstr "Pliki muszą zostać pobrane pojedynczo." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Wróć do plików" @@ -149,15 +149,15 @@ msgstr "Nie mogę utworzyć katalogu aplikacji. Proszę popraw uprawnienia. %s" msgid "Application is not enabled" msgstr "Aplikacja nie jest włączona" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Błąd uwierzytelniania" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token wygasł. Proszę ponownie załadować stronę." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Nieznany użytkownik" @@ -286,77 +286,175 @@ msgstr "Sprawdź ponownie przewodniki instalacji." msgid "%s shared »%s« with you" msgstr "%s Współdzielone »%s« z tobą" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nie można odnaleźć kategorii \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekund temu" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzinę temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "dziś" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "wczoraj" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "w zeszłym miesiącu" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "w zeszłym roku" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "lat temu" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "W nazwach użytkowników dozwolone są wyłącznie następujące znaki: \"a-z\", \"A-Z\", \"0-9\", oraz \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Należy podać prawidłową nazwę użytkownika" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Ta nazwa użytkownika jest już używana" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 8af3733a05f..26e58d91c70 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 10:34+0000\n" +"Last-Translator: bobie \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -524,7 +524,7 @@ msgstr "Pozwól na mailowe powiadomienia" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 1d25159e22c..42291ff3891 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -180,7 +180,7 @@ msgstr "URL não pode estar vazia" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Na pasta home 'Shared- Compartilhada' é um nome reservado" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} já existe" @@ -216,35 +216,35 @@ msgstr "Erro movendo o arquivo" msgid "Error" msgstr "Erro" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Não foi possível renomear o arquivo" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Erro eliminando o arquivo." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n arquivo" msgstr[1] "%n arquivos" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Enviando %n arquivo" @@ -311,7 +311,7 @@ msgstr "%s não pode ser renomeado" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Envio (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 5f8c4597d97..de90637bce0 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-22 16:40+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -285,6 +285,104 @@ msgstr "Por favor, confira os guias de instalação." msgid "%s shared »%s« with you" msgstr "%s compartilhou »%s« com você" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 4b4186a1d06..35c10ae2ebd 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11: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" "Content-Type: text/plain; charset=UTF-8\n" @@ -523,7 +523,7 @@ msgstr "Permitir notificação por email" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Permitir aos usuários enviar notificação de email para arquivos compartilhados" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index e8a0c4927da..ab8309c2a07 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -51,7 +51,7 @@ msgstr "Utilizadores" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "A actualização \"%s\" falhou." @@ -76,7 +76,7 @@ msgstr "Descarregamento em ZIP está desligado." msgid "Files need to be downloaded one by one." msgstr "Os ficheiros precisam de ser descarregados um por um." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Voltar a Ficheiros" @@ -150,15 +150,15 @@ msgstr "Não foi possível criar a pasta da aplicação. Por favor verifique as msgid "Application is not enabled" msgstr "A aplicação não está activada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Erro na autenticação" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "O token expirou. Por favor recarregue a página." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Utilizador desconhecido" @@ -287,73 +287,171 @@ msgstr "Por favor verifique installation guides." msgid "%s shared »%s« with you" msgstr "%s partilhado »%s« contigo" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Não foi encontrado a categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Minutos atrás" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutos atrás" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n horas atrás" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hoje" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ontem" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dias atrás" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ultímo mês" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n meses atrás" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "ano passado" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "anos atrás" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Um nome de utilizador válido deve ser fornecido" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 6beeb527615..6ec7ba546ef 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Utilizatori" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "Descărcarea ZIP este dezactivată." msgid "Files need to be downloaded one by one." msgstr "Fișierele trebuie descărcate unul câte unul." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Înapoi la fișiere" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Aplicația nu este activată" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Eroare la autentificare" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirat. Te rugăm să reîncarci pagina." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,77 +285,175 @@ msgstr "Vă rugăm să verificați ghiduri de instalare." msgid "%s shared »%s« with you" msgstr "%s Partajat »%s« cu tine de" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Cloud nu a gasit categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "secunde în urmă" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n minute" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n ore" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "astăzi" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ieri" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n zile" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ultima lună" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "ultimul an" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "ani în urmă" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Trebuie să furnizaţi un nume de utilizator valid" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Trebuie să furnizaţi o parolă validă" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index f59ffd70fa5..379364d97a5 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -55,7 +55,7 @@ msgstr "Пользователи" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Не смог обновить \"%s\"." @@ -80,7 +80,7 @@ msgstr "ZIP-скачивание отключено." msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Назад к файлам" @@ -154,15 +154,15 @@ msgstr "Не удалось создать директорию. Исправь msgid "Application is not enabled" msgstr "Приложение не разрешено" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Ошибка аутентификации" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Токен просрочен. Перезагрузите страницу." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -291,77 +291,175 @@ msgstr "Пожалуйста, дважды просмотрите msgid "%s shared »%s« with you" msgstr "%s поделился »%s« с вами" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Категория \"%s\" не найдена" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "несколько секунд назад" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n минута назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "сегодня" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "вчера" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "в прошлом месяце" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "в прошлом году" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "несколько лет назад" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Укажите правильное имя пользователя" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Укажите валидный пароль" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 5307a86f2fb..cc3a48c0152 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "පරිශීලකයන්" msgid "Admin" msgstr "පරිපාලක" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "ZIP භාගත කිරීම් අක්‍රියයි" msgid "Files need to be downloaded one by one." msgstr "ගොනු එකින් එක භාගත යුතුයි" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "ගොනු වෙතට නැවත යන්න" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "යෙදුම සක්‍රිය කර නොමැත" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "සත්‍යාපන දෝෂයක්" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "ටෝකනය කල් ඉකුත් වී ඇත. පිටුව නැවුම් කරන්න" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "අද" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ඊයේ" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "පෙර මාසයේ" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 56224c08da5..4e039dc17ae 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 10d44986712..8b3d08256f6 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Používatelia" msgid "Admin" msgstr "Administrátor" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Zlyhala aktualizácia \"%s\"." @@ -75,7 +75,7 @@ msgstr "Sťahovanie súborov ZIP je vypnuté." msgid "Files need to be downloaded one by one." msgstr "Súbory musia byť nahrávané jeden za druhým." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Späť na súbory" @@ -149,15 +149,15 @@ msgstr "Nemožno vytvoriť aplikačný priečinok. Prosím upravte povolenia. %s msgid "Application is not enabled" msgstr "Aplikácia nie je zapnutá" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Chyba autentifikácie" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token vypršal. Obnovte, prosím, stránku." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Neznámy používateľ" @@ -286,77 +286,175 @@ msgstr "Prosím skontrolujte inštalačnú príručku." msgid "%s shared »%s« with you" msgstr "%s s vami zdieľa »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nemožno nájsť danú kategóriu \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "pred sekundami" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minútou" msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n hodinou" msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "dnes" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "včera" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "pred %n dňom" msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "minulý mesiac" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesiacom" msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "minulý rok" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "pred rokmi" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Musíte zadať platné používateľské meno" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Musíte zadať platné heslo" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index fd0b2af9f9e..46cd7f25c69 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -286,6 +286,104 @@ msgstr "Preverite navodila namestitve." msgid "%s shared »%s« with you" msgstr "%s je omogočil souporabo »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 1e227ddd183..bd165498149 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Përdoruesit" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Shkarimi i skedarëve ZIP është i çaktivizuar." msgid "Files need to be downloaded one by one." msgstr "Skedarët duhet të shkarkohen një nga një." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Kthehu tek skedarët" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Programi nuk është i aktivizuar." -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Veprim i gabuar gjatë vërtetimit të identitetit" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Përmbajtja ka skaduar. Ju lutemi ringarkoni faqen." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." msgid "%s shared »%s« with you" msgstr "%s ndau »%s« me ju" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kategoria \"%s\" nuk u gjet" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekonda më parë" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuta më parë" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n orë më parë" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "sot" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "dje" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n ditë më parë" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "muajin e shkuar" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n muaj më parë" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "vitin e shkuar" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "vite më parë" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Duhet të jepni një emër të vlefshëm përdoruesi" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Duhet të jepni një fjalëkalim te vlefshëm" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 9cd072c745e..fb962337e4e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Корисници" msgid "Admin" msgstr "Администратор" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Преузимање ZIP-а је искључено." msgid "Files need to be downloaded one by one." msgstr "Датотеке морате преузимати једну по једну." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Назад на датотеке" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Апликација није омогућена" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Грешка при провери идентитета" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Жетон је истекао. Поново учитајте страницу." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "Погледајте водиче за инсталациј msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Не могу да пронађем категорију „%s“." -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "пре неколико секунди" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "данас" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "јуче" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "прошлог месеца" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "прошле године" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "година раније" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Морате унети исправно корисничко име" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Морате унети исправну лозинку" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 0f3d0d7a092..2cfe024582e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Korisnici" msgid "Admin" msgstr "Adninistracija" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Greška pri autentifikaciji" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Pre par sekundi" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "Danas" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "juče" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Prije %n dana." -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "prošlog meseca" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "prošle godine" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "pre nekoliko godina" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/su/lib.po b/l10n/su/lib.po index 9d0019b5f50..4d3929c27cc 100644 --- a/l10n/su/lib.po +++ b/l10n/su/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 3516cdfdd77..cb9a685d2a4 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 11:20+0000\n" -"Last-Translator: henrikhjelm \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -55,7 +55,7 @@ msgstr "Användare" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Misslyckades med att uppgradera \"%s\"." @@ -80,7 +80,7 @@ msgstr "Nerladdning av ZIP är avstängd." msgid "Files need to be downloaded one by one." msgstr "Filer laddas ner en åt gången." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Tillbaka till Filer" @@ -154,15 +154,15 @@ msgstr "Kan inte skapa appens mapp. Var god åtgärda rättigheterna. %s" msgid "Application is not enabled" msgstr "Applikationen är inte aktiverad" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Fel vid autentisering" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Ogiltig token. Ladda om sidan." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Okänd användare" @@ -291,73 +291,171 @@ msgstr "Var god kontrollera installationsguiden." msgid "%s shared »%s« with you" msgstr "%s delade »%s« med dig" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kunde inte hitta kategorin \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekunder sedan" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "i dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "förra månaden" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "förra året" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "år sedan" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Endast följande tecken är tillåtna i ett användarnamn: \"az\", \"AZ\", \"0-9\", och \"_ @ -.\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Ett giltigt användarnamn måste anges" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Ett giltigt lösenord måste anges" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Användarnamnet används redan" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index b607d2dedb0..8de71859915 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 96e0bc2c2a1..0cff9cc46f5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "பயனாளர்" msgid "Admin" msgstr "நிர்வாகம்" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "வீசொலிப் பூட்டு பதிவிறக்க msgid "Files need to be downloaded one by one." msgstr "கோப்புகள்ஒன்றன் பின் ஒன்றாக பதிவிறக்கப்படவேண்டும்." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "கோப்புகளுக்கு செல்க" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "செயலி இயலுமைப்படுத்தப்படவில்லை" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "அத்தாட்சிப்படுத்தலில் வழு" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "அடையாளவில்லை காலாவதியாகிவிட்டது. தயவுசெய்து பக்கத்தை மீள் ஏற்றுக." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "இன்று" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "நேற்று" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "கடந்த மாதம்" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "கடந்த வருடம்" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "வருடங்களுக்கு முன்" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 9428875f4e6..97177c36dc8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "వాడుకరులు" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n నిమిషాల క్రితం" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n గంటల క్రితం" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "ఈరోజు" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "నిన్న" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n రోజుల క్రితం" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "పోయిన నెల" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n నెలల క్రితం" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "సంవత్సరాల క్రితం" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 21a80481792..3b379726b27 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -135,59 +135,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "" -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ea124e27fe9..9098867f339 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -177,7 +177,7 @@ msgstr "" msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index f0dd2975cce..7777b79c596 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 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 f7b5e4e305e..4249671016e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 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 a20e27c699a..1ceb58b2d12 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 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 d3fab126a28..dc188cbf798 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 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 dc51b390525..3fbca2717bf 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 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 79fd7165e69..142859181db 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -285,6 +285,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s " +"is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index c293e6187a7..d9c628a1c54 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -277,6 +277,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s " +"is a member of" +msgstr "" + +#: share/share.php:518 share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index f52f3d53d70..ed8bfbf1efa 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 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 50f8114aafa..95200b23de7 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -87,43 +87,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:838 +#: js/settings.js:780 msgid "Configuration OK" msgstr "" -#: js/settings.js:847 +#: js/settings.js:789 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:856 +#: js/settings.js:798 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:873 js/settings.js:882 +#: js/settings.js:815 js/settings.js:824 msgid "Select groups" msgstr "" -#: js/settings.js:876 js/settings.js:885 +#: js/settings.js:818 js/settings.js:827 msgid "Select object classes" msgstr "" -#: js/settings.js:879 +#: js/settings.js:821 msgid "Select attributes" msgstr "" -#: js/settings.js:906 +#: js/settings.js:848 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:913 +#: js/settings.js:855 msgid "Connection test failed" msgstr "" -#: js/settings.js:922 +#: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:923 +#: js/settings.js:865 msgid "Confirm Deletion" msgstr "" @@ -145,7 +145,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:983 +#: lib/wizard.php:984 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index a6d99051683..ae637283fc6 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 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/lib.po b/l10n/th_TH/lib.po index fcd4bbd24b9..d11c284a776 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "ผู้ใช้งาน" msgid "Admin" msgstr "ผู้ดูแล" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "คุณสมบัติการดาวน์โหลด zip ถ msgid "Files need to be downloaded one by one." msgstr "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "กลับไปที่ไฟล์" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "แอพพลิเคชั่นดังกล่าวยังไม่ได้เปิดใช้งาน" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "รหัสยืนยันความถูกต้องหมดอายุแล้ว กรุณาโหลดหน้าเว็บใหม่อีกครั้ง" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "ไม่พบหมวดหมู่ \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "วันนี้" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "เมื่อวานนี้" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "เดือนที่แล้ว" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "ปีที่แล้ว" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "ปี ที่ผ่านมา" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index f25ab1e0b98..3c8d0e87220 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:00+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" @@ -138,59 +138,59 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "Kaydediliyor..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "saniyeler önce" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n dakika önce" msgstr[1] "%n dakika önce" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n saat önce" msgstr[1] "%n saat önce" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "bugün" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "dün" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n gün önce" msgstr[1] "%n gün önce" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "geçen ay" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ay önce" msgstr[1] "%n ay önce" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "geçen yıl" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "yıllar önce" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 67cdf2e53d5..5228d98bdbe 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:00+0000\n" +"Last-Translator: volkangezer \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" @@ -182,7 +182,7 @@ msgstr "URL boş olamaz" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Ev klasöründeki 'Paylaşılan', ayrılmış bir dosya adıdır" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" @@ -218,35 +218,35 @@ msgstr "Dosya taşıma hatası" msgid "Error" msgstr "Hata" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Dosya adlandırılamadı" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Dosya silinirken hata." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dizin" msgstr[1] "%n dizin" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosya" msgstr[1] "%n dosya" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} ve {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n dosya yükleniyor" @@ -313,7 +313,7 @@ msgstr "%s yeniden adlandırılamadı" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Yükle (azami: %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index d8048f25bd3..c70944abd19 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 13:52+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -30,7 +30,7 @@ msgstr "ownCloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\ #: private/app.php:248 msgid "No app name specified" -msgstr "Uygulama adı belirtimedli" +msgstr "Uygulama adı belirtilmedi" #: private/app.php:353 msgid "Help" @@ -75,11 +75,11 @@ msgstr "ZIP indirmeleri kapatıldı." #: private/files.php:233 msgid "Files need to be downloaded one by one." -msgstr "Dosyaların birer birer indirilmesi gerekmektedir." +msgstr "Dosyaların tek tek indirilmesi gerekmektedir." #: private/files.php:234 private/files.php:261 msgid "Back to Files" -msgstr "Dosyalara dön" +msgstr "Dosyalara Dön" #: private/files.php:259 msgid "Selected files too large to generate zip file." @@ -199,7 +199,7 @@ msgstr "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s" #: private/setup/oci.php:114 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." -msgstr "Siz veya yönetici mevcut bir hesap girmeli." +msgstr "Mevcut bit hesap ya da yönetici hesabını girmelisiniz." #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" @@ -244,7 +244,7 @@ msgstr "MySQL/MariaDB kullanıcısı '%s'@'%%' zaten mevcut" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)" +msgstr "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -275,7 +275,7 @@ msgstr "Bir yönetici kullanıcı parolası ayarlayın." 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 aktarımı için düzgün bir şekilde yapılandırılmamış. WevDAV arayüzü sorunlu görünüyor." +msgstr "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor." #: private/setup.php:203 #, php-format @@ -288,6 +288,104 @@ msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." msgid "%s shared »%s« with you" msgstr "%s sizinle »%s« paylaşımında bulundu" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" @@ -339,7 +437,7 @@ msgstr "geçen yıl" #: private/template/functions.php:146 msgid "years ago" -msgstr "yıl önce" +msgstr "yıllar önce" #: private/user/manager.php:232 msgid "" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index f5e4733f403..2b6aae69911 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:10+0000\n" +"Last-Translator: volkangezer \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" @@ -65,7 +65,7 @@ msgstr "Kimlik doğrulama yöntemi" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "App Store'dan liste yüklenemiyor" +msgstr "Uygulama Mağazasın'dan liste yüklenemiyor" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 changepassword/controller.php:49 @@ -378,7 +378,7 @@ msgstr "Kurulum Uyarısı" 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 aktarımı için düzgün bir şekilde yapılandırılmamış. WevDAV arayüzü sorunlu görünüyor." +msgstr "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor." #: templates/admin.php:79 #, php-format @@ -525,7 +525,7 @@ msgstr "Posta bilgilendirmesine izin ver" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/tzm/lib.po b/l10n/tzm/lib.po index 70663f6f817..d90cda5f055 100644 --- a/l10n/tzm/lib.po +++ b/l10n/tzm/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 49eec14adb2..3409a80517e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "ئىشلەتكۈچىلەر" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "سالاھىيەت دەلىللەش خاتالىقى" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "بۈگۈن" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "تۈنۈگۈن" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 5724656194a..598c9e7f493 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Користувачі" msgid "Admin" msgstr "Адмін" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "ZIP завантаження вимкнено." msgid "Files need to be downloaded one by one." msgstr "Файли повинні бути завантаженні послідовно." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Повернутися до файлів" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Додаток не увімкнений" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Помилка автентифікації" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Строк дії токена скінчився. Будь ласка, перезавантажте сторінку." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "Будь ласка, перевірте інструкці msgid "%s shared »%s« with you" msgstr "%s розподілено »%s« з тобою" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Не вдалося знайти категорію \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "секунди тому" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n хвилин тому" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n годин тому" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "сьогодні" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "вчора" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n днів тому" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "минулого місяця" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n місяців тому" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "минулого року" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "роки тому" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Потрібно задати вірне ім'я користувача" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Потрібно задати вірний пароль" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ur/lib.po b/l10n/ur/lib.po index b21775ce5a5..adb951f6986 100644 --- a/l10n/ur/lib.po +++ b/l10n/ur/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index f06ab498fb2..75e40964d46 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "یوزرز" msgid "Admin" msgstr "ایڈمن" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/uz/lib.po b/l10n/uz/lib.po index cb9c4b53ca4..e8d5252faf3 100644 --- a/l10n/uz/lib.po +++ b/l10n/uz/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index e1f9cb7d4c8..b21af741c52 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Người dùng" msgid "Admin" msgstr "Quản trị" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Tải về ZIP đã bị tắt." msgid "Files need to be downloaded one by one." msgstr "Tập tin cần phải được tải về từng người một." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Trở lại tập tin" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Ứng dụng không được BẬT" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Lỗi xác thực" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Mã Token đã hết hạn. Hãy tải lại trang." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s đã chia sẻ »%s« với bạn" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "không thể tìm thấy mục \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "vài giây trước" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n phút trước" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n giờ trước" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hôm nay" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "hôm qua" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n ngày trước" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "tháng trước" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n tháng trước" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "năm trước" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "năm trước" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 81c8dfbaedb..0b53e0ef257 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -53,7 +53,7 @@ msgstr "用户" msgid "Admin" msgstr "管理" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" 升级失败。" @@ -78,7 +78,7 @@ msgstr "ZIP 下载已经关闭" msgid "Files need to be downloaded one by one." msgstr "需要逐一下载文件" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "回到文件" @@ -152,15 +152,15 @@ msgstr "无法创建应用程序文件夹。请修正权限。%s" msgid "Application is not enabled" msgstr "应用程序未启用" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "认证出错" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token 过期,请刷新页面。" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -289,69 +289,167 @@ msgstr "请认真检查安装指南." msgid "%s shared »%s« with you" msgstr "%s 向您分享了 »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "无法找到分类 \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "秒前" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分钟前" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "今天" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "昨天" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "上月" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 月前" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "去年" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "年前" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "必须提供合法的用户名" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "必须提供合法的密码" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 5af2222d381..298b7559192 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "用戶" msgid "Admin" msgstr "管理" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "今日" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "昨日" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "前一月" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 509f97f58f7..8823dee83c3 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "使用者" msgid "Admin" msgstr "管理" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "升級失敗:%s" @@ -75,7 +75,7 @@ msgstr "ZIP 下載已關閉。" msgid "Files need to be downloaded one by one." msgstr "檔案需要逐一下載。" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "回到檔案列表" @@ -149,15 +149,15 @@ msgstr "無法建立應用程式目錄,請檢查權限:%s" msgid "Application is not enabled" msgstr "應用程式未啟用" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "認證錯誤" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token 過期,請重新整理頁面。" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -286,69 +286,167 @@ msgstr "請參考安裝指南。" msgid "%s shared »%s« with you" msgstr "%s 與您分享了 %s" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "找不到分類:\"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "幾秒前" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "今天" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "昨天" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "上個月" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "去年" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "幾年前" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "必須提供一個有效的用戶名" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "一定要提供一個有效的密碼" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 883c7323c0c..f0db728b557 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("","%n kuud tagasi"), "last year" => "viimasel aastal", "years ago" => "aastat tagasi", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Kasutajanimes on lubatud ainult järgnevad tähemärgid: \"a-z\", \"A-Z\", \"0-9\" ja \"_.@-\"", "A valid username must be provided" => "Sisesta nõuetele vastav kasutajatunnus", "A valid password must be provided" => "Sisesta nõuetele vastav parool", "The username is already being used" => "Kasutajanimi on juba kasutuses" diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 0be1c4b186a..c1275da2a72 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -1,7 +1,7 @@ "ownCloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz.", -"No app name specified" => "Uygulama adı belirtimedli", +"No app name specified" => "Uygulama adı belirtilmedi", "Help" => "Yardım", "Personal" => "Kişisel", "Settings" => "Ayarlar", @@ -12,8 +12,8 @@ $TRANSLATIONS = array( "Invalid image" => "Geçersiz resim", "web services under your control" => "kontrolünüzün altındaki web hizmetleri", "ZIP download is turned off." => "ZIP indirmeleri kapatıldı.", -"Files need to be downloaded one by one." => "Dosyaların birer birer indirilmesi gerekmektedir.", -"Back to Files" => "Dosyalara dön", +"Files need to be downloaded one by one." => "Dosyaların tek tek indirilmesi gerekmektedir.", +"Back to Files" => "Dosyalara Dön", "Selected files too large to generate zip file." => "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyük.", "Please download the files separately in smaller chunks or kindly ask your administrator." => "Dosyaları ayrı ayrı, küçük parçalar halinde indirin veya yöneticinizden yardım isteyin. ", "No source specified when installing app" => "Uygulama kurulurken bir kaynak belirtilmedi", @@ -39,21 +39,21 @@ $TRANSLATIONS = array( "%s enter the database name." => "%s veritabanı adını girin.", "%s you may not use dots in the database name" => "%s veritabanı adında nokta kullanamayabilirsiniz", "MS SQL username and/or password not valid: %s" => "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s", -"You need to enter either an existing account or the administrator." => "Siz veya yönetici mevcut bir hesap girmeli.", +"You need to enter either an existing account or the administrator." => "Mevcut bit hesap ya da yönetici hesabını girmelisiniz.", "MySQL/MariaDB username and/or password not valid" => "MySQL/MariaDB kullanıcı adı ve/veya parolası geçersiz", "DB Error: \"%s\"" => "VT Hatası: \"%s\"", "Offending command was: \"%s\"" => "Saldırgan komut: \"%s\"", "MySQL/MariaDB user '%s'@'localhost' exists already." => "MySQL/MariaDB kullanıcı '%s'@'localhost' zaten mevcut.", "Drop this user from MySQL/MariaDB" => "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)", "MySQL/MariaDB user '%s'@'%%' already exists" => "MySQL/MariaDB kullanıcısı '%s'@'%%' zaten mevcut", -"Drop this user from MySQL/MariaDB." => "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)", +"Drop this user from MySQL/MariaDB." => "Bu kullanıcıyı MySQL/MariaDB'dan at (drop).", "Oracle connection could not be established" => "Oracle bağlantısı kurulamadı", "Oracle username and/or password not valid" => "Oracle kullanıcı adı ve/veya parolası geçerli değil", "Offending command was: \"%s\", name: %s, password: %s" => "Hatalı komut: \"%s\", ad: %s, parola: %s", "PostgreSQL username and/or password not valid" => "PostgreSQL kullanıcı adı ve/veya parolası geçerli değil", "Set an admin username." => "Bir yönetici kullanıcı adı ayarlayın.", "Set an admin password." => "Bir yönetici kullanıcı parolası ayarlayın.", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya aktarımı için düzgün bir şekilde yapılandırılmamış. WevDAV arayüzü sorunlu görünüyor.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını iki kez kontrol edin.", "%s shared »%s« with you" => "%s sizinle »%s« paylaşımında bulundu", "Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı", @@ -66,7 +66,7 @@ $TRANSLATIONS = array( "last month" => "geçen ay", "_%n month ago_::_%n months ago_" => array("","%n ay önce"), "last year" => "geçen yıl", -"years ago" => "yıl önce", +"years ago" => "yıllar önce", "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Kullanıcı adında sadece bu karakterlere izin verilmektedir: \"a-z\", \"A-Z\", \"0-9\", ve \"_.@-\"", "A valid username must be provided" => "Geçerli bir kullanıcı adı mutlaka sağlanmalı", "A valid password must be provided" => "Geçerli bir parola mutlaka sağlanmalı", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index cbe552d23d2..b33d3055923 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Unable to change full name" => "Nelze změnit celé jméno", "Group already exists" => "Skupina již existuje", "Unable to add group" => "Nelze přidat skupinu", +"Files decrypted successfully" => "Soubory úspěšně dešifrovány", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nebylo možno dešifrovat soubory, zkontroluje prosím owncloud.log nebo kontaktujte svého administrátora", "Couldn't decrypt your files, check your password and try again" => "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znovu", "Email saved" => "E-mail uložen", @@ -113,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", "Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách", "Allow mail notification" => "Povolit e-mailová upozornění", +"Allow users to send mail notification for shared files" => "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", "Security" => "Zabezpečení", "Enforce HTTPS" => "Vynutit HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index e9105c8dda7..2255c2e8bcf 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen", "Allow mail notification" => "Mail-Benachrichtigung erlauben", +"Allow users to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "Erzwinge HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 8b9c455401c..16622c80b01 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen", "Allow mail notification" => "Mail-Benachrichtigung erlauben", +"Allow users to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "HTTPS erzwingen", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen.", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index c61d1c8de2e..1d1cb17a7fa 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -67,7 +67,7 @@ $TRANSLATIONS = array( "Error creating user" => "Error creating user", "A valid password must be provided" => "A valid password must be provided", "Warning: Home directory for user \"{user}\" already exists" => "Warning: Home directory for user \"{user}\" already exists", -"__language_name__" => "__language_name__", +"__language_name__" => "English (British English)", "Everything (fatal issues, errors, warnings, info, debug)" => "Everything (fatal issues, errors, warnings, info, debug)", "Info, warnings, errors and fatal issues" => "Info, warnings, errors and fatal issues", "Warnings, errors and fatal issues" => "Warnings, errors and fatal issues", @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Allow users to share with anyone", "Allow users to only share with users in their groups" => "Allow users to only share with users in their groups", "Allow mail notification" => "Allow mail notification", +"Allow users to send mail notification for shared files" => "Allow users to send mail notification for shared files", "Security" => "Security", "Enforce HTTPS" => "Enforce HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forces the clients to connect to %s via an encrypted connection.", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index b46e0138c1d..5ad3b4b0d69 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Täispika nime muutmine ebaõnnestus", "Group already exists" => "Grupp on juba olemas", "Unable to add group" => "Keela grupi lisamine", +"Files decrypted successfully" => "Failide krüpteerimine õnnestus", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Ei suutnud faile dekrüpteerida, palun kontrolli oma owncloud.log-i või küsi nõu administraatorilt", +"Couldn't decrypt your files, check your password and try again" => "Ei suutnud failde dekrüpteerida, kontrolli parooli ja proovi uuesti", "Email saved" => "Kiri on salvestatud", "Invalid email" => "Vigane e-post", "Unable to delete group" => "Grupi kustutamine ebaõnnestus", @@ -111,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Luba kasutajatel kõigiga jagada", "Allow users to only share with users in their groups" => "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad", "Allow mail notification" => "Luba teavitused e-postiga", +"Allow users to send mail notification for shared files" => "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta", "Security" => "Turvalisus", "Enforce HTTPS" => "Sunni peale HTTPS-i kasutamine", "Forces the clients to connect to %s via an encrypted connection." => "Sunnib kliente %s ühenduma krüpteeritult.", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index d11ab032a0d..d0bc283d87d 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -74,6 +74,7 @@ $TRANSLATIONS = array( "SSL" => "SSL", "TLS" => "TLS", "Security Warning" => "Turvallisuusvaroitus", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Käytät %sia HTTP-yhteydellä. Suosittelemme määrittämään palvelimen vaatimaan salattua HTTPS-yhteyttä.", "Setup Warning" => "Asetusvaroitus", "Please double check the installation guides." => "Lue asennusohjeet tarkasti.", "Module 'fileinfo' missing" => "Moduuli 'fileinfo' puuttuu", @@ -101,6 +102,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Salli käyttäjien jakaa kenen tahansa kanssa", "Allow users to only share with users in their groups" => "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken", "Allow mail notification" => "Salli sähköposti-ilmoitukset", +"Allow users to send mail notification for shared files" => "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", "Security" => "Tietoturva", "Enforce HTTPS" => "Pakota HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta.", @@ -151,6 +153,7 @@ $TRANSLATIONS = array( "Select new from Files" => "Valitse uusi tiedostoista", "Remove image" => "Poista kuva", "Either png or jpg. Ideally square but you will be able to crop it." => "Joko png- tai jpg-kuva. Mieluite neliö, voit kuitenkin rajata kuvaa.", +"Your avatar is provided by your original account." => "Avatar-kuvasi pohjautuu alkuperäiseen tiliisi.", "Cancel" => "Peru", "Choose as profile image" => "Valitse profiilikuvaksi", "Language" => "Kieli", @@ -158,6 +161,7 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Käytä tätä osoitetta käyttääksesi tiedostojasi WebDAVin kautta", "The encryption app is no longer enabled, please decrypt all your files" => "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostojesi salaus", +"Log-in password" => "Kirjautumissalasana", "Decrypt all Files" => "Pura kaikkien tiedostojen salaus", "Login Name" => "Kirjautumisnimi", "Create" => "Luo", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 7380a7abdea..0464dee78f4 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Autoriser les utilisateurs à partager avec tout le monde", "Allow users to only share with users in their groups" => "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement", "Allow mail notification" => "Autoriser les notifications par couriel", +"Allow users to send mail notification for shared files" => "Autoriser les utilisateurs à envoyer une notification par courriel concernant les fichiers partagés", "Security" => "Sécurité", "Enforce HTTPS" => "Forcer HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forcer les clients à se connecter à %s via une connexion chiffrée.", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index b320609dd9f..ab609ec1bcf 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir que os usuarios compartan con calquera", "Allow users to only share with users in their groups" => "Permitir que os usuarios compartan só cos usuarios dos seus grupos", "Allow mail notification" => "Permitir o envío de notificacións por correo", +"Allow users to send mail notification for shared files" => "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos", "Security" => "Seguranza", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar que os clientes se conecten a %s empregando unha conexión cifrada.", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index dd790b85112..74c16029a87 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Consenti agli utenti di condividere con chiunque", "Allow users to only share with users in their groups" => "Consenti agli utenti di condividere solo con utenti dei loro gruppi", "Allow mail notification" => "Consenti le notifiche tramite posta elettronica", +"Allow users to send mail notification for shared files" => "Consenti agli utenti di mandare e-mail di notifica per i file condivisi", "Security" => "Protezione", "Enforce HTTPS" => "Forza HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forza i client a connettersi a %s tramite una connessione cifrata.", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index a88725fd5f0..5cc183beab1 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Toestaan dat gebruikers met iedereen delen", "Allow users to only share with users in their groups" => "Instellen dat gebruikers alleen met leden binnen hun groepen delen", "Allow mail notification" => "Toestaan e-mailnotificaties", +"Allow users to send mail notification for shared files" => "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", "Security" => "Beveiliging", "Enforce HTTPS" => "Afdwingen HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Dwingt de clients om een versleutelde verbinding te maken met %s", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index ff93b7b1be1..88fdd667d51 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Zezwalaj użytkownikom na współdzielenie z kimkolwiek", "Allow users to only share with users in their groups" => "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup", "Allow mail notification" => "Pozwól na mailowe powiadomienia", +"Allow users to send mail notification for shared files" => "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików", "Security" => "Bezpieczeństwo", "Enforce HTTPS" => "Wymuś HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego.", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index aae9027ba35..482823926b8 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir que usuários compartilhem com qualquer um", "Allow users to only share with users in their groups" => "Permitir que usuários compartilhem somente com usuários em seus grupos", "Allow mail notification" => "Permitir notificação por email", +"Allow users to send mail notification for shared files" => "Permitir aos usuários enviar notificação de email para arquivos compartilhados", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Obrigar os clientes que se conectem a %s através de uma conexão criptografada.", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 89d7f8d2b14..6d9fdc0f5b9 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -10,7 +10,7 @@ $TRANSLATIONS = array( "Send mode" => "Gönderme kipi", "Encryption" => "Şifreleme", "Authentication method" => "Kimlik doğrulama yöntemi", -"Unable to load list from App Store" => "App Store'dan liste yüklenemiyor", +"Unable to load list from App Store" => "Uygulama Mağazasın'dan liste yüklenemiyor", "Authentication error" => "Kimlik doğrulama hatası", "Your full name has been changed." => "Tam adınız değiştirildi.", "Unable to change full name" => "Tam adınız değiştirilirken hata", @@ -83,7 +83,7 @@ $TRANSLATIONS = array( "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s konumuna HTTP aracılığıyla erişiyorsunuz. Sunucunuzu HTTPS kullanımını zorlaması üzere yapılandırmanızı şiddetle öneririz.", "Your data directory and your files are probably accessible from the internet. The .htaccess file 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 dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu belge kök dizini dışına almanızı şiddetle tavsiye ederiz.", "Setup Warning" => "Kurulum Uyarısı", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya aktarımı için düzgün bir şekilde yapılandırılmamış. WevDAV arayüzü sorunlu görünüyor.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını tekrar kontrol edin.", "Module 'fileinfo' missing" => "Modül 'fileinfo' kayıp", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.", @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Kullanıcıların her şeyi paylaşmalarına izin ver", "Allow users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", "Allow mail notification" => "Posta bilgilendirmesine izin ver", +"Allow users to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver", "Security" => "Güvenlik", "Enforce HTTPS" => "HTTPS bağlantısına zorla", "Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar.", -- cgit v1.2.3 From 6650be99136bbeecc39a28cbe9c22de0c5cf08ac Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 23 Apr 2014 12:50:24 +0200 Subject: add setting to set default expire date --- lib/private/share/helper.php | 49 ++++++++++++++++++++++++++++++++++++++++ lib/private/share/share.php | 15 ++++++++++-- settings/admin.php | 4 ++++ settings/css/settings.css | 1 + settings/templates/admin.php | 19 +++++++++++++++- tests/lib/share/helper.php | 54 ++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 139 insertions(+), 3 deletions(-) create mode 100644 tests/lib/share/helper.php (limited to 'lib') diff --git a/lib/private/share/helper.php b/lib/private/share/helper.php index fde55667281..515ec85909a 100644 --- a/lib/private/share/helper.php +++ b/lib/private/share/helper.php @@ -199,4 +199,53 @@ class Helper extends \OC\Share\Constants { $query->execute(); } } + + /** + * @brief get default expire settings defined by the admin + * @return array contains 'defaultExpireDateSet', 'enforceExpireDate', 'expireAfterDays' + */ + public static function getDefaultExpireSetting() { + + $defaultExpireSettings = array('defaultExpireDateSet' => false); + + // get default expire settings + $defaultExpireDate = \OC_Appconfig::getValue('core', 'shareapi_default_expire_date', 'no'); + if ($defaultExpireDate === 'yes') { + $enforceExpireDate = \OC_Appconfig::getValue('core', 'shareapi_enforce_expire_date', 'no'); + $defaultExpireSettings['defaultExpireDateSet'] = true; + $defaultExpireSettings['expireAfterDays'] = (int)\OC_Appconfig::getValue('core', 'shareapi_expire_after_n_days', '7'); + $defaultExpireSettings['enforceExpireDate'] = $enforceExpireDate === 'yes' ? true : false; + } + + return $defaultExpireSettings; + } + + /** + * @brief calculate expire date + * @param array $defaultExpireSettings contains 'defaultExpireDateSet', 'enforceExpireDate', 'expireAfterDays' + * @param int $creationTime timestamp when the share was created + * @param int $userExpireDate expire timestamp set by the user + * @return mixed integer timestamp or False + */ + public static function calculateExpireDate($defaultExpireSettings, $creationTime, $userExpireDate = null) { + + $expires = false; + + if (isset($defaultExpireSettings['defaultExpireDateSet']) && $defaultExpireSettings['defaultExpireDateSet']) { + $expires = $creationTime + $defaultExpireSettings['expireAfterDays'] * 86400; + } + + + if (isset($userExpireDate)) { + // if the admin decided to enforce the default expire date then we only take + // the user defined expire date of it is before the default expire date + if ($expires && isset($defaultExpireSettings['enforceExpireDate']) && $defaultExpireSettings['enforceExpireDate']) { + $expires = ($userExpireDate < $expires) ? $userExpireDate : $expires; + } else { + $expires = $userExpireDate; + } + } + + return $expires; + } } diff --git a/lib/private/share/share.php b/lib/private/share/share.php index fe756b5ae7f..a18c54af8a3 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -844,9 +844,20 @@ class Share extends \OC\Share\Constants { * @return bool True if item was expired, false otherwise. */ protected static function expireItem(array $item) { + + // get default expire settings + $defaultSettings = Helper::getDefaultExpireSetting(); + // calculate expire date if (!empty($item['expiration'])) { - $now = new \DateTime(); - $expires = new \DateTime($item['expiration']); + $userDefinedExpire = new \DateTime($item['expiration']); + $userDefinedExpireTimestamp = $userDefinedExpire->getTimestamp(); + } else { + $userDefinedExpireTimestamp = null; + } + $expires = Helper::calculateExpireDate($defaultSettings, $item['stime'], $userDefinedExpireTimestamp); + + if (is_int($expires)) { + $now = time(); if ($now > $expires) { self::unshareItem($item); return true; diff --git a/settings/admin.php b/settings/admin.php index bce18b7cf6a..49dde59ce2a 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -45,6 +45,10 @@ $tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundj $tmpl->assign('cron_log', OC_Config::getValue('cron_log', true)); $tmpl->assign('lastcron', OC_Appconfig::getValue('core', 'lastcron', false)); $tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes')); +$tmpl->assign('shareDefaultExpireDateSet', OC_Appconfig::getValue('core', 'shareapi_default_expire_date', 'no')); +$tmpl->assign('shareExpireAfterNDays', OC_Appconfig::getValue('core', 'shareapi_expire_after_n_days', '7')); +$tmpl->assign('shareEnforceExpireDate', OC_Appconfig::getValue('core', 'shareapi_enforce_expire_date', 'no')); + // Check if connected using HTTPS if (OC_Request::serverProtocol() === 'https') { diff --git a/settings/css/settings.css b/settings/css/settings.css index a7680aad948..5d8f9a7541c 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -132,6 +132,7 @@ table.grid td.date{ span.securitywarning {color:#C33; font-weight:bold; } span.connectionwarning {color:#933; font-weight:bold; } table.shareAPI td { padding-bottom: 0.8em; } +table.shareAPI input#shareapi_expire_after_n_days {width: 25px;} #mail_settings p label:first-child { display: inline-block; diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 07b5ee7860e..8eb1beb9566 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -254,6 +254,23 @@ if (!$_['internetconnectionworking']) { t('Allow users to send mail notification for shared files')); ?> + + + > + /> +
+ t( 'Expire after ' )); ?> + ' /> + t( 'days' )); ?> + /> +
+ t('Expire shares by default after N days')); ?> + + + @@ -296,7 +313,7 @@ if (!$_['internetconnectionworking']) {

t('This is used for sending out notifications.')); ?>

- +